diff -Nru php-horde-gollem-3.0.8/debian/changelog php-horde-gollem-3.0.9/debian/changelog --- php-horde-gollem-3.0.8/debian/changelog 2016-06-08 18:38:47.000000000 +0000 +++ php-horde-gollem-3.0.9/debian/changelog 2016-07-02 19:36:42.000000000 +0000 @@ -1,3 +1,9 @@ +php-horde-gollem (3.0.9-1) unstable; urgency=medium + + * New upstream version 3.0.9 + + -- Mathieu Parent Sat, 02 Jul 2016 21:36:42 +0200 + php-horde-gollem (3.0.8-2) unstable; urgency=medium * Update Standards-Version to 3.9.8, no change diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/clipboard.php php-horde-gollem-3.0.9/gollem-3.0.8/clipboard.php --- php-horde-gollem-3.0.8/gollem-3.0.8/clipboard.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/clipboard.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem'); - -$vars = Horde_Variables::getDefaultVariables(); - -/* Set up the template object. */ -$template = $injector->createInstance('Horde_View'); -$template->cancelbutton = _("Cancel"); -$template->clearbutton = _("Clear"); -$template->pastebutton = _("Paste"); -$template->cutgraphic = Horde::img('cut.png', _("Cut")); -$template->copygraphic = Horde::img('copy.png', _("Copy")); -$template->currdir = Gollem::getDisplayPath($vars->dir); -$template->dir = $vars->dir; -$template->manager_url = Horde::url('manager.php'); - -$entry = array(); -foreach ($session->get('gollem', 'clipboard') as $key => $val) { - $entry[] = array( - 'copy' => ($val['action'] == 'copy'), - 'cut' => ($val['action'] == 'cut'), - 'id' => $key, - 'name' => $val['display'] - ); -} -$template->entries = $entry; - -$page_output->addScriptFile('clipboard.js'); -$page_output->addScriptFile('tables.js', 'horde'); -$page_output->addInlineJsVars(array( - 'GollemClipboard.selectall' => _("Select All"), - 'GollemClipboard.selectnone' => _("Select None") -)); - -$page_output->header(array( - 'title' => _("Clipboard") -)); -$notification->notify(array('listeners' => 'status')); -echo $template->render('clipboard'); -$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/config/backends.php php-horde-gollem-3.0.9/gollem-3.0.8/config/backends.php --- php-horde-gollem-3.0.8/gollem-3.0.8/config/backends.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/config/backends.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,424 +0,0 @@ - false, - 'name' => 'FTP Server', - 'driver' => 'ftp', - 'hordeauth' => false, - 'params' => array( - // The hostname/IP Address of the FTP server - 'hostspec' => 'localhost', - // The port number of the FTP server - 'port' => 21, - // Use passive mode? - 'pasv' => false, - // The return formatting from the 'ls' command. Possible Values: 'aix', - // 'standard'. - // 'lsformat' => 'standard', - // If true and the POSIX extension is available the driver will map - // the user and group IDs returned from the FTP server with the local - // IDs from the local password file. This is useful only if the FTP - // server is running on localhost or if the local user/group - // IDs are identical to the remote FTP server. - // 'maplocalids' => true, - // The default permissions to set for newly created folders and files. - // 'permissions' => '750', - // If true, and PHP had been compiled with OpenSSL support, TLS - // transport-level encryption will be negotiated with the server. - // 'ssl' => false, - // Set timeout (in seconds) for the FTP server. Default: 90 seconds - // 'timeout' => 90, - // The type of the remote FTP server. Possible values: 'unix', 'win', - // 'netware'. By default, we attempt to auto-detect type. - // 'type' => 'unix', - ), - 'loginparams' => array( - // Allow the user to change the FTP server - // 'hostspec' => 'Hostname', - // Allow the user to change the FTP port - // 'port' => 'Port' - ), - // 'root' => '', - // 'home' => '', - // 'createhome' => false, - // 'filter' => '^regex$', - // 'quota' => false, - 'attributes' => array( - 'type', - 'name', - 'edit', - 'download', - 'modified', - 'size', - 'permission', - 'owner', - 'group' - ) -); - -// This backend uses Horde credentials to automatically log in. -$backends['hordeftp'] = array( - // Disabled by default - 'disabled' => true, - 'name' => 'FTP Server', - 'driver' => 'ftp', - 'hordeauth' => true, - 'params' => array( - // The hostname/IP Address of the FTP server. - 'hostspec' => 'localhost', - // The port number of the FTP server. - 'port' => 21, - // Use passive mode? - 'pasv' => false, - // The return formatting from the 'ls' command. Possible Values: 'aix', - // 'standard'. - // 'lsformat' => 'standard', - // If true and the POSIX extension is available the driver will map - // the user and group IDs returned from the FTP server with the local - // IDs from the local password file. This is useful only if the FTP - // server is running on localhost or if the local user/group - // IDs are identical to the remote FTP server. - // 'maplocalids' => true, - // The default permissions to set for newly created folders and files. - // 'permissions' => '750', - // If true, and PHP had been compiled with OpenSSL support, TLS - // transport-level encryption will be negotiated with the server. - // 'ssl' => false, - // Set timeout (in seconds) for the FTP server. Default: 90 seconds - // 'timeout' => 90, - // The type of the remote FTP server. Possible values: 'unix', 'win', - // 'netware'. By default, we attempt to auto-detect type. - // 'type' => 'unix', - ), - 'loginparams' => array( - // Allow the user to change the FTP server. - // 'hostspec' => 'Hostname', - // Allow the user to change the FTP port. - // 'port' => 'Port' - ), - // 'root' => '', - // 'home' => '', - // 'createhome' => false, - // 'filter' => '^regex$', - // 'quota' => false, - 'attributes' => array( - 'type', - 'name', - 'edit', - 'download', - 'modified', - 'size', - 'permission', - 'owner', - 'group' - ) -); - -// SQL Example. -$backends['sql'] = array( - // Disabled by default - 'disabled' => true, - 'name' => 'SQL Server', - 'driver' => 'sql', - 'hordeauth' => true, - - // The default connection details are pulled from the Horde-wide SQL - // connection configuration. - 'params' => array_merge($GLOBALS['conf']['sql'], - array('table' => 'horde_vfs')), - - // If you need different connection details than from the Horde-wide SQL - // connection configuration, uncomment and set the following lines. - // 'params' => array( - // // The SQL connection parameters. See horde/config/conf.php for - // // descriptions of each parameter. - // 'phptype' => 'mysql', - // 'hostspec' => 'localhost', - // 'database' => 'horde', - // 'username' => 'horde', - // 'password' => 'horde', - // - // // The SQL table containing the VFS. See the horde/scripts/db - // // directory for examples. - // 'table' => 'horde_vfs' - // ), - 'loginparams' => array(), - // 'root' => '', - // 'home' => '', - // 'createhome' => false, - // 'filter' => '^regex$', - // 'quota' => false, - 'attributes' => array( - 'type', - 'name', - 'edit', - 'download', - 'modified', - 'size' - ) -); - -// This backend specifies a home directory and root directory in a SQL vfs. -$backends['sqlhome'] = array( - // Disabled by default - 'disabled' => true, - 'name' => 'SQL Server with home', - 'driver' => 'sql', - 'hordeauth' => true, - - // The default connection details are pulled from the Horde-wide SQL - // connection configuration. - 'params' => array_merge($GLOBALS['conf']['sql'], - array('table' => 'horde_vfs')), - - // If you need different connection details than from the Horde-wide SQL - // connection configuration, uncomment and set the following lines. - // 'params' => array( - // // The SQL connection parameters. See horde/config/conf.php for - // // descriptions of each parameter. - // 'phptype' => 'mysql', - // 'hostspec' => 'localhost', - // 'database' => 'horde', - // 'username' => 'horde', - // 'password' => 'horde', - // - // // The SQL table containing the VFS. See the horde/scripts/db - // // directory for examples. - // 'table' => 'horde_vfs' - // ), - 'loginparams' => array(), - 'root' => '/home', - 'home' => '/home/' . $GLOBALS['registry']->getAuth(), - // 'createhome' => false, - // 'filter' => '^regex$', - // 'quota' => false, - 'shares' => true, - 'attributes' => array( - 'type', - 'name', - 'share', - 'edit', - 'download', - 'modified', - 'size', - 'owner', - ) -); - -// NOTE: /exampledir/home and all subdirectories should be, for -// security reasons, owned by your web server user and mode 700 or you -// will need to use suexec or something else that can adjust the web -// server effective uid. -$backends['file'] = array( - // Disabled by default - 'disabled' => true, - 'name' => 'Virtual Home Directories', - 'driver' => 'file', - 'hordeauth' => true, - 'params' => array( - // The base location under which the user home directories live. - 'vfsroot' => '/exampledir/home/', - // The default permissions to set for newly created folders and files. - // 'permissions' => '750' - ), - 'loginparams' => array(), - 'root' => '/', - 'home' => $GLOBALS['registry']->getAuth(), - // 'createhome' => false, - // 'filter' => '^regex$', - // 'quota' => false, - 'shares' => true, - 'attributes' => array( - 'type', - 'name', - 'share', - 'edit', - 'download', - 'modified', - 'size', - ) -); - -// SMB Example -$backends['smb'] = array( - // Disabled by default - 'disabled' => true, - 'name' => 'SMB Server', - 'driver' => 'smb', - 'hordeauth' => false, - 'params' => array( - 'hostspec' => 'example', - 'port' => 139, - 'share' => 'homes', - // Path to the smbclient executable. - 'smbclient' => '/usr/bin/smbclient', - // IP address of server (only needed if hostname is different from - // NetBIOS name). - // 'ipaddress' => '127.0.0.1', - // The default permissions to set for newly created folders and - // files. - // 'permissions' => '750' - ), - 'loginparams' => array( - // Allow the user to change to Samba server. - // 'hostspec' => 'Hostname', - // Allow the user to change the Samba port. - // 'port' => 'Port', - // Allow the user to change the Samba share. - // 'share' => 'Share', - ), - // 'root' => '', - // 'home' => '', - // 'createhome' => false, - // 'filter' => '^regex$', - // 'quota' => false, - 'attributes' => array( - 'type', - 'name', - 'edit', - 'download', - 'modified', - 'size' - ) -); - -// SSH2 Example -$backends['ssh2'] = array( - // Disabled by default - 'disabled' => true, - 'name' => 'SSH2 Server', - 'driver' => 'ssh2', - 'hordeauth' => false, - 'params' => array( - // The hostname/IP Address of the SSH server - 'hostspec' => 'ssh2.example.com', - // The port number of the SSH server - 'port' => 22, - // Set timeout (in seconds) for the SSH server. Default: 90 seconds - // 'timeout' => 90, - // If true and the POSIX extension is available the driver will map - // the user and group IDs returned from the SSH server with the local - // IDs from the local password file. This is useful only if the SSH - // server is running on localhost or if the local user/group - // IDs are identical to the remote SSH server. - // 'maplocalids' => true, - // The default permissions to set for newly created folders and - // files. - // 'permissions' => '750' - ), - 'loginparams' => array( - // Allow the user to change the SSH server - // 'hostspec' => 'Hostname', - // Allow the user to change the SSH port - // 'port' => 'Port' - ), - // 'root' => '', - // 'home' => '', - // 'createhome' => false, - // 'filter' => '^regex$', - // 'quota' => false, - 'attributes' => array( - 'type', - 'name', - 'edit', - 'download', - 'modified', - 'size', - 'permission', - 'owner', - 'group' - ) -); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/config/conf.xml php-horde-gollem-3.0.9/gollem-3.0.8/config/conf.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/config/conf.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/config/conf.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ - - - - - Backend Settings - none - - none - hidden - shown - - - - - Caching - false - - - 120 - - - - diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/config/.htaccess php-horde-gollem-3.0.9/gollem-3.0.8/config/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.8/config/.htaccess 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/config/.htaccess 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - Require all denied - - - Deny from all - diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/config/menu.php.dist php-horde-gollem-3.0.9/gollem-3.0.8/config/menu.php.dist --- php-horde-gollem-3.0.8/gollem-3.0.8/config/menu.php.dist 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/config/menu.php.dist 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - 'http://www.example.com/', - * 'text' => 'Example, Inc.', - * 'icon' => 'example.png', - * 'icon_path' => 'http://www.example.com/images/', - * 'target' => '_blank', - * 'onclick' => '' - * ); - * - * You can also add a "separator" (a spacer) between menu items. To add a - * separator, simply add a new string to the $_menu array set to the text - * 'separator'. It should look like this: - * - * $_menu[] = 'separator'; - * - * $Id: a5fd5b93f046712e91a667cbb4554f3e435d0fc7 $ - */ - -$_menu = array(); - -/* Add your custom entries below this line. */ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/config/prefs.php php-horde-gollem-3.0.9/gollem-3.0.8/config/prefs.php --- php-horde-gollem-3.0.8/gollem-3.0.8/config/prefs.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/config/prefs.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,101 +0,0 @@ - _("User Interface"), - 'label' => _("File Display"), - 'desc' => _("File display preferences."), - 'members' => array( - 'show_dotfiles', 'sortdirsfirst', 'columnselect', 'sortby', 'sortdir', - 'perpage' - ) -); - -// show dotfiles? -$_prefs['show_dotfiles'] = array( - 'value' => 0, - 'type' => 'checkbox', - 'desc' => _("Show dotfiles?") -); - -// always sort directories before files -$_prefs['sortdirsfirst'] = array( - 'value' => 1, - 'type' => 'checkbox', - 'desc' => _("List folders first?") -); - -// columns selection widget -$_prefs['columnselect'] = array( - 'type' => 'special', - 'handler' => 'Gollem_Prefs_Special_Columnselect' -); - -// columns to be displayed -$_prefs['columns'] = array( - // 'value' = json_encode(array(array('ftp', 'type', 'name', 'size'))) - 'value' => '[]' -); - - -// user preferred sorting column -$_prefs['sortby'] = array( - 'value' => Gollem::SORT_TYPE, - 'type' => 'enum', - 'enum' => array( - Gollem::SORT_TYPE => _("File Type"), - Gollem::SORT_DATE => _("File Name"), - Gollem::SORT_DATE => _("File Modification Time"), - Gollem::SORT_SIZE => _("File Size") - ), - 'desc' => _("Default sorting criteria:") -); - -// user preferred sorting direction -$_prefs['sortdir'] = array( - 'value' => 0, - 'type' => 'enum', - 'enum' => array( - Gollem::SORT_ASCEND => _("Ascending"), - Gollem::SORT_DESCEND => _("Descending") - ), - 'desc' => _("Default sorting direction:") -); - -// number of items per page -$_prefs['perpage'] = array( - 'value' => 30, - 'type' => 'number', - 'desc' => _("Items per page") -); - - - -// *** File Actions Preferences *** - -$prefGroups['settings'] = array( - 'column' => _("User Interface"), - 'label' => _("File Actions"), - 'desc' => _("File action settings."), - 'members' => array('recursive_deletes')); - -// user preferred recursive deletes -$_prefs['recursive_deletes'] = array( - 'value' => 'warn', - 'type' => 'enum', - 'enum' => array( - 'disabled' => _("No"), - 'enabled' => _("Yes"), - 'warn' => _("Ask") - ), - 'desc' => _("Delete folders recursively?") -); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/COPYING php-horde-gollem-3.0.9/gollem-3.0.8/COPYING --- php-horde-gollem-3.0.8/gollem-3.0.8/COPYING 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/COPYING 1970-01-01 00:00:00.000000000 +0000 @@ -1,281 +0,0 @@ - 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. - - END OF TERMS AND CONDITIONS - diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/docs/CHANGES php-horde-gollem-3.0.9/gollem-3.0.8/docs/CHANGES --- php-horde-gollem-3.0.8/gollem-3.0.8/docs/CHANGES 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/docs/CHANGES 1970-01-01 00:00:00.000000000 +0000 @@ -1,493 +0,0 @@ ------- -v3.0.8 ------- - -[jan] Add Greek translation (Limperis Antonis ). - - ------- -v3.0.7 ------- - -[jan] Use access rules compatible with both Apache 2.2 and 2.4. -[jan] Fix fatal error when cutting and pasting files on the same backend. - - ------- -v3.0.6 ------- - -[jan] Update Italian translation. - - ------- -v3.0.5 ------- - -[mjr] SECURITY: Fix XSS vulnerability when viewing directory contents - (Discovered by http://www.beyondsecurity.com/ssd.html). - - ------- -v3.0.4 ------- - -[jan] Update Italian translation. -[jan] Update Catalan translation. -[jan] Update Czech translation (Michael Grafnetter - ). -[jan] Update German translation. -[jan] Update Hungarian translation. - - ------- -v3.0.3 ------- - -[jan] Update Polish translation (Maciej Uhlig ). -[jan] Make shares table compatible with Oracle. - - ------- -v3.0.2 ------- - -[jan] Update Danish translation (Erling Preben Hansen ). - - ------- -v3.0.1 ------- - -[jan] Fix saving columns preference if only one backend exists (Bug #12003). - - ------- -v3.0.0 ------- - -[jan] Update French translation (Paul De Vlieger - ). - - ---------- -v3.0.0RC2 ---------- - -[jan] Pass custom login parameters to VFS backend (Bug #11771). -[jan] Fix selecting display columns in preferences (Bug #11851). -[jan] Fix automatic login to other than the first backend. -[jan] Fix downloading if backend key doesn't match driver name (Bug #11746). -[jan] Update Basque translation (Ibon Igartua ). -[jan] Change recursive deletion preference to ask by default. -[jan] Fix share_id column if using old share backend (Bug #11833). -[jan] Show loading layer when changing backends on login form. - - ---------- -v3.0.0RC1 ---------- - -[jan] Don't show permissions link if permissions are disabled (Bug #11705). -[jan] Use short date format in file listing (Request #11722). -[jan] Update Dutch translation (Arjen de Korte ). - - ------------ -v3.0.0beta1 ------------ - -[jan] Convert templates to Horde_View. -[jan] Fix sorting if using a pager. -[jan] Use standard Horde dialogs. - - ----------- -v2.0.3-git ----------- - -[jan] Fix setting quota parameters to the VFS backend (Bug #11455). -[jan] Fix getViewLink() API method (Bug #11226). -[jan] Update Turkish translation (İstanbul Technical University). - - ------- -v2.0.2 ------- - -[jan] Don't show user name and password fields on login page if not required. -[jan] Display 'loginparams' on login screen (Bug #11088). -[jan] Fix removing filter (Bug #11043). -[jan] Update Japanese translation (Hiromi Kimura ). - - ------- -v2.0.1 ------- - -[mms] Fix selectlist widget when initial cacheID was not given (Bug #10781). -[mms] Fix icon display of files in selectlist widget. -[jan] Fix downloading of file types without a MIME viewer (Bug #10709). -[jan] Fix autocreating of home folders (Bug #10690). -[jan] Fix JavaScript for Actions drop down list (Bug #10695). - - ----- -v2.0 ----- - -[jan] Fix corruption of downloaded files (Bug #8481). -[jan] Catch if VFS backend doesn't support size() (Bug #10637). -[mms] Fix editing text files. - - --------- -v2.0-RC1 --------- - -[jan] Fix usage of createhome parameter (Bug #10592). -[mms] Fix display of 'columnselect' preference (Bug #10628). -[jan] Don't require login for login-less VFS backends. - - ------------ -v2.0-ALPHA2 ------------ - -[jan] Fix file viewing. -[jan] Add missing backends configuration. -[jan] Add missing sort icons. -[jan] Fix broken dependency. - - ------------ -v2.0-ALPHA1 ------------ - -[jan] Convert authentication infrastructure to H4. -[jan] Provide default configuration files instead of .dist versions. -[mms] Convert to use H4. - - ------- -v1.1.2 ------- - -[mms] SECURITY: Fix CSS vulnerability when viewing file data (found by - nightmare.lmw@anarchynet.org). -[jan] Add Japanese translation (Hiromi Kimura ). - - ------- -v1.1.1 ------- - -[jan] Add Croatian translation (Valentin Vidic ). -[mms] Upgrade prototype.js to v1.6.1. -[mms] Fix create folder dialog in IE (Bug #8216). -[jan] Don't redirect to browse view if viewing a file fails. - - ----- -v1.1 ----- - -[jan] Fix attachment dialog with only a single autologin backend (Bug #7096). -[jan] Start with first page again when filter string is changed (Bug #7935). -[mms] Navigation link now uses description from backends.php (Request #8037, - Thomas Reifferscheid ). -[mjr] Fix issue that was causing the wrong backend to be selected when being - redirected to login.php. -[mms] Fix autologin when switching backends on login page (Bug #7892, - horde@smartsector.hu). - - --------- -v1.1-RC1 --------- - -[mms] Add folder caching. -[mms] Add pager navigation and filtering (Request #7160, joel@scopserv.com). -[jan] Add Estonian translation (Alar Sing ). -[jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV - ). -[cjh] Use the Horde date_format preference (Bug #6683). -[cjh] Apply fix for http://dev.rubyonrails.org/ticket/11473 to prototype.js - (Request #6590). -[jan] Add Turkish translation (METU ). -[cjh] If the VFS backend supports streams, use them to avoid reading entire - files into memory when downloading (Request #5913). -[mms] Compress download data. -[jan] Add Ukrainian translation (Andriy Kopystyansky ). -[bak] Add browse API to allow browsing backends through WebDAV (Request #5337). -[cjh] Inline PHP-generated javascript to avoid cross-domain leaking - (Bug #5307). -[mms] Preserve URL anchor information when performing login. -[mms] All javascript now contained in static, cacheable files. -[cjh] Add javascript sortable tables to Gollem. -[cjh] Use optimized Horde_Template code as Gollem_Template. -[cjh] Fix javascript errors when filenames contain quotes (Bug #3824), - and make several links work without JavaScript. -[jan] Add editing of text files. -[mms] Add examples/checks for SSH2 VFS driver. - - ------- -v1.0.4 ------- - -[jan] Add Estonian translation (Alar Sing ). -[jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV - ). -[jan] Add Slovak translation (Martin Matuška ). -[cjh] Fix uploading files to non-empty directories when deletion is disabled - (Bug #5349). - - ------- -v1.0.3 ------- - -[jan] Add Catalan translation (Jordi Giralt ). -[jan] Add Slovenian translation (Duck ). -[jan] Add Brazilian Portuguese translation (Fábio Gomes ). -[mms] Don't show quota link in menu if quota support for current backend is - disabled. - - ------- -v1.0.2 ------- - -[jan] Add Danish translation (Brian Truelsen ). -[mms] Allow admin to disable clipboard support in backends.php. -[mms] Allow direct autologin from login page if there are no additional login - parameters available (Bug #3299, jpolansky@lsit.ucsb.edu). -[mms] Fix displaying/loading wrong backend when changing backends via the - dropdown on login page (Bug #3298, jpolansky@lsit.ucsb.edu). - - ----------- -v1.0.2-RC1 ----------- - -[mms] Convert all page templates to Horde_Template. -[mms] Add row highlighting to manager page (Bug #2977). -[mms] Fix configtabs in configuration file (Bug #3119). - - ------- -v1.0.1 ------- - -[mms] Don't try to login using Horde auth credentials if hordeauth is off - (Bug #3078). -[mms] Can select default permissions for newly created files and directories - per backend. - - ----------- -v1.0.1-RC1 ----------- - -[mms] Indicate if no backends are available to a user. -[mms] Add quota status page (Bug #2685). -[mms] Add interface to facilitate admins in editing permissions on a - per-backend basis (Bug #2255, vijay.mahrra@es.easynet.net). -[mms] Add support for VFS quota checking (Bug #162). -[mms] Fix autocreation of home directories when home is also the root - directory (Bug #2603). -[mms] Add language selection to login screen if using gollem as the - authentication driver. -[mms] Add 'redirect_on_logout' and 'alternate_login' config parameters. -[mms] Work around bug in VFS's autocreatePath() occuring in Horde <= 3.0.4. -[jan] Add Polish translation (Krzysztof Kozlowski ). - - ----- -v1.0 ----- - -[mms] Move filter parameter in backends.php from the VFS 'params' array to - the driver's base level. -[mms] Home should default to root, not the base directory, if it is undefined. -[mms] Pass configuration error messages to the login screen on aborted login. - - --------- -v1.0-RC2 --------- - -[mms] Allow home directory to be autocreated on login if it doesn't exist. -[mms] Added ability to copy/cut between VFS backends. -[mms] Added clipboard screen. -[jan] Add Hungarian translation (Laszlo L. Tornoci ). - - --------- -v1.0-RC1 --------- - -[mms] Exit back to login screen if autologin attempt fails. -[mms] Fix logins when either 'home' or 'root' is a relative path. -[mms] Skip login screen if there are no loginparams required. -[mms] Add 'driver' and 'dir' parameters to download/view links so that these - links are not tied to the current session. -[jan] Add Finnish translation (Leena Heino ). - - ---------- -v1.0-BETA ---------- - -[mms] Consolidated template code to reduce the number of included files needed - per page load. -[mms] Added realPath() function to Gollem:: to lower minimum Horde requirement - from 3.0.5 to 3.0. - - ----------- -v1.0-ALPHA ----------- - -[mas] Change any output of and tags to and for better - accessibility support. -[mms] Remove 'change_server' and 'change_port' configuration parameters and - instead allow admin to choose which VFS parameters can be overriden - by the user at login time via the backend configuration. -[mms] Honor the Horde-wide 'redirect_on_logout' and 'alternate_login' - configuration parameters. -[jan] Add Latvian translation (Janis Eisaks ). -[mms] Tweaks to make sure 'root' isn't a required parameter (Bug #1663). -[mms] Allow changing folders using relative paths (Bug #1585). -[mms] Automatically generate new upload fields on demand. -[mms] Allow user to switch between multiple backends during a single session. -[mms] Add backend selection to the left tree sidebar. -[jan] Allow to switch backends in select file popup window. -[cjh] Consistently use Folder, not Directory - (Benoit St-Andre ). -[cjh] Fix loading of an extra frameset on login screen reloads. -[mms] Add API for other Horde applications to show a file dialog to select - and return files. -[jan] Add regular expression filters for directory listings (Peter Arien - ). -[cjh] Add recursive deletion of directories (Jeff Graves ). -[mms] Only support viewing one backend at a time now. -[mms] Encrypt passwords in session. -[mms] Moved all session creation code to Gollem_Session::. -[cjh] Enforce all permissions for backends if they are set - (Amith Varghese ). -[mms] Added test script. -[mms] Allow up to three files to be uploaded at once. -[cjh] View files in a new window, allowing viewing of types that we don't - allow inline display of. -[cjh] Copy/Paste files functionality (Michael Varghese - ). -[max] Fix 'hordeauth' is set to true, but the realm not getting - stripped from the username. -[cjh] Add preferences for which columns to display - (Liam Hoekenga ). -[jan] Add Romanian translation (Eugen Hoanca ). -[cjh] Display the total size of files in a directory - (Tero Matinlassi ). -[cjh] Add move/copy between different backends (j.huinink@wanadoo.nl). -[cjh] Add ability to view different backends side-by-side - (j.huinink@wanadoo.nl). -[cjh] Add Move/Copy functionality - (Michael Varghese ). -[cjh] Preference for showing/hiding .dotfiles - (Liam Hoekenga ). -[cjh] Put download links in a separate column. Having the filename sometimes - mean view and sometimes mean download was very confusing. -[cjh] Add support for 'home' parameter in backend configuration - (Liam Hoekenga ). -[cjh] Add Change Directory menu item (Liam Hoekenga ). -[jan] Add Bulgarian translation (Miroslav Pendev ). -[cjh] If 'hordeauth' is set to 'full', usernames will not be stripped - of anything after the first @ when doing Horde authentication. -[mac] Use MIME_Viewers to display filetypes we recognize. -[cjh] Make the server list more dynamic; automatically log users in when - they select a server that doesn't require any more credentials, and - reload the form when they change servers to make sure the fields are - accurate. -[mac] Allow users to select an FTP server (if the admin allows) and add a - server list again. -[mac] Add conf.xml. -[cjh] Gollem is now completely based on the VFS backend system. Thanks - to Michael Varghese . -[jan] Add Norwegian Nynorsk translation (Per-Stian Vatne ). -[cjh] Close a potential problem with register_globals On and $js_onLoad. -[cjh] Respect show_dotfiles settings in servers.php - (Marcus I. Ryan ). -[cjh] Use the new PrefsUI class. -[jon] Adapt to the new Horde::img() syntax. -[cjh] Use passive mode. -[cjh] Switch output compression to ob_gzhandler(). -[cjh] Prefix all application constants with GOLLEM_. -[cjh] Use the new Notification system. -[cjh] Use GOLLEM_TEMPLATES constant for all template paths. -[cjh] Use $registry->get() for all Registry information. -[jan] Add Swedish translation (Andreas Dahlén ). -[jan] Remove the standard value for the language preference. The language to - fall back to should be set Horde wide in lang.php instead. -[jan] Add Korean translation (J.I Kim ). -[cjh] Nuke forwards/vacation/password stuff; Gollem is a file manager. -[cjh] Remove server/port preferences. -[bjn] Change 'en' and 'en_EN' locales to 'en_US' (default). -[cjh] Add French translation (Remi@Cohen-Scali.com). -[cjh] Take framework updates into account. -[jan] Add Russian translation (Anton Nekhoroshih ). -[jan] Add German translation. -[jan] Add Italian translation (Giovanni Meneghetti ). -[cjh] Chmod now works (Anton Nekhoroshih ). -[cjh] Add Traditional Chinese translation (David Chang ). -[cjh] Add Czech translation (pchytil@asp.ogi.edu). -[avsm] Replace $conf['paths'] with the $registry equivalents. -[cjh] Add $conf['menu']['apps'] support. -[cjh] Add translation framework. -[cjh] Start to handle symlinks correctly. -[cjh] Fix problem going up to home directory. -[cjh] Use prefs.gif and generic prefs templates from Horde. -[jon] Merge doctype.inc into common-header.inc. -[jon] Allow the registry to handle Gollem's configuration values. -[jon] HORDE_BASE is now defined in lib/base.php instead of config/conf.php. -[max] Rename MOTD.html to motd.php, and move to a .dist file. -[max] Add the realm field to make logins unique on multi-server configurations - for preferences and authentication. -[max] Allow Gollem to be an authentication handler for Horde. -[cjh] Define the HORDE_BASE constant in config/conf.php, and use it when - referring to any of Horde's files. -[max] Remove connection tracking, made obsolete by redirect.php. -[jon] Retired config/menu.txt in favor of config/menu.php. This file follows - a new format based on native PHP data structures. -[jon] Use the Horde temporary file routines. -[cjh] Added a few new icons and tweaked some minor layout stuff. -[cjh] Moved IMP's poppassd script into lib/Password/poppassd.php. Doesn't work - yet, but this is where it belongs. -[max] Moved the status.php require from the menu to the individual pages. -[max] Finished updating preferences to the current Horde API. -[jon] Updated preferences functions to match the new Horde preferences API. -[max] Update to new Horde prefs system. -[max] Update to new Horde registry system. -[max] Fix file renaming. -[max] Make forwards, vacation, and password options server settings. -[max] Fix 1-off year error in file dates. -[max] Add file date format config entry. -[max] Move authentication and session creation from manager to redirect. -[max] Add Gollem::setLabel() to set the label for printing current directory. -[max] Dump the Gollem_util class in favor of Gollem. -[max] Add directory icons. -[max] Add file downloading by clicking on the file name. -[max] Allow creation of folders in empty directories. -[max] Add a GOLLEM_BASE constant to make Gollem location-independant. -[max] Login now submits to redirect.php. -[cjh] Add Gollem::subdirectory() for making subdirectory links correctly. -[cjh] In Gollem::getFileList(), default the dir to '' instead of '.'. -[max] Add Gollem::getFileList() to parse the ftp raw directory list -[max] Added preferences tracking (modified from IMP). -[max] Move directory tracking to Gollem:: and use session vars if not set in - POST or GET. -[max] Create folder, delete items, rename items, upload file on file manager. -[max] Added file manager actions. -[max] Added ftp file manager. -[max] Planning, beginning, modernizing. diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/docs/CREDITS php-horde-gollem-3.0.9/gollem-3.0.8/docs/CREDITS --- php-horde-gollem-3.0.8/gollem-3.0.8/docs/CREDITS 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/docs/CREDITS 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ -========================= - Gollem Development Team -========================= - - -Core Developers -=============== - -- Michael Slusarz -- Jan Schneider - - -Localization -============ - -====================== =============================================== -Basque Euskal Herriko Unibertsitatea -Brazilian Portuguese Fábio Gomes - Luis Felipe Marzagao - Eduardo de Carli -Bulgarian Miroslav Pendev -Catalan Jordi Giralt -Chinese (Traditional) David Chang -Croatian Valentin Vidic -Czech Pavel Chytil - Michael Grafnetter -Danish Brian Truelsen - Erling Preben Hansen -Dutch Jan Kuipers - Peter Arien - Arjen de Korte -Estonian Alar Sing -Finnish Leena Heino -French Remi Cohen-Scali - Benoit St-André - Pierre Lachance -German Jan Schneider -Greek Giorgos Strimpakos - Terpou Maria - Drakopoulos Takis -Hungarian Laszlo L. Tornoci - Andras Galos -Italian Giovanni Meneghetti - Fabio Pedretti - Marco Pirovano - Massimo Balestrieri -Japanese Hiromi Kimura -Korean J.I Kim - Josh Kim -Latvian Janis Eisaks -Norwegian Nynorsk Per-Stian Vatne -Polish Krzysztof Kozlowski - Tadeusz Lesiecki - Piotr Tarnowski - Maciej Uhlig -Romanian Eugen Hoanca -Russian Anton Nekhoroshih -Slovak Martin Matuška - Alexey Zakharov - Jozef Sudolský -Slovenian Duck -Spanish Raúl Alvarez Venegas - Manuel Perez Ayala - Juan C. Blanco -Swedish Andreas Dahlén -Turkish Middle East Technical University - İstanbul Technical University -Ukrainian Andriy Kopystyansky -====================== =============================================== - - -Inactive Developers -=================== - -- Max Kalika diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/docs/INSTALL php-horde-gollem-3.0.9/gollem-3.0.8/docs/INSTALL --- php-horde-gollem-3.0.8/gollem-3.0.8/docs/INSTALL 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/docs/INSTALL 1970-01-01 00:00:00.000000000 +0000 @@ -1,148 +0,0 @@ -====================== - Installing Gollem H5 -====================== - -:Contact: gollem@lists.horde.org - -.. contents:: Contents -.. section-numbering:: - -This document contains instructions for installing the Gollem File Manager on -your system. - -For information on the capabilities and features of Gollem, see the file -README_ in the top-level directory of the Gollem distribution. - - -Prerequisites -============= - -To function properly, Gollem **requires** the following: - -1. A working Horde installation. - - Gollem runs within the `Horde Application Framework`_, a set of common tools - for web applications written in PHP. You must install Horde before - installing Gollem. - - .. Important:: Gollem H5 requires version 5.0.2+ of the Horde Framework - - earlier versions of Horde will **not** work. - - .. Important:: Be sure to have completed all of the steps in the - `horde/docs/INSTALL`_ file for the Horde Framework before - installing Gollem. Many of Gollem's prerequisites are also - Horde prerequisites. Additionally, many of Gollem's optional - features are configured via the Horde install. - - .. _`Horde Application Framework`: http://www.horde.org/apps/horde - - -2. The following PHP capabilities: - - a. FTP support (--with-ftp) [OPTIONAL] - - If using the FTP VFS driver, the FTP PHP module is **required**. - - b. SQL support [OPTIONAL] - - If using an SQL VFS driver, then SQL PHP support is **required**. For - further information on how to set up SQL support in Horde, please - reference the Horde installation document (`horde/docs/INSTALL`_). - -3. If using a FTP backend, you **must** have at least one FTP server. - If using a SQL backend, you **must** have at least one SQL server. - - -Installing Gollem -================= - -The **RECOMMENDED** way to install Gollem is using the PEAR installer. -Alternatively, if you want to run the latest development code or get the -latest not yet released fixes, you can install Gollem from Git. - -Installing with PEAR -~~~~~~~~~~~~~~~~~~~~ - -First follow the instructions in `horde/docs/INSTALL`_ to prepare a PEAR -environment for Horde and install the Horde Framework. - -When installing Gollem through PEAR now, the installer will automatically -install any dependencies of Gollem too. If you want to install Gollem with all -optional dependencies, but without the binary PECL packages that need to be -compiled, specify both the ``-a`` and the ``-B`` flag:: - - pear install -a -B horde/gollem - -By default, only the required dependencies will be installed:: - - pear install horde/gollem - -If you want to install Gollem even with all binary dependencies, you need to -remove the ``-B`` flag. Please note that this might also try to install PHP -extensions through PECL that might need further configuration or activation in -your PHP configuration:: - - pear install -a horde/gollem - -Installing from Git -~~~~~~~~~~~~~~~~~~~ - -See http://www.horde.org/source/git.php - - -Configuring Gollem -================== - -1. Configuring Gollem - - You must login to Horde as a Horde Administrator to finish the - configuration of Gollem. Use the Horde ``Administration`` menu item to get - to the administration page, and then click on the ``Configuration`` icon to - get the configuration page. Select ``File Manager`` from the selection - list of applications. Fill in or change any configuration values as - needed. When done click on ``Generate File Manager Configuration`` to - generate Gollem configuration directory or file, it will not be able to - write the file. In this case, go back to ``Configuration`` and choose one - of the other methods to create the configuration file - ``gollem/config/conf.php``. - - Documentation on the format and purpose of the other configuration files in - the ``config/`` directory can be found in each file. You may create - ``*.local.php`` versions of these files if you wish to customize Gollem's - appearance and behavior. See the header of the configuration files for - details and examples. The defaults will be correct for most sites. - - -Obtaining Support -================= - -If you encounter problems with Gollem, help is available! - -The Horde Frequently Asked Questions List (FAQ), available on the Web at - - http://wiki.horde.org/FAQ - -The Horde Project runs a number of mailing lists, for individual applications -and for issues relating to the project as a whole. Information, archives, and -subscription information can be found at - - http://www.horde.org/community/mail - -Lastly, Horde developers, contributors and users may also be found on IRC, -on the channel #horde on the Freenode Network (irc.freenode.net). - -Please keep in mind that Gollem is free software written by volunteers. -For information on reasonable support expectations, please read - - http://www.horde.org/community/support - -Thanks for using Gollem! - -The Gollem Team - - -.. _README: README -.. _`horde/docs/INSTALL`: ../../horde/docs/INSTALL -.. _`horde/docs/TRANSLATIONS`: ../../horde/docs/TRANSLATIONS -.. _`horde/docs/SECURITY`: ../../horde/docs/SECURITY -.. _`horde/docs/PERFORMANCE`: ../../horde/docs/PERFORMANCE diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/docs/RELEASE_NOTES php-horde-gollem-3.0.9/gollem-3.0.8/docs/RELEASE_NOTES --- php-horde-gollem-3.0.8/gollem-3.0.8/docs/RELEASE_NOTES 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/docs/RELEASE_NOTES 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ - Configuration and update anything that's highlighted as -outdated. - - -Upgrading Gollem From 2.x To 3.x -================================ - -This is a non-exhaustive, quick explanation of what has changed between a -Gollem 2.x installation to Gollem 3.x. - - -File sharing ------------- - -File sharing support has been added and is enabled by default for the "file" -and "sqlhome" backend configuration examples. - -File sharing allows more flexible sharing of folders between Horde users and -groups, independent from the backend's permission system. To correctly work it -actually **needs** a backend type that does not enforce per-user permissions. - -See the comments for the "shares" parameter in `backends.php` for details. - - -Upgrading Gollem From 1.x To 2.x -================================ - -This is a non-exhaustive, quick explanation of what has changed between a -Gollem 1.x installation to Gollem 2.x. - - -MIME Viewer Options (mime_drivers.php) --------------------------------------- - -Gollem specific MIME configuration is no longer needed, so this configuration -file can be removed. - - -Server Options (backends.php) ------------------------------ - -The 'clipboard' option has been removed. The availability of the clipboard -is now entirely dependent on the user's edit permissions for the application. - - -.. _INSTALL: INSTALL diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/edit.php php-horde-gollem-3.0.9/gollem-3.0.8/edit.php --- php-horde-gollem-3.0.8/gollem-3.0.8/edit.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/edit.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem'); - -$vars = Horde_Variables::getDefaultVariables(); - -if ($vars->driver != Gollem::$backend['driver']) { - echo Horde::wrapInlineScript(array('window.close();')); - exit; -} - -/* Run through action handlers. */ -switch ($vars->actionID) { -case 'save_file': - try { - $injector - ->getInstance('Gollem_Vfs') - ->writeData($vars->dir, $vars->file, $vars->content); - $message = sprintf(_("%s successfully saved."), $vars->file); - } catch (Horde_Vfs_Exception $e) { - $message = sprintf(_("Access denied to %s"), $vars->file); - } - echo Horde::wrapInlineScript(array( - 'alert(' . Horde_Serialize::serialize($message, Horde_Serialize::JSON) . ')' - )); - break; - -case 'edit_file': - try { - $data = $injector - ->getInstance('Gollem_Vfs') - ->read($vars->dir, $vars->file); - } catch (Horde_Vfs_Exception $e) { - echo Horde::wrapInlineScript(array( - 'alert(' . Horde_Serialize::serialize(sprintf(_("Access denied to %s"), $vars->file), Horde_Serialize::JSON) . ')' - )); - break; - } - - $mime_type = Horde_Mime_Magic::extToMIME($vars->type); - if (strpos($mime_type, 'text/') !== 0) { - break; - } - - if ($mime_type == 'text/html') { - $injector->getInstance('Horde_Editor')->initialize(array('id' => 'content')); - } - - $view = $injector->createInstance('Horde_View'); - $view->self_url = Horde::url('edit.php'); - $view->forminput = Horde_Util::formInput(); - $view->vars = $vars; - $view->data = $data; - - $page_output->addScriptFile('edit.js'); - $page_output->topbar = $page_output->sidebar = false; - - $page_output->header(array( - 'title' => $title - )); - $notification->notify(array('listeners' => 'status')); - echo $view->render('edit'); - $page_output->footer(); - exit; -} - -echo Horde::wrapInlineScript(array('window.close()')); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/index.php php-horde-gollem-3.0.9/gollem-3.0.8/index.php --- php-horde-gollem-3.0.8/gollem-3.0.8/index.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/index.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ - - * @author Chuck Hagenbuch - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require __DIR__ . '/manager.php'; diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/js/clipboard.js php-horde-gollem-3.0.9/gollem-3.0.8/js/clipboard.js --- php-horde-gollem-3.0.8/gollem-3.0.8/js/clipboard.js 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/js/clipboard.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -/** - * Provides the javascript for the clipboard.php script. - * - * See the enclosed file COPYING for license information (GPL). If you - * did not receive this file, see http://www.horde.org/licenses/gpl. - */ - -var GollemClipboard = { - - // Variables set by clipboard.php: - // selectall, selectnone - - clickHandler: function(e) - { - if (e.isRightClick()) { - return; - } - - var id, tmp, - elt = e.element(); - - while (Object.isElement(elt)) { - id = elt.readAttribute('id'); - - switch (id) { - case 'gollem-selectall': - tmp = elt.getValue(); - elt.next('SPAN').update(tmp ? this.selectnone : this.selectall); - $('gollem-clipboard').getInputs('checkbox').without(elt).invoke('setValue', tmp); - return; - - case 'gollem-pastebutton': - $('actionID').setValue('paste_items'); - $('gollem-clipboard').submit(); - return; - - case 'gollem-clearbutton': - $('actionID').setValue('clear_items'); - $('gollem-clipboard').submit(); - return; - - case 'gollem-cancelbutton': - $('gollem-clipboard').submit(); - return; - } - - elt = elt.up(); - } - } - -}; - -document.observe('click', GollemClipboard.clickHandler.bindAsEventListener(GollemClipboard)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/js/edit.js php-horde-gollem-3.0.9/gollem-3.0.8/js/edit.js --- php-horde-gollem-3.0.8/gollem-3.0.8/js/edit.js 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/js/edit.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -/** - * Provides the javascript for the edit.php script. - * - * See the enclosed file COPYING for license information (GPL). If you - * did not receive this file, see http://www.horde.org/licenses/gpl. - */ - -var GollemEdit = { - - onDomLoad: function() - { - $('cancelbutton').observe('click', function() { - window.close(); - }); - - $('gollem-edit').focus(); - } - -}; - -document.observe('dom:loaded', GollemEdit.onDomLoad.bind(GollemEdit)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/js/login.js php-horde-gollem-3.0.9/gollem-3.0.8/js/login.js --- php-horde-gollem-3.0.8/gollem-3.0.8/js/login.js 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/js/login.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -/** - * Provides the javascript for the login.php script. - * - * Copyright 2012-2016 Horde LLC (http://www.horde.org/) - * - * See the enclosed file COPYING for license information (GPL). If you - * did not receive this file, see http://www.horde.org/licenses/gpl. - * - * @author Jan Schneider - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -var GollemLogin = { - - changeHandler: function(e) - { - switch (e.element().readAttribute('id')) { - case 'backend_key': - RedBox.loading(); - $('horde_login').submit(); - break; - } - } - -} - -document.observe('change', GollemLogin.changeHandler); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/js/manager.js php-horde-gollem-3.0.9/gollem-3.0.8/js/manager.js --- php-horde-gollem-3.0.8/gollem-3.0.8/js/manager.js 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/js/manager.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,344 +0,0 @@ -/** - * Provides the javascript for the manager.php script. - * - * See the enclosed file COPYING for license information (LGPL). If you - * did not receive this file, see http://www.horde.org/licenses/lgpl21. - */ - -var Gollem = { - - getChecked: function() - { - return this.getElements().findAll(function(e) { - return e.checked; - }); - }, - - getElements: function() - { - return $('manager').getInputs(null, 'items[]'); - }, - - getSelected: function() - { - return this.getChecked().pluck('value').join("\n"); - }, - - toggleSelection: function() - { - var e = this.getElements(), - checked = (this.getChecked().size() != e.length); - e.each(function(f) { - f.checked = checked; - }); - }, - - getItemsArray: function() - { - var i = 0, - it = $('manager').getInputs(null, 'itemTypes[]'); - - return this.getElements().collect(function(m) { - return { c: m.checked, v: m.value, t: it[i++].value }; - }); - }, - - getSelectedFoldersList: function() - { - return this.getItemsArray().collect(function(i) { - return (i.c && i.t == '**dir') ? i.v : null; - }).compact().join("\n"); - }, - - _clearChecks: function() - { - this.getChecked().each(function(e) { - e.checked = false; - }); - }, - - renameItems: function() - { - var c = this.getChecked(); - if (c.size()) { - c[0].checked = false; - $('renamefrm_oldname').setValue(c[0].value); - HordeDialog.display({ - form_id: 'renamefrm', - input_val: c[0].value, - text: GollemText.rename - }); - } - }, - - deleteItems: function() - { - var cont = true, sf; - - if (window.confirm(GollemText.delete_confirm_1 + '\n' + this.getSelected() + '\n' + GollemText.delete_confirm_2)) { - if (GollemVar.warn_recursive) { - sf = this.getSelectedFoldersList(); - if (!sf.empty() && - !window.confirm(GollemText.delete_recurs_1 + '\n' + sf + '\n' + GollemText.delete_recurs_2)) { - cont = false; - } - } - } else { - cont = false; - } - - if (cont) { - $('actionID').setValue('delete_items'); - $('manager').submit(); - } - }, - - createFolderOK: function() - { - if ($F('dialog_input')) { - $('new_folder').setValue($F('dialog_input')); - $('actionID').setValue('create_folder'); - $('manager').submit(); - } - }, - - chmodOK: function() - { - var all = group = owner = 0; - - $('chmodfrm').getElements().each(function(e) { - if (e.name == 'owner[]' && e.checked) { - owner |= e.value; - } else if (e.name == 'group[]' && e.checked) { - group |= e.value; - } else if (e.name == 'all[]' && e.checked) { - all |= e.value; - } - }); - - $('chmod').setValue('0' + owner + '' + group + '' + all); - $('actionID').setValue('chmod_modify'); - $('manager').submit(); - }, - - renameOK: function() - { - var c = this.getChecked(), - newname = $F('dialog_input'), - newNames = $F('new_names'), - oldname = $F('renamefrm_oldname'), - oldNames = $F('old_names'); - - if (newname && newname != oldname) { - newNames += '|' + newname; - oldNames += '|' + oldname; - } - - if (newNames.startsWith('|')) { - newNames = newNames.substring(1); - } - if (oldNames.startsWith('|')) { - oldNames = oldNames.substring(1); - } - - $('new_names').setValue(newNames); - $('old_names').setValue(oldNames); - - if (c.size()) { - this.renameItems.defer(); - } else { - $('actionID').setValue('rename_items'); - $('manager').submit(); - } - }, - - changeDirectoryOK: function() - { - if ($F('dialog_input')) { - $('dir').setValue($F('dialog_input')); - $('manager').submit(); - } - }, - - uploadFields: function() - { - return $('manager').getInputs('file').collect(function(m) { - return (m.name.substr(0, 12) == 'file_upload_') ? m : null; - }).compact(); - }, - - uploadFile: function() - { - if (this.uploadsExist()) { - $('actionID').setValue('upload_file'); - $('manager').submit(); - } - }, - - uploadsExist: function() - { - if (GollemVar.empty_input || - this.uploadFields().find(function(f) { return $F(f); })) { - return true; - } - alert(GollemText.specify_upload); - $('file_upload_1').focus(); - return false; - }, - - uploadChanged: function() - { - if (GollemVar.empty_input) { - return; - } - - var file, lastRow, - fields = this.uploadFields(), - usedFields = fields.findAll(function(f) { return $F(f).length; }).length; - - if (usedFields == fields.length) { - lastRow = $('upload_row_' + usedFields); - if (lastRow) { - file = new Element('INPUT', { type: 'file', name: 'file_upload_' + (usedFields + 1), size: 25 }); - lastRow.insert({ after: - new Element('DIV', { id: 'upload_row_' + (usedFields + 1) }).insert( - new Element('STRONG').insert(GollemText.file + ' ' + (usedFields + 1) + ':') - ).insert(' ').insert(file) - }); - file.observe('change', this.uploadChanged.bind(this)); - } - } - }, - - clickHandler: function(e) - { - if (e.isRightClick()) { - return; - } - - var id, tmp, - elt = e.element(); - - while (Object.isElement(elt)) { - id = elt.readAttribute('id'); - - switch (id) { - case 'gollem-changefolder': - this._clearChecks(); - HordeDialog.display({ - form_id: 'cdfrm', - text: GollemText.change_directory - }); - e.stop(); - return; - - case 'checkall': - this.toggleSelection(); - break; - - case 'gollem-createfolder': - this._clearChecks(); - HordeDialog.display({ - form_id: 'createfrm', - text: GollemText.create_folder - }); - e.stop(); - return; - - case 'uploadfile': - this.uploadFile(); - break; - - case 'gollem-rename': - if (!this.getChecked().size()) { - alert(GollemText.select_item); - break; - } - this.renameItems(); - break; - - case 'gollem-delete': - if (!this.getChecked().size()) { - alert(GollemText.select_item); - break; - } - this.deleteItems(); - break; - - case 'gollem-chmod': - if (!this.getChecked().size()) { - alert(GollemText.select_item); - break; - } - HordeDialog.display({ - form: $('gollem-attributes').clone(true).show(), - form_id: 'chmodfrm', - form_opts: { action: GollemVar.actionUrl }, - header: GollemText.permissions - }); - break; - - case 'gollem-cut': - if (!this.getChecked().size()) { - alert(GollemText.select_item); - break; - } - $('actionID').setValue('cut_items'); - $('manager').submit(); - break; - - case 'gollem-copy': - if (!this.getChecked().size()) { - alert(GollemText.select_item); - break; - } - $('actionID').setValue('copy_items'); - $('manager').submit(); - break; - } - - elt = elt.up(); - } - }, - - okHandler: function(e) - { - switch (e.element().identify()) { - case 'cdfrm': - Gollem.changeDirectoryOK(); - break; - - case 'chmodfrm': - Gollem.chmodOK(); - break; - - case 'createfrm': - Gollem.createFolderOK(); - break; - - case 'renamefrm': - Gollem.renameOK(); - break; - } - }, - - closeHandler: function(e) - { - $('new_names', 'old_names').invoke('setValue', ''); - }, - - onDomLoad: function() - { - var tmp; - - if (tmp = $('file_upload_1')) { - tmp.observe('change', this.uploadChanged.bind(this)); - } - } - -}; - -document.observe('dom:loaded', Gollem.onDomLoad.bind(Gollem)); -document.observe('click', Gollem.clickHandler.bindAsEventListener(Gollem)); -document.observe('HordeDialog:onClick', Gollem.okHandler.bindAsEventListener(Gollem)); -document.observe('HordeDialog:close', Gollem.closeHandler.bindAsEventListener(Gollem)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/js/selectlist.js php-horde-gollem-3.0.9/gollem-3.0.8/js/selectlist.js --- php-horde-gollem-3.0.8/gollem-3.0.8/js/selectlist.js 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/js/selectlist.js 1970-01-01 00:00:00.000000000 +0000 @@ -1,67 +0,0 @@ -/** - * Provides the javascript for the selectlist.php script. - * - * See the enclosed file COPYING for license information (LGPL). If you - * did not receive this file, see http://www.horde.org/licenses/lgpl21. - */ - -var Gollem_Selectlist = { - - returnID: function() - { - var formid = $F('formid'), - field = parent.opener.document[formid].selectlist_selectid, - field2 = parent.opener.document[formid].actionID; - - if (parent.opener.closed || !field || !field2) { - alert(GollemText.opener_window); - window.close(); - return; - } - - field.value = $F('cacheid'); - field2.value = 'selectlist_process'; - - parent.opener.document[formid].submit(); - window.close(); - }, - - clickHandler: function(e) - { - if (e.isRightClick()) { - return; - } - - var id, tmp, - elt = e.element(); - - while (Object.isElement(elt)) { - id = elt.readAttribute('id'); - - switch (id) { - case 'addbutton': - $('actionID').setValue('select'); - $('selectlist').submit(); - return; - - case 'cancelbutton': - window.close(); - return; - - case 'donebutton': - this.returnID(); - return; - } - - elt = elt.up(); - } - }, - - onDomLoad: function() - { - $('selectlist').observe('click', this.clickHandler.bindAsEventListener(this)); - } - -}; - -document.observe('dom:loaded', Gollem_Selectlist.onDomLoad.bind(Gollem_Selectlist)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Api.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Api.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Api.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Api.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,427 +0,0 @@ - - * @author Michael Slusarz - * @author Ben Klang - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem_Api extends Horde_Registry_Api -{ - /** - * Browses through the VFS tree. - * - * Each VFS backend is listed as a directory at the top level. No modify - * operations are allowed outside any VFS area. - * - * @param string $path The level of the tree to browse. - * @param array $properties The item properties to return. Defaults to - * 'name', 'icon', and 'browseable'. - * - * @return array The contents of $path. - * @throws Gollem_Exception - */ - public function browse($path = '', - $properties = array('name', 'icon' ,'browseable')) - { - $path = Gollem::stripAPIPath($path); - $results = array(); - - if ($path == '') { - // We are at the root of gollem. Return a set of folders, one for - // each backend available. - foreach (Gollem_Auth::getBackend() as $backend => $curBackend) { - $results['gollem/' . $backend]['name'] = $curBackend['name']; - $results['gollem/' . $backend]['browseable'] = true; - } - } else { - $backend_key = $this->_getBackend($path); - - throw new Gollem_Exception('Permssion checks not implemented yet.'); - - // Trim off the backend_key (and '/') to get the VFS relative path - $fullpath = substr($path, strlen($backend_key) + 1); - - // Get the VFS-standard $name,$path pair - list($name, $path) = Gollem::getVFSPath($fullpath); - - // Check to see if the request is a file or folder - $gollem_vfs = $GLOBALS['injector']->getInstance('Gollem_Vfs'); - if ($gollem_vfs->isFolder($path, $name)) { - // This is a folder request. Return a directory listing. - $list = Gollem::listFolder($path . '/' . $name); - - // Iterate over the directory contents - if (is_array($list) && count($list)) { - $index = 'gollem/' . $backend_key . '/' . $fullpath; - foreach ($list as $key => $val) { - $entry = Gollem::pathEncode($index . '/' . $val['name']); - $results[$entry]['name'] = $val['name']; - $results[$entry]['modified'] = $val['date']; - if ($val['type'] == '**dir') { - $results[$entry]['browseable'] = true; - } else { - $results[$entry]['browseable'] = false; - $results[$entry]['contentlength'] = $val['size']; - } - } - } - } else { - // A file has been requested. Return the contents of the file. - // Get the file meta-data - $list = Gollem::listFolder($path); - $i = false; - foreach ($list as $key => $file) { - if ($file['name'] == $name) { - $i = $key; - break; - } - } - if ($i === false) { - // File not found - return $i; - } - - // Send the file - $results['name'] = $name; - $results['data'] = $gollem_vfs->read($path, $name); - $results['contentlength'] = $list[$i]['size']; - $results['mtime'] = $list[$i]['date']; - } - } - - return $results; - } - - /** - * Accepts a file for storage into the VFS. - * - * @param string $path Path to store file. - * @param string $content Contents of file. - * @param string $content_type MIME type of file. - * - * @throws Gollem_Exception - */ - public function put($path, $content, $content_type) - { - // Clean off the irrelevant portions of the path - $path = Gollem::stripAPIPath($path); - - if ($path == '') { - // We are at the root of gollem. Any writes at this level are - // disallowed. - throw new Gollem_Exception(_("Files must be written inside a VFS backend.")); - } - - $backend_key = $this->_getBackend($path); - - throw new Gollem_Exception('Permssion checks not implemented yet.'); - - // Trim off the backend_key (and '/') to get the VFS relative path - $fullpath = substr($path, strlen($backend_key) + 1); - - // Get the VFS-standard $name,$path pair - list($name, $path) = Gollem::getVFSPath($fullpath); - - return $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->writeData($path, $name, $content); - } - - /** - * Creates a directory ("collection" in WebDAV-speak) within the VFS - * - * @param string $path Path of directory to create - * - * @throws Gollem_Exception - */ - public function mkcol($path) - { - // Clean off the irrelevant portions of the path - $path = Gollem::stripAPIPath($path); - - if ($path == '') { - // We are at the root of gollem. Any writes at this level are - // disallowed. - throw new Gollem_Exception(_('Folders must be created inside a VFS backend.')); - } - - $backend_key = $this->_getBackend($path); - - throw new Gollem_Exception('Permssion checks not implemented yet.'); - - // Trim off the backend_key (and '/') to get the VFS relative path - $fullpath = substr($path, strlen($backend_key) + 1); - - // Get the VFS-standard $name,$path pair - list($name, $path) = Gollem::getVFSPath($fullpath); - - return $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->createFolder($path, $name); - } - - /** - * Renames a file or directory - * - * @param string $path Path to source object to be renamed - * @param string $dest Path to new name - */ - public function move($path, $dest) - { - // Clean off the irrelevant portions of the path - $path = Gollem::stripAPIPath($path); - $dest = Gollem::stripAPIPath($dest); - - if ($path == '') { - // We are at the root of gollem. Any writes at this level are - // disallowed. - throw new Gollem_Exception(_('Folders must be created inside a VFS backend.')); - } - - // We must be inside one of the VFS areas. Determine which one. - // Locate the backend_key in the path - if (!strchr($path, '/') || - !strchr($dest, '/')) { - // Disallow attempts to rename a share-level directory. - throw new Gollem_Exception(_('Renaming of backends is not allowed.')); - } - - $backend_key = $this->_getBackend($path); - - throw new Gollem_Exception('Permssion checks not implemented yet.'); - $dest_backend_key = substr($path, 0, strpos($path, '/')); - if ($dest_backend_key != $backend_key) { - throw new Gollem_Exception(_('Renaming across backends is not supported.')); - } - - // Trim off the backend_key (and '/') to get the VFS relative path - $srcfullpath = substr($path, strlen($backend_key) + 1); - $dstfullpath = substr($dest, strlen($backend_key) + 1); - - // Get the VFS-standard $name,$path pair - list($srcname, $srcpath) = Gollem::getVFSPath($srcfullpath); - list($dstname, $dstpath) = Gollem::getVFSPath($dstfullpath); - - $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->rename($srcpath, $srcname, $dstpath, $dstname); - } - - /** - * Removes a file or folder from the VFS - * - * @param string $path Path of file or folder to delete - */ - public function path_delete($path) - { - // Clean off the irrelevant portions of the path - $path = Gollem::stripAPIPath($path); - - if ($path == '') { - // We are at the root of gollem. Any writes at this level are - // disallowed. - throw new Gollem_Exception(_("The application folder can not be deleted.")); - } - - $backend_key = $this->_getBackend($path); - - throw new Gollem_Exception('Permssion checks not implemented yet.'); - - // Trim off the backend_key (and '/') to get the VFS relative path - $fullpath = substr($path, strlen($backend_key) + 1); - - // Get the VFS-standard $name,$path pair - list($name, $path) = Gollem::getVFSPath($fullpath); - - // Apparently Gollem::verifyDir() (called by deleteF* next) needs to - // see a path with a leading '/' - $path = $backends[$backend_key]['root'] . $path; - - $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->isFolder($path, $name) - ? Gollem::deleteFolder($path, $name) - : Gollem::deleteFile($path, $name); - } - - /** - * Returns a link to the gollem file preview interface - * - * @param string $dir File absolute path - * @param string $file File basename - * @param string $backend_key Backend key. Defaults to - * Gollem_Auth::getPreferredBackend(). - * - * @return Horde_Url The URL object. - */ - public function getViewLink($dir, $file, $backend_key = '') - { - if (empty($backend_key)) { - $backend_key = Gollem_Auth::getPreferredBackend(); - } - $backend = Gollem_Auth::getBackend($backend_key); - - return Horde::url('view.php')->add(array( - 'dir' => $dir, - 'driver' => $backend['driver'], - 'file' => $file, - 'type' => substr($file, strrpos($file, '.') + 1) - )); - } - - /** - * Creates a link to the gollem file selection window. - * - * The file section window will return a cache ID value which should be - * used (along with the selectListResults and returnFromSelectList - * functions below) to obtain the data from a list of selected files. - * - * There MUST be a form field named 'selectlist_selectid' in the calling - * form. This field will be populated with the selection ID when the user - * completes file selection. - * - * There MUST be a form parameter named 'actionID' in the calling form. - * This form will be populated with the value 'selectlist_process' when - * the user completes file selection. The calling form will be submitted - * after the window closes (i.e. the calling form must process the - * 'selectlist_process' actionID). - * - * @param string $link_text The text to use in the link. - * @param string $link_style The style to use for the link. - * @param string $formid The formid of the calling script. - * @param boolean $icon Create the link with an icon instead of - * text? - * @param string $selectid Selection ID. - * - * @return string The URL string. - */ - public function selectlistLink($link_text, $link_style, $formid, - $icon = false, $selectid = '') - { - $link = Horde::link('#', $link_text, $link_style, '_blank', Horde::popupJs(Horde::url('selectlist.php'), array('params' => array_filter(array('formid' => $formid, 'cacheid' => $selectid)), 'height' => 500, 'width' => 300, 'urlencode' => true)) . 'return false;'); - if ($icon) { - $link_text = Horde::img('gollem.png', $link_text); - } - return ''; - } - - /** - * Returns the list of files selected by the user for a given selection ID. - * - * @param string $selectid The selection ID. - * - * @param array An array with each file entry stored in its own array, - * with the key as the directory name and the value as the - * filename. - */ - public function selectlistResults($selectid) - { - $selectlist = $GLOBALS['session']->get('gollem', 'selectlist/' . $selectid); - - if (!isset($selectlist['files'])) { - return null; - } - - $list = array(); - foreach ($selectlist['files'] as $val) { - list($dir, $filename) = explode('|', $val); - $list[] = array($dir => $filename); - } - - return $list; - } - - /** - * Returns the data for a given selection ID and index. - * - * @param string $selectid The selection ID. - * @param integer $index The index of the file data to return. - * - * @return string The file data. - */ - public function returnFromSelectlist($selectid, $index) - { - $selectlist = $GLOBALS['session']->get('gollem', 'selectlist/' . $selectid); - - if (!isset($selectlist['files'][$index])) { - return null; - } - - list($dir, $filename) = explode('|', $selectlist['files'][$index]); - return $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->read($dir, $filename); - } - - /** - * Sets the files selected for a given selection ID. - * - * @param string $selectid The selection ID to use. - * @param array $files An array with each file entry stored in its - * own array, with the key as the directory name - * and the value as the filename. - * - * @return string The selection ID. - */ - public function setSelectlist($selectid = '', $files = array()) - { - if (empty($selectid)) { - $selectid = uniqid(mt_rand()); - } - - if (count($files) > 0) { - $list = array(); - foreach ($files as $file) { - $list[] = key($file) . '|' . current($file); - } - $selectlist = $GLOBALS['session']->get('gollem', 'selectlist/' . $selectid, Horde_Session::TYPE_ARRAY); - $selectlist['files'] = $list; - $GLOBALS['session']->set('gollem', 'selectlist/' . $selectid, $selectlist); - } - - return $selectid; - } - - /** - * @throws Gollem_Exception - */ - protected function _getBackend($path) - { - // A file or directory has been requested. - // Locate the backend_key in the path. - $backend_key = strchr($path, '/') - ? substr($path, 0, strpos($path, '/')) - : $path; - - throw new Gollem_Exception('Not implemented'); - - // Validate and perform permissions checks on the requested backend - if (!$GLOBALS['session']->exists('gollem', 'backends/' . $backend_key)) { - throw new Gollem_Exception(sprintf(_("Invalid backend requested: %s"), $backend_key)); - } - - if (!Gollem_Session::createSession($backend_key)) { - throw new Gollem_Exception(_("Unable to create Gollem session")); - } - - if (!Gollem::checkPermissions('backend', Horde_Perms::READ)) { - throw new Gollem_Exception(_("Permission denied to this backend.")); - } - - return $backend_key; - } - -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Application.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Application.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Application.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Application.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,331 +0,0 @@ - - * @author Michael Slusarz - * @author Ben Klang - * @author Amith Varghese - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -/* Determine the base directories. */ -if (!defined('GOLLEM_BASE')) { - define('GOLLEM_BASE', realpath(__DIR__ . '/..')); -} - -if (!defined('HORDE_BASE')) { - /* If Horde does not live directly under the app directory, the HORDE_BASE - * constant should be defined in config/horde.local.php. */ - if (file_exists(GOLLEM_BASE . '/config/horde.local.php')) { - include GOLLEM_BASE . '/config/horde.local.php'; - } else { - define('HORDE_BASE', realpath(GOLLEM_BASE . '/..')); - } -} - -/* Load the Horde Framework core (needed to autoload - * Horde_Registry_Application::). */ -require_once HORDE_BASE . '/lib/core.php'; - -class Gollem_Application extends Horde_Registry_Application -{ - /** - */ - public $auth = array( - 'authenticate', - 'transparent', - 'validate' - ); - - /** - */ - public $version = 'H5 (3.0.8)'; - - /** - * Server key used in logged out session. - * - * @var string - */ - protected $_oldbackend = null; - - protected function _bootstrap() - { - $GLOBALS['injector']->bindFactory('Gollem_Vfs', 'Gollem_Factory_VfsDefault', 'create'); - $GLOBALS['injector']->bindFactory('Gollem_Shares', 'Gollem_Factory_Shares', 'create'); - } - - /** - */ - protected function _init() - { - if ($backend_key = $GLOBALS['session']->get('gollem', 'backend_key')) { - Gollem_Auth::changeBackend($backend_key); - } - } - - /** - */ - public function perms() - { - $perms = array( - 'backends' => array( - 'title' => _("Backends") - ) - ); - - // Run through every backend. - foreach (Gollem_Auth::getBackend() as $key => $val) { - $perms['backends:' . $key] = array( - 'title' => $val['name'] - ); - } - - return $perms; - } - - /* Horde_Core_Auth_Application methods. */ - - /** - * Return login parameters used on the login page. - * - * @return array See Horde_Core_Auth_Application#authLoginParams(). - */ - public function authLoginParams() - { - $params = array(); - - if ($GLOBALS['conf']['backend']['backend_list'] == 'shown') { - $backend_list = array(); - $selected = is_null($this->_oldbackend) - ? Horde_Util::getFormData('backend_key', Gollem_Auth::getPreferredBackend()) - : $this->_oldbackend; - - foreach (Gollem_Auth::getBackend() as $key => $val) { - $backend_list[$key] = array( - 'name' => $val['name'], - 'selected' => ($selected == $key) - ); - if ($selected == $key) { - if (!empty($val['loginparams'])) { - foreach ($val['loginparams'] as $param => $label) { - $params[$param] = array( - 'label' => $label, - 'type' => 'text', - 'value' => isset($val['params'][$param]) ? $val['params'][$param] : '' - ); - } - } - if (Gollem_Auth::canAutoLogin($key)) { - $params['horde_user'] = null; - $params['horde_pass'] = null; - } - } - } - $params['backend_key'] = array( - 'label' => _("Backend"), - 'type' => 'select', - 'value' => $backend_list - ); - } - - return array( - 'js_code' => array(), - 'js_files' => array(array('login.js', 'gollem'), - array('scriptaculous/effects.js', 'horde'), - array('redbox.js', 'horde')), - 'params' => $params - ); - } - - /** - * Tries to authenticate with the server and create a session. - * - * @param string $userId The username of the user. - * @param array $credentials Credentials of the user. Allowed keys: - * 'backend', 'password'. - * - * @throws Horde_Auth_Exception - */ - public function authAuthenticate($userId, $credentials) - { - $this->init(); - - if (empty($credentials['backend_key'])) { - $credentials['backend_key'] = Gollem_Auth::getPreferredBackend(); - } - $credentials['userId'] = $userId; - $this->_addSessVars(Gollem_Auth::authenticate($credentials)); - } - - /** - * Tries to transparently authenticate with the server and create a - * session. - * - * @param Horde_Core_Auth_Application $auth_ob The authentication object. - * - * @return boolean Whether transparent login is supported. - * @throws Horde_Auth_Exception - */ - public function authTransparent($auth_ob) - { - $this->init(); - - if ($result = Gollem_Auth::transparent($auth_ob)) { - $this->_addSessVars($result); - return true; - } - - return false; - } - - /** - * Validates an existing authentication. - * - * @return boolean Whether the authentication is still valid. - */ - public function authValidate() - { - if (($backend_key = Horde_Util::getFormData('backend_key')) && - $backend_key != $GLOBALS['session']->get('gollem', 'backend_key')) { - Gollem_Auth::changeBackend($backend_key); - } - - return !empty(Gollem::$backend['auth']); - } - - /** - */ - public function menu($menu) - { - $backend_key = Gollem_Auth::getPreferredBackend(); - - $menu->add( - Horde::url('manager.php')->add('dir', Gollem::$backend['home']), - _("Start Folder"), - 'gollem-home', - null, - null, - null, - '__noselection'); - - if (Gollem::checkPermissions('backend', Horde_Perms::EDIT) && - Gollem::checkPermissions('directory', Horde_Perms::EDIT, Gollem::$backend['dir']) && - $GLOBALS['session']->get('gollem', 'clipboard', Horde_Session::TYPE_ARRAY)) { - $menu->add( - Horde::url('clipboard.php')->add('dir', Gollem::$backend['dir']), - _("Clipboard"), - 'gollem-clipboard'); - } - - if (!empty(Gollem::$backend['quota'])) { - if ($GLOBALS['browser']->hasFeature('javascript')) { - $quota_url = 'javascript:' . Horde::popupJs( - Horde::url('quota.php'), - array('params' => array('backend' => $backend_key), - 'height' => 300, - 'width' => 300, - 'urlencode' => true) - ); - } else { - $quota_url = Horde::url('quota.php') - ->add('backend', $backend_key); - } - $menu->add($quota_url, _("Check Quota"), 'gollem-quota'); - } - - if ($GLOBALS['registry']->isAdmin() && - !($GLOBALS['injector']->getInstance('Horde_Perms') instanceof Horde_Perms_Null)) { - $menu->add( - Horde::url('permissions.php')->add('backend', $backend_key), - _("_Permissions"), 'horde-perms'); - } - } - - /** - * Add additional items to the sidebar. - * - * @param Horde_View_Sidebar $sidebar The sidebar object. - */ - public function sidebar($sidebar) - { - $backend = Gollem_Auth::getPreferredBackend(); - $url = $GLOBALS['registry']->getServiceLink('login', 'horde') - ->add(array('url' => (string)Horde::url('manager.php', true), - 'app' => 'gollem')); - - if ($GLOBALS['conf']['backend']['backend_list'] == 'shown') { - foreach (Gollem_Auth::getBackend() as $key => $val) { - $row = array( - 'selected' => $backend == $key, - 'url' => $url->add('backend_key', $key), - 'label' => $val['name'], - 'type' => 'radiobox', - ); - $sidebar->addRow($row, 'backends'); - } - } - } - - /* Topbar method. */ - - /** - */ - public function topbarCreate(Horde_Tree_Renderer_Base $tree, $parent = null, - array $params = array()) - { - $icon = Horde_Themes::img('gollem.png'); - $url = Horde::url('manager.php'); - - foreach (Gollem_Auth::getBackend() as $key => $val) { - $tree->addNode(array( - 'id' => $parent . $key, - 'parent' => $parent, - 'label' => $val['name'], - 'expanded' => false, - 'params' => array( - 'icon' => $icon, - 'url' => $url->add(array('backend_key' => $key)) - ) - )); - } - } - - /* Download data. */ - - /** - * URL parameters needed: - * - dir - * - driver - * - * @throws Horde_Vfs_Exception - */ - public function download(Horde_Variables $vars) - { - $vfs = $GLOBALS['injector'] - ->getInstance('Gollem_Factory_Vfs') - ->create($vars->backend); - $res = array( - 'data' => is_callable(array($vfs, 'readStream')) - ? $vfs->readStream($vars->dir, $vars->filename) - : $vfs->read($vars->dir, $vars->filename) - ); - - try { - $res['size'] = $vfs->size($vars->dir, $vars->filename); - } catch (Horde_Vfs_Exception $e) {} - - return $res; - } - -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Auth.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Auth.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Auth.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Auth.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,370 +0,0 @@ - - * @author Jan Schneider - * @package Gollem - */ -class Gollem_Auth -{ - /** - * Authenticate to the backend. - * - * @param array $credentials An array of login credentials. If empty, - * attempts to login to the cached session. - *
-     * 'password' - (string) The user password.
-     * 'backend' - (string) The backend key to use (from backends.php).
-     * 'userId' - (string) The username.
-     * 
- * - * @return mixed If authentication was successful, and no session - * exists, an array of data to add to the session. - * Otherwise returns false. - * @throws Horde_Auth_Exception - */ - static public function authenticate($credentials = array()) - { - $result = false; - - // Do 'horde' authentication. - $gollem_app = $GLOBALS['registry']->getApiInstance('gollem', 'application'); - if (!empty($gollem_app->initParams['authentication']) && - ($gollem_app->initParams['authentication'] == 'horde')) { - if ($registry->getAuth()) { - return $result; - } - throw new Horde_Auth_Exception('', Horde_Auth::REASON_FAILED); - } - - // Load backend. - if (!isset($credentials['backend_key'])) { - $credentials['backend_key'] = self::getPreferredBackend(); - } - $backend = self::getBackend($credentials['backend_key']); - - // Check for hordeauth. - if ((!isset($credentials['userId']) || - !isset($credentials['password'])) && - !$GLOBALS['session']->exists('gollem', 'backend_key') && - self::canAutoLogin($credentials['backend_key'])) { - if (!empty($backend['hordeauth'])) { - $credentials['userId'] = self::getAutologinID($credentials['backend_key']); - $credentials['password'] = $GLOBALS['registry']->getAuthCredential('password'); - - } - } - - // Check for hardcoded backend credentials. - if (!isset($credentials['userId']) && - !empty($backend['params']['username'])) { - $credentials['userId'] = $backend['params']['username']; - } - if (!isset($credentials['password']) && - !empty($backend['params']['password'])) { - $credentials['password'] = $backend['params']['password']; - } - - if (!isset($credentials['userId']) || - !isset($credentials['password'])) { - throw new Horde_Auth_Exception('', Horde_Auth::REASON_BADLOGIN); - } - - try { - $vfs = $GLOBALS['injector'] - ->getInstance('Gollem_Factory_Vfs') - ->create($credentials['backend_key']); - $params = array('username' => $credentials['userId'], - 'password' => $credentials['password']); - foreach (array_keys($backend['loginparams']) as $param) { - if (isset($credentials[$param])) { - $backend['params'][$param] = $params[$param] = $credentials[$param]; - } - } - $vfs->setParams($params); - $vfs->checkCredentials(); - } catch (Horde_Exception $e) { - throw new Horde_Auth_Exception($e->getMessage(), Horde_Auth::REASON_MESSAGE); - } - - // Set current backend. - Gollem::$backend = &$backend; - - // Mark backend as authenticated. - $backend['auth'] = true; - - // Save username in backend configuration. - if (!isset($backend['params']['username'])) { - $backend['params']['username'] = $credentials['userId']; - } - if (!isset($backend['params']['password'])) { - $backend['params']['password'] = $credentials['password']; - } - - // Make sure we have a 'root' parameter. - if (empty($backend['root'])) { - $backend['root'] = '/'; - } - $backend['root'] = Horde_Util::realPath($backend['root']); - - // Make sure we have a 'home' parameter. - if (empty($backend['home'])) { - $backend['home'] = empty($backend['params']['home']) - ? $vfs->getCurrentDirectory() - : $backend['params']['home']; - if (empty($backend['home'])) { - $backend['home'] = $backend['root']; - } - } - - // Make sure the home parameter lives under root if it is a relative - // directory. - if (strpos($backend['home'], '/') !== 0) { - $backend['home'] = $backend['root'] . '/' . $backend['home']; - } - $backend['home'] = Horde_Util::realPath($backend['home']); - $backend['dir'] = $backend['home']; - - // Verify that home is below root. - if (!Gollem::verifyDir($backend['home'])) { - throw new Horde_Auth_Exception('Backend Configuration Error: Home directory not below root.', Horde_Auth::REASON_MESSAGE); - } - - // Create the home directory if it doesn't already exist. - if ($backend['home'] != '/' && !empty($backend['createhome'])) { - $pos = strrpos($backend['home'], '/'); - $cr_dir = substr($backend['home'], 0, $pos); - $cr_file = substr($backend['home'], $pos + 1); - if (!$vfs->exists($cr_dir, $cr_file)) { - try { - $res = Gollem::createFolder($cr_dir, $cr_file, $vfs); - } catch (Gollem_Exception $e) { - throw new Horde_Auth_Exception('Backend Configuration Error: Could not create home directory ' . $backend['home'] . ': ' . $e->getMessage(), Horde_Auth::REASON_MESSAGE); - } - } - } - - // Write the backend to the session. - $backends = self::_getBackends(); - $backends[$credentials['backend_key']] = $backend; - self::_setBackends($backends); - - return array('backend_key' => $credentials['backend_key']); - } - - /** - * Perform transparent authentication. - * - * @param Horde_Auth_Application $auth_ob The authentication object. - * - * @return mixed If authentication was successful, and no session - * exists, an array of data to add to the session. - * Otherwise returns false. - */ - static public function transparent($auth_ob) - { - $credentials = $auth_ob->getCredential('credentials'); - - if (empty($credentials['transparent'])) { - /* Attempt hordeauth authentication. */ - $credentials = self::canAutoLogin(); - if ($credentials === false) { - return false; - } - } else { - /* It is possible that preauthenticate() set the credentials. - * If so, use that information instead of hordeauth. */ - $credentials['userId'] = $auth_ob->getCredential('userId'); - } - - try { - return self::authenticate($credentials); - } catch (Horde_Auth_Exception $e) { - return false; - } - } - - /** - * Loads the Gollem backend configuration from backends.php. - * - * @param string $backend Returns this labeled entry only. - * - * @return mixed If $backend is set return this entry; else, return the - * entire backends array. Returns false on error. - */ - static public function getBackend($backend = null) - { - if (!($backends = self::_getBackends())) { - try { - $backends = Horde::loadConfiguration('backends.php', 'backends', 'gollem'); - if (is_null($backends)) { - return false; - } - } catch (Horde_Exception $e) { - Horde::log($e, 'ERR'); - return false; - } - - foreach (array_keys($backends) as $key) { - if (!empty($backends[$key]['disabled']) || - !Gollem::checkPermissions('backend', Horde_Perms::SHOW, $key)) { - unset($backends[$key]); - } - } - self::_setBackends($backends); - } - - if (is_null($backend)) { - return $backends; - } - - /* Check for the existence of the backend in the config file. */ - if (empty($backends[$backend]) || !is_array($backends[$backend])) { - $entry = sprintf('Invalid backend key "%s" from client [%s]', - $backend, $_SERVER['REMOTE_ADDR']); - Horde::log($entry, 'ERR'); - return false; - } - - return $backends[$backend]; - } - - /** - * Get the current preferred backend key. - * - * @return string The preferred backend key. - */ - static public function getPreferredBackend() - { - if ($backend_key = $GLOBALS['session']->get('gollem', 'backend_key')) { - return $backend_key; - } - - /* Determine the preferred backend. */ - foreach (self::getBackend() as $key => $backend) { - if (empty($backend_key) && (substr($key, 0, 1) != '_')) { - $backend_key = $key; - } - if (empty($backend['preferred'])) { - continue; - } - $preferred = is_array($backend['preferred']) - ? $backend['preferred'] - : array($backend['preferred']); - if (in_array($_SERVER['SERVER_NAME'], $preferred) || - in_array($_SERVER['HTTP_HOST'], $preferred)) { - $backend_key = $key; - } - } - - return $backend_key; - } - - /** - * Get the authentication ID to use for autologins based on the value of - * the 'hordeauth' parameter. - * - * @param string $backend The backend to login to. - * - * @return string The ID string to use for logins. - */ - static public function getAutologinID($backend) - { - $config = self::getBackend($backend); - return (!empty($config['hordeauth']) && - strcasecmp($config['hordeauth'], 'full') === 0) - ? $GLOBALS['registry']->getAuth() - : $GLOBALS['registry']->getAuth('bare'); - } - - /** - * Can we log in without a login screen for the requested backend key? - * - * @param string $key The backend to login to. - * - * @return array The credentials needed to login ('userId', 'password', - * 'backend') or false if autologin not available. - */ - static public function canAutoLogin($key = null) - { - if (is_null($key)) { - $key = self::getPreferredBackend(); - } - - if ($key && - $GLOBALS['registry']->getAuth() && - ($config = self::getBackend($key)) && - empty($config['loginparams']) && - !empty($config['hordeauth'])) { - return array( - 'userId' => self::getAutologinID($key), - 'password' => $GLOBALS['registry']->getAuthCredential('password'), - 'backend_key' => $key - ); - } - - return false; - } - - /** - * Change the currently active backend. - * - * @param string $key The ID of the backend to set as active. - */ - static public function changeBackend($key) - { - $GLOBALS['session']->set('gollem', 'backend_key', $key); - Gollem::$backend = self::getBackend($key); - } - - /** - * Return stored backend list. - * - * @return array Backend configuration list. - */ - static protected function _getBackends() - { - global $session; - - if ($backends = $session->get('gollem', 'backends', $session::TYPE_ARRAY)) { - $passwords = $session->get('gollem', 'backends_password', $session::TYPE_ARRAY); - if ($passwords) { - foreach ($passwords as $key => $val) { - $backends[$key]['params']['password'] = $val; - } - } - } - - return $backends; - } - - /** - * Store backend list. - * - * @param array $backends Backend configuration list. - */ - static protected function _setBackends($backends) - { - global $session; - - $passwords = array(); - foreach ($backends as $key => $val) { - if (isset($val['params']['password'])) { - $passwords[$key] = $val['params']['password']; - unset($backends[$key]['params']['password']); - } - } - - $session->set('gollem', 'backends', $backends); - if (!empty($passwords)) { - $session->set('gollem', 'backends_password', $passwords, $session::ENCRYPT); - } - } - -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Exception.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Exception.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Exception.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Exception.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem_Exception extends Horde_Exception_Wrapped -{ -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Factory/Shares.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Factory/Shares.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Factory/Shares.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Factory/Shares.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem_Factory_Shares extends Horde_Core_Factory_Injector -{ - /** - * Return the driver instance. - * - * @return Horde_Core_Share_Driver - * @throws Horde_Exception - */ - public function create(Horde_Injector $injector) - { - return $injector->getInstance('Horde_Core_Factory_Share')->create(); - } -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Factory/VfsDefault.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Factory/VfsDefault.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Factory/VfsDefault.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Factory/VfsDefault.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -/** - * A Horde_Injector based Horde_Vfs factory. - * - * Copyright 2011-2016 Horde LLC (http://www.horde.org/) - * - * See the enclosed file COPYING for license information (GPL). If you - * did not receive this file, see http://www.horde.org/licenses/gpl. - * - * @author Jan Schneider - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem_Factory_VfsDefault extends Horde_Core_Factory_Injector -{ - /** - * Returns the VFS object for the currently active backend. - * - * @return Horde_Vfs The VFS object. - * @throws Horde_Exception - */ - public function create(Horde_Injector $injector) - { - return $injector - ->getInstance('Gollem_Factory_Vfs') - ->create($GLOBALS['session']->get('gollem', 'backend_key')); - } -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Factory/Vfs.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Factory/Vfs.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Factory/Vfs.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Factory/Vfs.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,90 +0,0 @@ - - * @author Jan Schneider - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -/** - * A Horde_Injector based Horde_Vfs factory. - * - * Copyright 2011-2016 Horde LLC (http://www.horde.org/) - * - * See the enclosed file COPYING for license information (GPL). If you - * did not receive this file, see http://www.horde.org/licenses/gpl. - * - * @author Michael J. Rubinsky - * @author Jan Schneider - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem_Factory_Vfs extends Horde_Core_Factory_Base -{ - /** - * Instances. - * - * @var array - */ - private $_instances = array(); - - /** - * Returns the VFS instance. - * - * @param string $backend The backend to return. - * - * @return Horde_Vfs The VFS object. - */ - public function create($backend) - { - if (empty($this->_instances[$backend])) { - $be_config = Gollem_Auth::getBackend($backend); - $params = $be_config['params']; - - switch (Horde_String::lower($be_config['driver'])) { - case 'sql': - case 'sqlfile': - case 'musql': - $db_params = $params; - unset($db_params['table']); - $params['db'] = $this->_injector - ->getInstance('Horde_Core_Factory_Db') - ->create('gollem', $db_params); - $params['user'] = $GLOBALS['registry']->getAuth(); - break; - } - - $vfs = Horde_Vfs::factory($be_config['driver'], $params); - - if (!empty($be_config['quota'])) { - $vfs->setQuotaRoot($be_config['root'] == '/' ? '' : $be_config['root']); - if (isset($be_config['quota_val'])) { - $vfs->setQuota($be_config['quota_val'], $be_config['quota_metric']); - } else { - $quota_metric = array( - 'B' => Horde_Vfs::QUOTA_METRIC_BYTE, - 'KB' => Horde_Vfs::QUOTA_METRIC_KB, - 'MB' => Horde_Vfs::QUOTA_METRIC_MB, - 'GB' => Horde_Vfs::QUOTA_METRIC_GB - ); - $quota_str = explode(' ', $be_config['quota'], 2); - if (is_numeric($quota_str[0])) { - $metric = trim(Horde_String::upper($quota_str[1])); - if (!isset($quota_metric[$metric])) { - $metric = 'B'; - } - $vfs->setQuota($quota_str[0], $quota_metric[$metric]); - } - } - } - - $this->_instances[$backend] = $vfs; - } - - return $this->_instances[$backend]; - } -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Gollem.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Gollem.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Gollem.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Gollem.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,778 +0,0 @@ - - * @author Chuck Hagenbuch - * @author Michael Slusarz - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem -{ - /* Sort constants. */ - const SORT_TYPE = 0; - const SORT_NAME = 1; - const SORT_DATE = 2; - const SORT_SIZE = 3; - - const SORT_ASCEND = 0; - const SORT_DESCEND = 1; - - /** - * Configuration hash for the current backend. - * - * @var array - */ - static public $backend; - - /** - * Cache for display columns. - * - * @var array - */ - static protected $_columns; - - /** - * Changes the current directory of the Gollem session to the supplied - * value. - * - * @param string $dir Directory name. - * - * @throws Gollem_Exception - */ - static public function setDir($dir) - { - $dir = Horde_Util::realPath($dir); - - if (!self::verifyDir($dir) || - !self::checkPermissions('directory', Horde_Perms::READ, $dir)) { - throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); - } - self::$backend['dir'] = $dir; - - self::_setLabel(); - } - - /** - * Changes the current directory of the Gollem session based on the - * 'dir' form field. - * - * @throws Gollem_Exception - */ - static public function changeDir() - { - $dir = Horde_Util::getFormData('dir'); - if (is_null($dir)) { - self::_setLabel(); - } else { - if (strpos($dir, '/') !== 0) { - $dir = self::$backend['dir'] . '/' . $dir; - } - self::setDir($dir); - } - } - - /** - * Set the lable to use for the current page. - */ - static protected function _setLabel() - { - self::$backend['label'] = self::getDisplayPath(self::$backend['dir']); - if (empty(self::$backend['label'])) { - self::$backend['label'] = '/'; - } - } - - /** - * Internal helper to sort directories first if pref set. - */ - static protected function _sortDirs($a, $b) - { - /* Sort symlinks to dirs as dirs */ - $dira = ($a['type'] === '**dir') || - (($a['type'] === '**sym') && ($a['linktype'] === '**dir')); - $dirb = ($b['type'] === '**dir') || - (($b['type'] === '**sym') && ($b['linktype'] === '**dir')); - - if ($GLOBALS['prefs']->getValue('sortdirsfirst')) { - if ($dira && !$dirb) { - return -1; - } elseif (!$dira && $dirb) { - return 1; - } - } - return 0; - } - - /** - * Internal sorting function for 'date'. - */ - static public function sortDate($a, $b) - { - $dirs = self::_sortDirs($a, $b); - if ($dirs) { - return $dirs; - } - - if ($a['date'] > $b['date']) { - return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1; - } elseif ($a['date'] === $b['date']) { - return self::sortName($a, $b); - } else { - return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1; - } - } - - /** - * Internal sorting function for 'size'. - */ - static public function sortSize($a, $b) - { - $dirs = self::_sortDirs($a, $b); - if ($dirs) { - return $dirs; - } - - if ($a['size'] > $b['size']) { - return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1; - } elseif ($a['size'] === $b['size']) { - return 0; - } else { - return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1; - } - } - - /** - * Internal sorting function for 'type'. - */ - static public function sortType($a, $b) - { - $dirs = self::_sortDirs($a, $b); - if ($dirs) { - return $dirs; - } - - if ($a['type'] === $b['type']) { - return self::sortName($a, $b); - } elseif ($a['type'] === '**dir') { - return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1; - } elseif ($b['type'] === '**dir') { - return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1; - } else { - $res = strcasecmp($a['type'], $b['type']); - return $GLOBALS['prefs']->getValue('sortdir') ? ($res * -1) : $res; - } - } - - /** - * Internal sorting function for 'name'. - */ - static public function sortName($a, $b) - { - $dirs = self::_sortDirs($a, $b); - if ($dirs) { - return $dirs; - } - - $res = strcasecmp($a['name'], $b['name']); - return $GLOBALS['prefs']->getValue('sortdir') ? ($res * -1) : $res; - } - - /** - * List the current folder. - * - * @param string $dir The directory name. - * - * @return array The sorted list of files. - * @throws Gollem_Exception - */ - static public function listFolder($dir) - { - global $conf; - - if (!empty($conf['foldercache']['use_cache']) && - !empty($conf['cache']['driver']) && - ($conf['cache']['driver'] != 'none')) { - $key = self::_getCacheID($dir); - - $cache = $GLOBALS['injector']->getInstance('Horde_Cache'); - $res = $cache->get($key, $conf['foldercache']['lifetime']); - if ($res !== false) { - $res = Horde_Serialize::unserialize($res, Horde_Serialize::BASIC); - if (is_array($res)) { - return $res; - } - } - } - - try { - $files = $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->listFolder($dir, - isset(self::$backend['filter']) ? self::$backend['filter'] : null, - $GLOBALS['prefs']->getValue('show_dotfiles')); - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - $sortcols = array( - self::SORT_TYPE => 'sortType', - self::SORT_NAME => 'sortName', - self::SORT_DATE => 'sortDate', - self::SORT_SIZE => 'sortSize', - ); - usort($files, array('Gollem', $sortcols[$GLOBALS['prefs']->getValue('sortby')])); - - if (isset($cache)) { - $cache->set($key, Horde_Serialize::serialize($files, Horde_Serialize::BASIC), $conf['foldercache']['lifetime']); - } - - return $files; - } - - /** - * Generate the Cache ID for a directory. - * - * @param string $dir The directory name. - */ - static protected function _getCacheID($dir) - { - return implode('|', array($GLOBALS['registry']->getAuth(), - $GLOBALS['session']->get('gollem', 'backend_key'), - $GLOBALS['prefs']->getValue('show_dotfiles'), - $GLOBALS['prefs']->getValue('sortdirsfirst'), - $GLOBALS['prefs']->getValue('sortby'), - $GLOBALS['prefs']->getValue('sortdir'), - $dir)); - } - - /** - * Expire a folder cache entry. - * - * @param string $dir The directory name. - */ - static public function expireCache($dir) - { - global $conf; - - if (!empty($conf['foldercache']['use_cache']) && - !empty($conf['cache']['driver']) && - ($conf['cache']['driver'] != 'none')) { - $cache = $GLOBALS['injector']->getInstance('Horde_Cache'); - $cache->expire(self::_getCacheID($dir)); - } - } - - /** - * Generate correct subdirectory links. - * - * @param string $base The base directory. - * @param string $dir The directory string. - * - * @return string The correct subdirectoy string. - */ - static public function subdirectory($base, $dir) - { - if (empty($base)) { - return $dir; - } - - if (substr($base, -1) == '/') { - return $base . $dir; - } - - return $base . '/' . $dir; - } - - /** - * Create a folder using the current Gollem session settings. - * - * @param string $dir The directory path. - * @param string $name The folder to create. - * @param Horde_Vfs_Base $gollem_vfs A VFS instance to use. - * - * @throws Gollem_Exception - */ - static public function createFolder($dir, $name, $gollem_vfs = null) - { - $totalpath = Horde_Util::realPath($dir . '/' . $name); - if (!self::verifyDir($totalpath)) { - throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $totalpath)); - } - - /* The $name parameter may contain additional directories so we - * need to pass autocreatePath everything but the base filename. */ - $pos = strrpos($totalpath, '/'); - $dir = substr($totalpath, 0, $pos); - $name = substr($totalpath, $pos + 1); - - if (!$gollem_vfs) { - $gollem_vfs = $GLOBALS['injector']->getInstance('Gollem_Vfs'); - } - try { - $gollem_vfs->autocreatePath($dir); - $gollem_vfs->createFolder($dir, $name); - - if (!empty(self::$backend['params']['permissions'])) { - $gollem_vfs->changePermissions($dir, $name, self::$backend['params']['permissions']); - } - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - } - - /** - * Rename files using the current Gollem session settings. - * - * @param string $oldDir Old directory name. - * @param string $old Old file name. - * @param string $newDir New directory name. - * @param string $old New file name. - * - * @throws Gollem_Exception - */ - static public function renameItem($oldDir, $old, $newDir, $new) - { - try { - $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->rename($oldDir, $old, $newDir, $new); - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - - $shares = $GLOBALS['injector']->getInstance('Gollem_Shares'); - $backend = $GLOBALS['session']->get('gollem', 'backend_key'); - try { - $share = $shares->getShare($backend . '|' . $oldDir . '/' . $old); - $shares->renameShare($share, $backend . '|' . $newDir . '/' . $new); - $share->set('name', $new, true); - } catch (Horde_Exception_NotFound $e) { - } catch (Horde_Share_Exception $e) { - throw new Gollem_Exception($e); - } - } - - /** - * Delete a folder using the current Gollem session settings. - * - * @param string $dir The subdirectory name. - * @param string $name The folder name to delete. - * - * @throws Gollem_Exception - */ - static public function deleteFolder($dir, $name) - { - if (!self::verifyDir($dir)) { - throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); - } - - try { - $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->deleteFolder( - $dir, - $name, - $GLOBALS['prefs']->getValue('recursive_deletes') != 'disabled'); - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - - $shares = $GLOBALS['injector']->getInstance('Gollem_Shares'); - try { - $share = $shares->getShare( - $GLOBALS['session']->get('gollem', 'backend_key') . '|' - . $dir . '/' . $name); - $shares->removeShare($share); - } catch (Horde_Exception_NotFound $e) { - } catch (Horde_Share_Exception $e) { - throw new Gollem_Exception($e); - } - } - - /** - * Delete a file using the current Gollem session settings. - * - * @param string $dir The directory name. - * @param string $name The filename to delete. - * - * @throws Gollem_Exception - */ - static public function deleteFile($dir, $name) - { - if (!self::verifyDir($dir)) { - throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); - } - try { - $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->deleteFile($dir, $name); - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - } - - /** - * Change permissions on files using the current Gollem session settings. - * - * @param string $dir The directory name. - * @param string $name The filename to change permissions on. - * @param string $permission The permission mode to set. - * - * @throws Gollem_Exception - */ - static public function changePermissions($dir, $name, $permission) - { - if (!self::verifyDir($dir)) { - throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); - } - try { - $GLOBALS['injector'] - ->getInstance('Gollem_Vfs') - ->changePermissions($dir, $name, $permission); - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - } - - /** - * Write an uploaded file to the VFS backend. - * - * @param string $dir The directory name. - * @param string $name The filename to create. - * @param string $filename The local file containing the file data. - * - * @thows Gollem_Exception - */ - static public function writeFile($dir, $name, $filename) - { - $gollem_vfs = $GLOBALS['injector']->getInstance('Gollem_Vfs'); - try { - $gollem_vfs->write($dir, $name, $filename, true); - if (!empty(self::$backend['params']['permissions'])) { - $gollem_vfs->changePermissions($dir, $name, self::$backend['params']['permissions']); - } - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - } - - /** - * Moves a file using the current Gollem session settings. - * - * @param string $backend_f The backend to move the file from. - * @param string $dir The directory name of the original file. - * @param string $name The original filename. - * @param string $backend_t The backend to move the file to. - * @param string $newdir The directory to move the file to. - * - * @throws Gollem_Exception - */ - static public function moveFile($backend_f, $dir, $name, $backend_t, - $newdir) - { - self::_copyFile('move', $backend_f, $dir, $name, $backend_t, $newdir); - } - - /** - * Copies a file using the current Gollem session settings. - * - * @param string $backend_f The backend to copy the file from. - * @param string $dir The directory name of the original file. - * @param string $name The original filename. - * @param string $backend_t The backend to copy the file to. - * @param string $newdir The directory to copy the file to. - * - * @throws Gollem_Exception - */ - static public function copyFile($backend_f, $dir, $name, $backend_t, - $newdir) - { - self::_copyFile('copy', $backend_f, $dir, $name, $backend_t, $newdir); - } - - /** - * Private function that copies/moves files. - * - * @throws Gollem_Exception - */ - static protected function _copyFile($mode, $backend_f, $dir, $name, - $backend_t, $newdir) - { - $backend_key = $GLOBALS['session']->get('gollem', 'backend_key'); - $factory = $GLOBALS['injector']->getInstance('Gollem_Factory_Vfs'); - - /* If the from/to backends are the same, we can just use the built-in - * VFS functions. */ - if ($backend_f == $backend_t) { - $ob = $factory->create($backend_f); - try { - if ($backend_f != $backend_key) { - $ob->checkCredentials(); - } - if ($mode == 'copy') { - $ob->copy($dir, $name, $newdir); - } else { - $ob->move($dir, $name, $newdir); - } - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - return; - } - - /* Else, get the two VFS objects and copy/move the files. */ - $from_be = $factory->create($backend_f); - if ($backend_f != $backend_key) { - try { - $from_be->checkCredentials(); - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - } - - $to_be = $factory->create($backend_t); - if ($backend_t != $backend_key) { - try { - $to_be->checkCredentials(); - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - } - - try { - /* Read the source data. */ - $data = $from_be->read($dir, $name); - - /* Write the target data. */ - $to_be->writeData($newdir, $name, $data); - - /* If moving, delete the source data. */ - if ($mode == 'move') { - $from_be->deleteFile($dir, $name); - } - } catch (Horde_Vfs_Exception $e) { - throw new Gollem_Exception($e); - } - } - - /** - * This function verifies whether a given directory is below the root. - * - * @param string $dir The directory to check. - * - * @return boolean True if the directory is below the root. - */ - static public function verifyDir($dir) - { - return Horde_String::substr(Horde_Util::realPath($dir), 0, Horde_String::length(self::$backend['root'])) == self::$backend['root']; - } - - /** - * Parses the 'columns' preference. - * - * @return array The list of columns to be displayed. - */ - static public function getColumns($backend) - { - if (!isset(self::$_columns)) { - self::$_columns = array(); - $sources = json_decode($GLOBALS['prefs']->getValue('columns')); - foreach ($sources as $source) { - self::$_columns[array_shift($source)] = $source; - } - } - - if (empty(self::$_columns[$backend])) { - $info = Gollem_Auth::getBackend($backend); - self::$_columns[$backend] = $info['attributes']; - } - - return self::$_columns[$backend]; - } - - /** - * Checks if a user has the specified permissions on a resource. - * - * @param string $filter What are we checking for. Either 'backend' - * or 'directory'. - * @param integer $permission The permission to check for. One of the - * Horde_Perms constants. - * @param string $resource The resource to check. If empty, check the - * current backend/directory. - * - * @return boolean Returns true if the user has permission. - */ - static public function checkPermissions($filter, - $permission = Horde_Perms::READ, - $resource = null) - { - $userID = $GLOBALS['registry']->getAuth(); - - switch ($filter) { - case 'backend': - if (is_null($resource)) { - $resource = $GLOBALS['session']->get('gollem', 'backend_key'); - } - $backendTag = 'gollem:backends:' . $resource; - $perms = $GLOBALS['injector']->getInstance('Horde_Perms'); - return (!$perms->exists($backendTag) || - $perms->hasPermission($backendTag, $userID, $permission)); - - case 'directory': - if (empty(self::$backend['shares'])) { - return true; - } - if (is_null($resource)) { - $resource = self::$backend['dir']; - } - if (strpos($resource, self::$backend['home']) === 0) { - return true; - } - $shares = $GLOBALS['injector']->getInstance('Gollem_Shares'); - $backend = $GLOBALS['session']->get('gollem', 'backend_key'); - $directory = $resource; - while (strlen($directory) && $directory != './' && $directory != '/') { - try { - return $shares->getShare($backend . '|' . $directory) - ->hasPermission($userID, $permission); - } catch (Horde_Exception_NotFound $e) { - } - $directory = dirname($directory); - } - /* Intermediate solution until we display shared folders - * independent from the directory tree. Check if there are - * any sub-directories with show permissions and allow - * browsing the directory in this case. */ - if ($permission == Horde_Perms::READ || - $permission == Horde_Perms::SHOW) { - $dirs = $shares->listShares($userID, array('perm' => Horde_Perms::SHOW)); - foreach ($dirs as $dir) { - if (strpos($dir->getName(), $backend . '|' . $resource) === 0) { - return true; - } - } - } - break; - } - - return false; - } - - /** - * Produces a directory link used for navigation. - * - * @param string $currdir The current directory string. - * @param string $url The URL to link to. - * - * @return string The directory navigation string. - */ - static public function directoryNavLink($currdir, $url) - { - $label = array(); - $root_dir_name = self::$backend['name']; - - if ($currdir == $root_dir_name) { - $label[] = '[' . $root_dir_name . ']'; - } else { - $parts = explode('/', $currdir); - $parts_count = count($parts); - - $url = new Horde_Url($url); - $label[] = Horde::link($url->add('dir', self::$backend['root']), sprintf(_("Up to %s"), $root_dir_name)) . '[' . $root_dir_name . ']'; - - for ($i = 1; $i <= $parts_count; ++$i) { - $part = array_slice($parts, 0, $i); - $dir = implode('/', $part); - if ((strstr($dir, self::$backend['root']) !== false) && - (self::$backend['root'] != $dir)) { - if ($i == $parts_count) { - $label[] = $parts[($i - 1)]; - } else { - $label[] = Horde::link($url->add('dir', $dir), sprintf(_("Up to %s"), $dir)) . htmlspecialchars($parts[($i - 1)]) . ''; - } - } - } - } - - return implode('/', $label); - } - - /** - * Generate the display path (the path with any root information stripped - * out). - * - * @param string $path The path to display. - * - * @return string The display path. - */ - static public function getDisplayPath($path) - { - $path = Horde_Util::realPath($path); - if (self::$backend['root'] != '/' && - strpos($path, self::$backend['root']) === 0) { - $path = substr($path, Horde_String::length(self::$backend['root'])); - } - return $path; - } - - /** - * Cleans a path presented to Gollem's browse API call. - * - * This will remove: - * - leading '/' - * - leading 'gollem' - * - trailing '/' - * The desired end result is the path including VFS backend. - * - * @param string $path Path as presented to Gollem API. - * - * @return string Cleaned path as described above. - */ - static public function stripAPIPath($path) - { - return trim(preg_replace('|/?gollem|', '', $path), '/'); - } - - /** - * Convert a Gollem path into a URL encoded string, but keep '/'. - * This allows for proper PATH_INFO path parsing. - * Special care is taken to handle "+" and " ". - * - * @param string $path Path to be urlencode()d. - * - * @return string URL-encoded string with '/' preserved. - */ - static public function pathEncode($path) - { - return str_ireplace(array('%2F', '%2f'), '/', rawurlencode($path)); - } - - /** - * Take a fully qualified and break off the file or directory name. - * This pair is used for the input to many VFS library functions. - * - * @param string $fullpath Path to be split. - * - * @return array Array of ($path, $name) - */ - static public function getVFSPath($fullpath) - { - // Convert the path into VFS's ($path, $name) convention - $i = strrpos($fullpath, '/'); - if ($i !== false) { - $path = substr($fullpath, 0, $i); - $name = substr($fullpath, $i + 1); - } else { - $name = $fullpath; - $path = ''; - } - return array($name, $path); - } -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/.htaccess php-horde-gollem-3.0.9/gollem-3.0.8/lib/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/.htaccess 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/.htaccess 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - Require all denied - - - Deny from all - diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/LoginTasks/SystemTask/Upgrade.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/LoginTasks/SystemTask/Upgrade.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/LoginTasks/SystemTask/Upgrade.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/LoginTasks/SystemTask/Upgrade.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem_LoginTasks_SystemTask_Upgrade extends Horde_Core_LoginTasks_SystemTask_Upgrade -{ - /** - */ - protected $_app = 'gollem'; - - /** - */ - protected $_versions = array( - '2.0' - ); - - /** - */ - protected function _upgrade($version) - { - global $prefs; - - switch ($version) { - case '2.0': - /* Upgrade to the new preferences format. */ - if (!$prefs->isDefault('columns')) { - $cols = $prefs->getValue('columns'); - if (!is_array(json_decode($cols))) { - $prefs->setValue('columns', json_encode(explode("\t", $cols))); - } - } - break; - } - } - -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Prefs/Special/Columnselect.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Prefs/Special/Columnselect.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Prefs/Special/Columnselect.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Prefs/Special/Columnselect.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,76 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class Gollem_Prefs_Special_Columnselect implements Horde_Core_Prefs_Ui_Special -{ - /** - */ - public function init(Horde_Core_Prefs_Ui $ui) - { - Horde_Core_Prefs_Ui_Widgets::sourceInit(); - } - - /** - */ - public function display(Horde_Core_Prefs_Ui $ui) - { - $sources = array(); - foreach (Gollem_Auth::getBackend() as $source => $info) { - $selected = $unselected = array(); - $selected_list = array_flip(Gollem::getColumns($source)); - foreach ($info['attributes'] as $column) { - if (isset($selected_list[$column])) { - $selected[$column] = $column; - } else { - $unselected[$column] = $column; - } - } - $sources[$source] = array( - 'label' => $info['name'], - 'selected' => $selected, - 'unselected' => $unselected, - ); - } - - return Horde_Core_Prefs_Ui_Widgets::source(array( - 'mainlabel' => _("Choose which columns to display, and in what order:"), - 'selectlabel' => _("These columns will display in this order:"), - 'sourcelabel' => _("Select a backend:"), - 'sources' => $sources, - 'unselectlabel' => _("Columns that will not be displayed:") - )); - } - - /** - */ - public function update(Horde_Core_Prefs_Ui $ui) - { - if (!isset($ui->vars->sources)) { - return false; - } - - $backends = Gollem_Auth::getBackend(); - if (count($backends) == 1) { - $sources = json_decode($ui->vars->sources); - array_unshift($sources, key($backends)); - $sources = json_encode(array($sources)); - } else { - $sources = $ui->vars->sources; - } - $GLOBALS['prefs']->setValue('columns', $sources); - - return true; - } - -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/lib/Test.php php-horde-gollem-3.0.9/gollem-3.0.8/lib/Test.php --- php-horde-gollem-3.0.8/gollem-3.0.8/lib/Test.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/lib/Test.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,73 +0,0 @@ - - * @package Gollem - */ -class Gollem_Test extends Horde_Test -{ - /** - * The module list - * - * @var array - */ - protected $_moduleList = array( - 'ftp' => array( - 'descrip' => 'FTP Support', - 'error' => 'You need FTP support compiled into PHP if you plan to use the FTP VFS driver (see config/backends.php).' - ), - 'ssh2' => array( - 'descrip' => 'SSH2 Support', - 'error' => 'You need the SSH2 PECL module if you plan to use the SSH2 VFS driver (see config/backends.php).' - ) - ); - - /** - * PHP settings list. - * - * @var array - */ - protected $_settingsList = array(); - - /** - * PEAR modules list. - * - * @var array - */ - protected $_pearList = array(); - - /** - * Inter-Horde application dependencies. - * - * @var array - */ - protected $_appList = array(); - - /** - */ - public function __construct() - { - parent::__construct(); - - $this->_fileList += array( - 'config/backends.php' => null, - 'config/prefs.php' => null - ); - } - - /** - * Any application specific tests that need to be done. - * - * @return string HTML output. - */ - public function appTests() - { - } - -} Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/bg/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/bg/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/bg/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/bg/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/bg/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/bg/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,325 +0,0 @@ -# Bulgarian translations for Gollem package. -# Copyright 2002-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Miroslav Pendev , 2002. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 0.0.1-cvs\n" -"POT-Creation-Date: 2002-09-14 00:38-0400\n" -"PO-Revision-Date: 2002-11-19 20:44-0500\n" -"Last-Translator: Miroslav Pendev \n" -"Language-Team: BG i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#, c-format -msgid "%d items in %s" -msgstr "%d неща в %s" - -#, c-format -msgid "%s Login" -msgstr "%s Вход" - -#, c-format -msgid "%s Standard" -msgstr "%s Стандарт" - -#, c-format -msgid "'%s' renamed to '%s'" -msgstr "'%s' преименувано на '%s'" - -#, c-format -msgid "Access denied to %s" -msgstr "Отказан достъп до %s" - -msgid "Ascending" -msgstr "Нарастващи" - -msgid "Back To Folder" -msgstr "Обратно към папка" - -msgid "Barbie" -msgstr "Barbie" - -msgid "Brown" -msgstr "Brown" - -msgid "Burnt Orange" -msgstr "Burnt Orange" - -msgid "Camouflage" -msgstr "Camouflage" - -#, c-format -msgid "Cannot chmod %s" -msgstr "Грешка при chmod %s" - -#, c-format -msgid "Cannot delete '%s'" -msgstr "Грешка при изтриване на '%s'" - -msgid "Change your file sorting options and theme setting." -msgstr "Сменете начина на сортиране на файловете и настройките за темата." - -msgid "Checkbox" -msgstr "Checkbox" - -msgid "Cherry" -msgstr "Cherry" - -msgid "Chmod Items" -msgstr "Chmod неща" - -msgid "Chmod done: " -msgstr "Chmod извършен:" - -msgid "Choose Action:" -msgstr "Избери действие:" - -#, c-format -msgid "Connect to: %s" -msgstr "Свързване към %s" - -msgid "Create Folder" -msgstr "Създай папка" - -msgid "Default sorting criteria:" -msgstr "Критерии за сортиране по подразбиране:" - -msgid "Default sorting direction:" -msgstr "Посока на сортиране по подразбиране:" - -#, c-format -msgid "Defaulted to: %s" -msgstr "Подразбиращо се: %s" - -msgid "Delete Items" -msgstr "Изтрий неща" - -msgid "Descending" -msgstr "Намаляващи" - -msgid "Directory removed: " -msgstr "Директорията преместена:" - -msgid "Display Options" -msgstr "Дисплей Опции" - -msgid "Download" -msgstr "Изтегли" - -msgid "" -"Either you have logged in incorrectly or your login has expired. Please " -"login again." -msgstr "" -"Грешка при вход или времето за вашата сесия е изтекло. Моля регистрирайте се " -"отново." - -msgid "Email" -msgstr "Писмо" - -#, c-format -msgid "Error uploading %s: %s" -msgstr "Грешка при изпращане на файла %s: %s" - -#, c-format -msgid "Error uploading file: %s" -msgstr "Грешка при изпращане на файла: %s" - -msgid "File Modification Time" -msgstr "Дата на модификация на файла" - -msgid "File Name" -msgstr "Име на файл" - -msgid "File Size" -msgstr "Размер на файла" - -msgid "File Type" -msgstr "Файл тип" - -msgid "File deleted: " -msgstr "Изтрит файл: " - -#, c-format -msgid "File received: %s" -msgstr "Изтеглен файл: %s" - -msgid "File type can't be viewed inline, download the file instead" -msgstr "Файл от този тип не може да се преглежда, изтеглете го" - -msgid "Gollem is not properly configured" -msgstr "Gollem не е конфигуриран коректно" - -msgid "Green" -msgstr "Green" - -msgid "Grey" -msgstr "Grey" - -msgid "Group" -msgstr "Група" - -msgid "Help" -msgstr "Помощ" - -msgid "Home" -msgstr "Начало" - -msgid "Incorrect number of items." -msgstr "Некоректен брой." - -msgid "Language" -msgstr "Език" - -msgid "Light Blue" -msgstr "Light Blue" - -msgid "Locked" -msgstr "Заключен" - -msgid "Log in" -msgstr "Вход" - -msgid "" -"Login failed for some reason. Most likely your username or password was " -"entered incorrectly." -msgstr "" -"Регистрирането се провали поради неизвестна причина. Вероятно грешно " -"въведено потребителско име или парола." - -msgid "Logout" -msgstr "Изход" - -msgid "Modified" -msgstr "Променен" - -msgid "Mozilla" -msgstr "Mozilla" - -msgid "Name" -msgstr "Име" - -msgid "Name:" -msgstr "Име:" - -msgid "New folder created: " -msgstr "Създадена е нова папка: " - -msgid "Options" -msgstr "Опции" - -msgid "Orange" -msgstr "Orange" - -msgid "Other Options" -msgstr "Други Опции" - -msgid "Owner" -msgstr "Притежател" - -msgid "Password" -msgstr "Парола" - -msgid "Permission" -msgstr "Права" - -#, c-format -msgid "Permission denied to %s: %s." -msgstr "Право на достъп до %s отказан: %s" - -msgid "Refresh" -msgstr "Опресни" - -msgid "Rename Items" -msgstr "Преименуване" - -msgid "Select your color scheme." -msgstr "Изберете вашата схема за цветовете." - -msgid "Select your preferred language:" -msgstr "Изберете предпочитаният от Вас език:" - -msgid "Server" -msgstr "Сървър" - -msgid "Set the language that menu items, explanations, and help are in." -msgstr "Изберете езика, на които се показват менюта, обяснения и помощ." - -msgid "Size" -msgstr "Размер" - -msgid "Some of Gollem's configuration files are missing:" -msgstr "Някои от конфигурационните файлове на Gollem липсват:" - -msgid "Sort Direction" -msgstr "Сортиране" - -msgid "Sun" -msgstr "Sun" - -msgid "There are no files in this directory." -msgstr "Няма файлове в тази директория." - -msgid "There was an error viewing this file" -msgstr "Грешка при преглеждането на този файл." - -msgid "" -"This file controls the default preferences for Gollem, and also controls " -"which preferences users can alter." -msgstr "" -"Този файл контролира настройките по подразбиране на Gollem, а също и кои " -"настройки потребителите могат да се променят." - -msgid "This file controls what backends are available from Gollem." -msgstr "Този файл контролира какви backends са възможни за Gollem." - -msgid "This file defines types of credentials that a backend might request." -msgstr "" -"Този файл дефинира типовете акредитации, които backend-a може да изиска" - -msgid "" -"This is the main Gollem configuration file. It contains options for the " -"Gollem scripts." -msgstr "" -"Това е главния файл за конфигуриране на Gollem. Той съдържа пътищата и " -"опциите за Gollem скриптовете." - -msgid "Type" -msgstr "Тип" - -msgid "Up to parent" -msgstr "Обратно" - -msgid "User Options" -msgstr "Потребителски опции" - -msgid "Username" -msgstr "Име" - -#, c-format -msgid "Warning: %s requires Javascript to perform certain functions." -msgstr "Внимание: %s изисква Javascript за някои функции." - -#, c-format -msgid "" -"You have been logged out of %s. Thank you for using the system. If you wish " -"to log in again, please use the form below." -msgstr "Вие излязохте от %s.Благодарим Ви, че използвахте системата." - -msgid "Your Information" -msgstr "Информация за Вас" - -msgid "Your browser does not support inline display of this image type" -msgstr "Вашият browser не подържа редово показване на този тип файл" - -msgid "[home]" -msgstr "[home]" - -msgid "folder" -msgstr "папка" - -msgid "symlink" -msgstr "symlink" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/ca/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/ca/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/ca/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/ca/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Administrador d'arxius: Accions - Creació de carpetes - - Per a crear una carpeta en el directori actual, trii Crear carpeta en la barra de menú. - - Eliminar, tallar, copiar i pegar arxius - -Per a eliminar, tallar o copiar un o diversos arxius, primer ha de seleccionar almenys un. Després de seleccionar un o más arxius mitjançant les caselles a l'esquerra dels elements, seleccioni bé Tallar elements, Copiar elements o Eliminar elements del menú desplegable Accions. Si selecciona Tallar o Copiar elements tindrà la possibilitat de pegar aquests arxius en qualsevol lloc del Gestor d'arxius. Navegui fins a la ubicació en la qual vulgui pegar els elements i seleccioni Pegar elements del menú desplegable Accions. Els elements es traslladaran (Tallar elements) o es copiaran (Copiar elements) a la ubicació que hagi triat. - - Eliminar, tallar, copiar i pegar carpetes - -Per omissió, només es poden eliminar les carpetes que estiguin buides, no obstant això és pot activar l'eliminació de carpetes que no estiguin buides (esborrat recursiu). Si intenta eliminar una carpeta que no estigui buida sense activar aquesta opció, l'eliminació fallarà i és mostrarà un missatge d'error. Per a activar l'eliminació de carpetes que no estiguin buides, premi Opcions, Configuració i trii Sí en el menú desplegable de l'opció Eliminar carpetes de forma recursiva?. Això activarà l'opció d'eliminació recursiva. - -Per a eliminar, tallar o copiar una o diverses carpetes, ha de seleccionar almenys una. Després de seleccionar una o més carpetes mitjançant les caselles a l'esquerra dels elements, seleccioni bé Tallar elements, Copiar elements o Eliminar elements del menú desplegable Accions. Si selecciona Tallar o Copiar elements tindrà la possibilitat de pegar aquestes carpetes en qualsevol lloc del Gestor d'arxius. Navegui fins a la ubicació en la qual vulgui enganxar els elements i seleccioni Enganxar elements del menú desplegable Accions. Els elements es traslladaran (Tallar elements) o es copiaran (Copiar elements) a la ubicació que hagi triat. - - Treballant amb el Portapapers - -Una vegada hagi copiat o tallat un arxiu o carpeta, es situarà en el portapapers. Pot veure el contingut del portapapers prement la seva icona, que està sobre el llistat de carpetes a la dreta de la icona Actualitzar. La icona no és mostrarà tret que existeixi algun element en el portapapers. Els elements tallats o copiats no disposaran d'una casella a la seva esquerra, el qual significa que estan en el portapapers. Quan premi en la icona del portapapers, veurà un llistat dels elements que hagi copiat o tallat. Seleccioni els elements que desitgi pegar i premi pegar. Aquests elements es pegaran en la carpeta actual i s'eliminaran del portapapers. Després de completar l'operació de pegat, regressará a la carpeta actual. Si desitgés eliminar un element del portapapers, només l'ha de seleccionar i prémer Netejar. Aquests elements s'eliminaran del portapapers i es mostrarà de nou la carpeta actual. - - - - - Administrador d'arxius: Càrrega - Càrrega d'arxius - -Per a carregar un o diversos arxius, navegui fins a la carpeta de l'Administrador d'arxius en la qual desitgi carregar-los. Se la coneix com la carpeta actual. Una vegada en la carpeta adequada de l'Administrador d'arxius, premi el botón Examinar. S'obrirà una finestra de Càrrega d'Arxius. Amb aquesta finestra oberta, navegui fins a l'arxiu que desitgi carregar, seleccioni'l i premi Acceptar/Obrir. Pot carregar diversos arxius alhora. L'Administrador d'arxius afegirà automàticament un altre botó Examinar després de cada arxiu que seleccioni. Una vegada hagi seleccionat tots els arxius que desitgi carregar, premi el botón Carregar arxiu i l'arxiu o arxius que había seleccionat es carregarán en la carpeta actual de l'Administrador d'arxius. - - - - - Ordenació d'entrades - Ordenació d'entrades - -AL veure un llistat d'arxius o carpetes, pot ordenar-lo per qualsevol columna. Per a això, premi la capçalera de la columna per la qual desitgi realitzar la ordenació i el llistat s'actualitzarà, ordenat per la columna que hagi seleccionat. Per a commutar entre ordenació ascendent o descendent, premi en la icona de fletxa de la capçalera de la columna. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/ca/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/ca/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/ca/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/ca/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/ca/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/ca/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,624 +0,0 @@ -# Spanish translations for horde package -# Traducciones al español para el paquete horde. -# Copyright 2004-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the horde package. -# Automatically generated, 2004. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 1.0-cvs\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2006-02-02 12:09+0100\n" -"PO-Revision-Date: 2007-02-01 17:03+0100\n" -"Last-Translator: Jordi Giralt \n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:52 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" s'ha renombrat com \"%s\"" - -#: quota.php:59 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:260 -#, php-format -msgid "%d items" -msgstr "%d elements" - -#: manager.php:414 -#, php-format -msgid "%s Folders and %s Files (%s Kb)" -msgstr "%s Carpetes i %s Arxius (%s Kb)" - -#: manager.php:412 -#, php-format -msgid "%s Folders and 1 File (%s Kb)" -msgstr "%s Carpetes i 1 arxiu (%s Kb)" - -#: login.php:143 -#, php-format -msgid "%s Login" -msgstr "Inici de %s" - -#: manager.php:159 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s s'ha enganxat correctament." - -#: manager.php:409 -#, php-format -msgid "1 Folder and %s Files (%s Kb)" -msgstr "1 Carpeta i %s arxius (%s Kb)" - -#: manager.php:407 -#, php-format -msgid "1 Folder and 1 File (%s Kb)" -msgstr "1 Carpeta i 1 arxiu (%s Kb)" - -#: manager.php:260 -msgid "1 item" -msgstr "1 element" - -#: view.php:31 -#, php-format -msgid "Access denied to %s" -msgstr "S'ha denegat l'accés a %s" - -#: lib/Gollem.php:116 lib/Gollem.php:390 lib/Gollem.php:452 lib/Gollem.php:473 -#: lib/Gollem.php:490 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "S'ha denegat l'accés a la carpeta \"%s\"." - -#: templates/manager/manager.html:105 -msgid "Actions" -msgstr "Accions" - -#: selectlist.php:100 -msgid "Add" -msgstr "Afegir" - -#: templates/prefs/columnselect.inc:42 -msgid "Add column" -msgstr "Afegir columna" - -#: templates/manager/manager.html:9 -msgid "All" -msgstr "Tots" - -#: templates/manager/javascript.inc:202 -msgid "Are you sure you wish to continue?" -msgstr "Està segur que vol continuar?" - -#: templates/manager/javascript.inc:198 -msgid "Are you sure?" -msgstr "Està segur?" - -#: config/prefs.php.dist:69 -msgid "Ascending" -msgstr "Ascendent" - -#: config/prefs.php.dist:93 -msgid "Ask" -msgstr "Consultar" - -#: templates/manager/manager.html:3 -msgid "Attributes" -msgstr "Atributs" - -#: templates/prefs/columnselect.html:20 -msgid "Available Columns:" -msgstr "Columnes disponibles:" - -#: lib/api.php:46 -msgid "Backends" -msgstr "Motors" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "A continuació es mostra el contingut actual del portapapers." - -#: manager.php:254 selectlist.php:102 clipboard.php:37 -msgid "Cancel" -msgstr "Cancel·lar" - -#: manager.php:72 -#, php-format -msgid "Cannot chmod %s" -msgstr "No es pot utilitzar chmod a %s" - -#: manager.php:133 -msgid "Cannot copy items onto clipboard." -msgstr "No es poden copiar elements al portapapers." - -#: manager.php:192 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "No es pot crear la carpeta principal: %s" - -#: manager.php:135 -msgid "Cannot cut items onto clipboard." -msgstr "No es poden tallar elements al portapapers." - -#: manager.php:80 -#, php-format -msgid "Cannot delete \"%s\": %s" -msgstr "No es pot eliminar \"%s\": %s" - -#: manager.php:157 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "No es pot enganxar \"%s\" (el portapapers està buit): %s" - -#: lib/Gollem.php:777 templates/manager/manager.html:71 -msgid "Change Folder" -msgstr "Obrir carpeta" - -#: selectlist.php:110 lib/Gollem.php:819 -msgid "Change Server" -msgstr "Canviar servidor" - -#: config/prefs.php.dist:21 -msgid "Change file and folder handling settings." -msgstr "Canviar opcions de manipulació d'arxius i carpetes." - -#: config/prefs.php.dist:14 -msgid "Change your file sorting options." -msgstr "Canviar opcions de classificació d'arxius." - -#: lib/Gollem.php:793 -msgid "Check Quota" -msgstr "Verificar Quota" - -#: manager.php:492 -msgid "Check _All/None" -msgstr "Marcar _tots/Cap" - -#: templates/manager/manager.html:113 -msgid "Chmod Items" -msgstr "Canviar permisos d'elements" - -#: manager.php:70 -msgid "Chmod done: " -msgstr "Ha finalitzat el canvi de permisos: " - -#: templates/prefs/columnselect.html:12 -msgid "Choose the columns to display in the file manager." -msgstr "Trii les columnes mostrades en el gestor d'arxius. " - -#: clipboard.php:38 -msgid "Clear" -msgstr "Netejar" - -#: clipboard.php:17 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "Portapapers" - -#: quota.php:31 -msgid "Close" -msgstr "Tancar" - -#: login.php:254 -#, php-format -msgid "Connect to: %s" -msgstr "Connectar a: %s" - -#: clipboard.php:41 -msgid "Copy" -msgstr "Copiar" - -#: templates/manager/manager.html:116 -msgid "Copy Items" -msgstr "Copiar elements" - -#: lib/Gollem.php:774 templates/manager/manager.html:57 -msgid "Create Folder" -msgstr "Crear carpeta" - -#: permissions.php:47 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "Crear permisos buits per \"%s\". Ha d'especificar el nivell d'accés a" - -#: templates/clipboard/clipboard.html:17 -msgid "Current directory:" -msgstr "Carpeta actual: %s" - -#: clipboard.php:40 -msgid "Cut" -msgstr "Tallar" - -#: templates/manager/manager.html:115 -msgid "Cut Items" -msgstr "Tallar elements" - -#: config/prefs.php.dist:59 -msgid "Default sorting criteria:" -msgstr "Criteri de classificació por omissió:" - -#: config/prefs.php.dist:72 -msgid "Default sorting direction:" -msgstr "Sentit de classificació per omissió" - -#: templates/manager/manager.html:110 -msgid "Delete Items" -msgstr "Eliminar elements" - -#: config/prefs.php.dist:95 -msgid "Delete folders recursively?" -msgstr "Eliminar carpetes de forma recursiva?" - -#: config/prefs.php.dist:70 -msgid "Descending" -msgstr "Descendent" - -#: selectlist.php:101 -msgid "Done" -msgstr "Finalitzat" - -#: manager.php:214 -msgid "Download" -msgstr "Descarregar" - -#: manager.php:381 -#, php-format -msgid "Download %s" -msgstr "Descarregar %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "ERROR:" - -#: config/credentials.php.dist:28 -msgid "Email" -msgstr "Correu" - -#: templates/manager/manager.html:24 -msgid "Execute" -msgstr "Execució" - -#: templates/manager/javascript.inc:485 templates/manager/manager.html:179 -msgid "File" -msgstr "Arxiu" - -#: config/prefs.php.dist:13 -msgid "File Display" -msgstr "Vista de l'arxiu" - -#: config/prefs.php.dist:56 -msgid "File Modification Time" -msgstr "Hora de modificació de l'arxiu" - -#: config/prefs.php.dist:55 -msgid "File Name" -msgstr "Nom de arxiu" - -#: config/prefs.php.dist:57 -msgid "File Size" -msgstr "Mida de l'arxiu" - -#: config/prefs.php.dist:54 -msgid "File Type" -msgstr "Tipus d'arxiu" - -#: manager.php:76 -msgid "File deleted: " -msgstr "Arxiu eliminat:" - -#: manager.php:101 -#, php-format -msgid "File received: %s" -msgstr "Arcxiu recibut: %s" - -#: manager.php:78 -msgid "Folder removed: " -msgstr "Carpeta eliminada: " - -#: templates/manager/manager.html:73 -msgid "Go to:" -msgstr "Anar a:" - -#: permissions.php:21 -msgid "Gollem Backend Permissions Administration" -msgstr "Administració de permisos del motor de Gollem" - -#: manager.php:471 templates/manager/manager.html:8 -msgid "Group" -msgstr "Grup" - -#: lib/Gollem.php:770 -msgid "Home" -msgstr "Inici" - -#: manager.php:56 -msgid "Incorrect number of items." -msgstr "Número d'elements incorrecte." - -#: manager.php:126 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "S'ha copiat l'element al portapapers: %s" - -#: manager.php:128 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "S'ha tallat l'element al portapapers: %s" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "Idioma" - -#: config/prefs.php.dist:81 -msgid "List folders first?" -msgstr "Llistar primer les carpetes?" - -#: login.php:303 -msgid "Login" -msgstr "Iniciar sessió" - -#: quota.php:62 -msgid "MB free" -msgstr "MB lliures" - -#: quota.php:62 -msgid "MB used" -msgstr "MB utilitzats" - -#: lib/Block/tree_menu.php:3 -msgid "Menu List" -msgstr "Llistat del menú" - -#: manager.php:445 -msgid "Modified" -msgstr "Modific." - -#: templates/prefs/columnselect.inc:44 -msgid "Move left" -msgstr "Desplaçar a l'esquerra " - -#: templates/prefs/columnselect.inc:45 -msgid "Move right" -msgstr "Desplaçar a la dreta" - -#: manager.php:432 -msgid "Name" -msgstr "Nom" - -#: templates/manager/manager.html:45 templates/manager/manager.html:59 -msgid "Name:" -msgstr "Nom:" - -#: manager.php:35 -msgid "New folder created: " -msgstr "Nova carpeta creada: " - -#: config/prefs.php.dist:91 -msgid "No" -msgstr "No" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "No s''ha trobat la quota." - -#: manager.php:255 -msgid "OK" -msgstr "Acceptar" - -#: manager.php:465 templates/manager/manager.html:7 -msgid "Owner" -msgstr "Propietari" - -#: config/credentials.php.dist:23 -msgid "Password" -msgstr "Contrasenya" - -#: clipboard.php:39 -msgid "Paste" -msgstr "Enganxar" - -#: manager.php:459 -msgid "Permission" -msgstr "Privilegis" - -#: selectlist.php:63 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Permís denegat a %s: %s" - -#: manager.php:200 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "No disposa de permisos per a la carpeta \"%s\": %s" - -#: lib/Gollem.php:783 -msgid "Permissions" -msgstr "Permisos" - -#: templates/login/javascript.inc:36 -msgid "Please provide your password." -msgstr "Introdueixi la seva contrasenya. " - -#: templates/login/javascript.inc:31 -msgid "Please provide your username." -msgstr "Introdueixi el seu nom d'usuari." - -#: templates/prefs/columnselect.html:5 -msgid "Please select a backend:" -msgstr "Seleccioni un motor:" - -#: templates/manager/javascript.inc:132 -msgid "Please select an item before this action." -msgstr "Seleccioni un element abans d'aquesta acció." - -#: templates/manager/javascript.inc:456 -msgid "Please specify at least one file to upload." -msgstr "Indiqui almenys un arxiu a carregar. " - -#: quota.php:18 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "Format de Quota" - -#: quota.php:61 -msgid "Quota Usage" -msgstr "Quota disponible" - -#: templates/manager/manager.html:12 -msgid "Read" -msgstr "Lectura" - -#: manager.php:262 -msgid "Refresh" -msgstr "Actualitzar" - -#: templates/prefs/columnselect.inc:43 -msgid "Remove column" -msgstr "Treure columna" - -#: templates/manager/manager.html:43 -msgid "Rename" -msgstr "Renombrar " - -#: templates/manager/manager.html:107 -msgid "Rename Items" -msgstr "Renombrar elements" - -#: lib/Gollem.php:734 lib/Gollem.php:739 -msgid "Root" -msgstr "Root" - -#: manager.php:253 -msgid "Save" -msgstr "Desar" - -#: templates/prefs/columnselect.html:30 -msgid "Selected Columns:" -msgstr "Columnes seleccionades: " - -#: templates/login/login.html:31 -msgid "Server" -msgstr "Servidor" - -#: config/prefs.php.dist:20 -msgid "Settings" -msgstr "Opcions" - -#: config/prefs.php.dist:30 -msgid "Show dotfiles?" -msgstr "Mostrar arxius el nom dels quals comenci per un punt? " - -#: manager.php:452 -msgid "Size" -msgstr "Mida" - -#: manager.php:478 -msgid "Sort Direction" -msgstr "Sentit de classificació" - -#: templates/manager/javascript.inc:202 -msgid "The following item(s) are folders: " -msgstr "Els següents elements són carpetes:" - -#: templates/manager/javascript.inc:198 -msgid "The following items will be permanently deleted: " -msgstr "S'eliminaran permanentment els següents elements: " - -#: templates/selectlist/javascript.inc:9 -msgid "The original opener window has been closed. Exiting." -msgstr "S'ha tancat la finestra d'origen. Sortint. " - -#: login.php:150 -msgid "There are no backends available for the current user." -msgstr "L'usuari actual no disposa de motors als quals connectar-se." - -#: selectlist.php:193 templates/manager/manager.html:128 -msgid "There are no files in this folder." -msgstr "No hi ha arxius en aquesta carpeta." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Per a eliminar elements del portapapers, seleccioni la casella al costat del " -"nom de l'arxiu i premi "Netejar"." - -#: templates/clipboard/clipboard.html:13 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Per a enganxar elements del portapapers a la carpeta actual, seleccioni la " -"casella al costat del nom de l'arxiu i premi "Enganxar"." - -#: manager.php:425 -msgid "Type" -msgstr "Tipus" - -#: permissions.php:42 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "No pot crear permisos anteriors: %s" - -#: lib/Gollem.php:739 lib/Gollem.php:749 -#, php-format -msgid "Up to %s" -msgstr "Pujar a %s" - -#: manager.php:274 -msgid "Upload File(s)" -msgstr "Carregar arxiu(s)" - -#: config/prefs.php.dist:12 config/prefs.php.dist:19 -msgid "User Interface" -msgstr "Interfície d'usuari " - -#: config/credentials.php.dist:18 -msgid "Username" -msgstr "Usuari" - -#: manager.php:269 -msgid "View Clipboard" -msgstr "Veure Portapapers" - -#: login.php:195 -#, php-format -msgid "Welcome to %s" -msgstr "Bevingut a %s" - -#: templates/manager/manager.html:18 -msgid "Write" -msgstr "Escriptura" - -#: config/prefs.php.dist:92 -msgid "Yes" -msgstr "Si" - -#: permissions.php:25 -msgid "You need at least one backend defined to set permissions." -msgstr "Per a definir privilegis necessita almenys definir un motor. " - -#: lib/MIME/Viewer/images.php:35 -msgid "Your browser does not support inline display of this image type" -msgstr "" -"El seu navegador no admet la visualització en línia d'aquest tipus d'imatge. " - -#: lib/Gollem.php:817 lib/Gollem.php:820 -msgid "_Change Server" -msgstr "_Canviar servidor" - -#: manager.php:215 selectlist.php:74 -msgid "folder" -msgstr "carpeta" - -#: manager.php:216 selectlist.php:75 -msgid "symlink" -msgstr "vincle simbòlic " Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/cs/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/cs/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/cs/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/cs/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/cs/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/cs/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,572 +0,0 @@ -# Czech translations for Gollem package. -# Copyright 2004-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde package. -# Pavel Chytil , 2004. -# Michael Grafnetter , 2014 -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2014-10-14 14:39+0200\n" -"PO-Revision-Date: 2014-11-03 16:50+0100\n" -"Last-Translator: Michael Grafnetter \n" -"Language-Team: Czech \n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\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" -"X-Generator: Poedit 1.6.10\n" - -#: manager.php:65 -#, fuzzy, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "'%s' přejmenován na '%s'" - -#: quota.php:50 -#, fuzzy, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB použito z %.2fMB povolených (%.2f%%)" - -#: manager.php:594 -#, fuzzy, php-format -msgid "%d item" -msgstr "%d položek" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d položek" - -#: edit.php:33 -#, fuzzy, php-format -msgid "%s successfully saved." -msgstr "%s byl úspěšně vložen." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s byl úspěšně vložen." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Nebyl povolen přístup k: %s" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, fuzzy, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Nebyl povolen přístup k: %s" - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Přidat" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Vše" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Jste si jistí, že chcete pokračovat?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Opravdu?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Vzestupně" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Zeptat se" - -#: lib/Application.php:136 -#, fuzzy -msgid "Backend" -msgstr "Backendy" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Backendy" - -#: templates/clipboard.html.php:12 -#, fuzzy -msgid "Below is the current contents of your clipboard." -msgstr "Nelze vložit položky do přechodné schránky." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Storno" - -#: manager.php:85 -#, fuzzy, php-format -msgid "Cannot chmod %s: %s" -msgstr "Nelze provést chmod %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Nelze kopírovat položky do přechodné schránky." - -#: manager.php:224 -#, fuzzy, php-format -msgid "Cannot create home directory: %s" -msgstr "Nemůže prohledat adresář: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Nelze vložit položky do přechodné schránky." - -#: manager.php:180 -#, fuzzy, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Nelze vložit '%s' (přechodná schránka vyprázdněna): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Změnit Adresář" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Změnit Práva" - -#: lib/Application.php:244 -#, fuzzy -msgid "Check Quota" -msgstr "Zkontrolovat" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Vybrat _Vše/Žádné" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Chmod proveden: " - -#: lib/Prefs/Special/Columnselect.php:47 -#, fuzzy -msgid "Choose which columns to display, and in what order:" -msgstr "Vybrat zobrazení sloupců ve správci souborů." - -#: clipboard.php:24 -#, fuzzy -msgid "Clear" -msgstr "Vyčistit vyhledávání" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -#, fuzzy -msgid "Clipboard" -msgstr "Kopírovat do schránky" - -#: quota.php:25 -msgid "Close" -msgstr "Zavřít" - -#: lib/Prefs/Special/Columnselect.php:51 -#, fuzzy -msgid "Columns that will not be displayed:" -msgstr "Zobrazené kontakty:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Kopírovat" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Vytvořit Adresář" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" - -#: templates/clipboard.html.php:22 -#, fuzzy -msgid "Current directory:" -msgstr "Aktuální podmínka" - -#: clipboard.php:26 templates/manager.html.php:65 -#, fuzzy -msgid "Cut" -msgstr "Počet" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Implicitní třídící kritéria:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Implicitní směr třídění:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Smazat" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Smazat Adresáře rekurzivně?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Sestupně" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Provedeno" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Download %s" - -#: templates/quota.html.php:7 -#, fuzzy -msgid "ERROR:" -msgstr "CHYBA: %s" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Upravit %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Provést" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Soubor" - -#: config/prefs.php:87 -#, fuzzy -msgid "File Actions" -msgstr "Akce složek" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Zobrazit Soubor" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Čas Změny Souboru" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Název Souboru" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Velikost Souboru" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Typ Souboru" - -#: config/prefs.php:88 -#, fuzzy -msgid "File action settings." -msgstr "Doplňující Nastavení" - -#: manager.php:100 -msgid "File deleted: " -msgstr "Soubor smazán: " - -#: config/prefs.php:16 -#, fuzzy -msgid "File display preferences." -msgstr "Nastavení zobrazení" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Soubor přijat: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "" - -#: manager.php:341 -msgid "Filter" -msgstr "Filtr" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Adresář odstraněn: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "" - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Skupina" - -#: lib/Api.php:413 -#, fuzzy, php-format -msgid "Invalid backend requested: %s" -msgstr "Nesprávný adresář: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Položka zkopírována do přechodné schránky: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Položka přesunuta do přechodné schránky: %s" - -#: config/prefs.php:78 -#, fuzzy -msgid "Items per page" -msgstr "Počet položek na stránku" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Ukázat nejdříve seznam adresářů?" - -#: manager.php:540 -msgid "Modified" -msgstr "Změněno" - -#: manager.php:514 -msgid "Name" -msgstr "Název" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Založen nový adresář: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Ne" - -#: templates/quota.html.php:12 -#, fuzzy -msgid "No quota found." -msgstr "Poznámka nebyla nalezena." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Vlastník" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Vložit" - -#: manager.php:556 -msgid "Permission" -msgstr "Práva" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Nepovolený přístup k %s: %s" - -#: manager.php:217 -#, fuzzy, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Nepovolený přístup k %s: %s" - -#: lib/Api.php:421 -#, fuzzy -msgid "Permission denied to this backend." -msgstr "Nepovolený přístup k %s: %s" - -#: manager.php:612 -msgid "Permissions" -msgstr "Práva" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Prosím vyberte položku před provedeními tohoto úkonu." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Prosím zadejte alespoň jeden soubor pro upload." - -#: quota.php:58 templates/quota.html.php:2 -#, fuzzy -msgid "Quota Display" -msgstr "Zobrazit" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Čtecí" - -#: manager.php:287 -msgid "Refresh" -msgstr "Obnovit" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Přejmenovat" - -#: lib/Api.php:206 -#, fuzzy -msgid "Renaming across backends is not supported." -msgstr "Tato akce není podporována." - -#: lib/Api.php:198 -#, fuzzy -msgid "Renaming of backends is not allowed." -msgstr "Čtení kontaktů není možné." - -#: templates/edit.html.php:14 -#, fuzzy -msgid "Reset" -msgstr "" -"#-#-#-#-# horde.po (Horde 3.0.9) #-#-#-#-#\n" -"Smazat\n" -"#-#-#-#-# imp.po (IMP 4.1.4) #-#-#-#-#\n" -"Vynulovat\n" -"#-#-#-#-# nag.po (Nag 2.0-cvs) #-#-#-#-#\n" -"Smazat" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Uložit" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Vybrat vše" - -#: clipboard.php:47 -#, fuzzy -msgid "Select None" -msgstr "Vybrat kontakt" - -#: lib/Prefs/Special/Columnselect.php:49 -#, fuzzy -msgid "Select a backend:" -msgstr "Prosim vyberte backend:" - -#: manager.php:301 manager.php:420 -#, fuzzy -msgid "Share Folder" -msgstr "Změnit Adresář" - -#: manager.php:420 -#, fuzzy -msgid "Shared Folder" -msgstr "Změnit Adresář" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Zobrazit soubory začínající tečkou?" - -#: manager.php:548 -msgid "Size" -msgstr "Velikost" - -#: lib/Application.php:215 -#, fuzzy -msgid "Start Folder" -msgstr "Začíná V" - -#: lib/Api.php:235 -#, fuzzy -msgid "The application folder can not be deleted." -msgstr "Schránka \"%s\" nemůže být smazána." - -#: manager.php:609 -#, fuzzy -msgid "The following item(s) are folders:" -msgstr "Následující položka(y) je/jsou adresář(e): " - -#: manager.php:607 -#, fuzzy -msgid "The following items will be permanently deleted:" -msgstr "Následujíci položky budou permanentně vymazány: " - -#: selectlist.php:174 -#, fuzzy -msgid "The original opener window has been closed. Exiting." -msgstr "Vytvářená zpráva byla zavřena." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Tento adresář neobsahuje žádné soubory." - -#: lib/Prefs/Special/Columnselect.php:48 -#, fuzzy -msgid "These columns will display in this order:" -msgstr "Vybrat zobrazení sloupců ve správci souborů." - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" - -#: manager.php:506 -msgid "Type" -msgstr "Typ" - -#: lib/Api.php:417 -#, fuzzy -msgid "Unable to create Gollem session" -msgstr "Nelze se připojit na SQL server." - -#: permissions.php:40 -#, fuzzy, php-format -msgid "Unable to create backend permission: %s" -msgstr "Nelze smazat \"%s\": %s." - -#: manager.php:102 -#, fuzzy, php-format -msgid "Unable to delete file %s: %s" -msgstr "Nelze smazat \"%s\": %s." - -#: manager.php:94 -#, fuzzy, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Nelze smazat \"%s\": %s." - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Do %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Uploadovat Soubor(y)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Uživatelské Rozhraní" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Zapsat" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Ano" - -#: share.php:29 -#, fuzzy -msgid "You are not allowed to share this folder" -msgstr "Nemáte oprávnění smazat tento adresář." - -#: permissions.php:20 -#, fuzzy -msgid "You need at least one backend defined to set permissions." -msgstr "Máte zakázané požadované oprávnění." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Práva" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/da/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/da/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/da/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/da/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/da/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/da/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,539 +0,0 @@ -# Danish translations for Gollem package -# Danske oversættelser for pakke Gollem. -# Copyright 2006-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Brian Truelsen , 2006. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H5 (3.0.1)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2014-01-18 18:46+0100\n" -"Last-Translator: Erling Preben Hansen \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" er omdøbt til \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d enheder" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d elementer" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s er Gemt." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s er indsat." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Adgang nægtet til %s" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Adgang til mappe \"%s\" nægtet." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Tilføj" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Alle" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Er du sikker, at du vil fortsætte?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Stigende" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Spørg" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Backend" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Backend'er" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Nedenfor ses det aktuelle indhold af din udklipsholder." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Annuller" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Kan ikke udføre chmod %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Kan ikke kopiere element til udklipsholder." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Kan ikke oprette hjemme mappen: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Kan ikke klippe elementer til udklipsholder." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Kan ikke indsætte \"%s\" (filen er fjernet fra udklipsholderen): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Skift mappe" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Redigér Tilladelser" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Tjek kvote" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Marker _Alle / ingen" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Chmod udført: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Vælg hvilke kolonner der skal vises i filhåndteringen:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Rens" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Udklipsholder" - -#: quota.php:25 -msgid "Close" -msgstr "Luk" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Kolonner der ikke bliver vist:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Kopier" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Opret ny mappe" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Oprettede blanke rettigheder for \"%s\". Du skal eksplicit give adgang til " -"denne backend nu." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Aktuel mappe:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Klip" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Standard sorteringskriterie:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Standard sorteringsretning:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Slet" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Slet mapper rekursivt?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Faldende" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Færdig" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Hent %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "FEJL:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Redigér %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Udfør" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Fil" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Fil Handlinger" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Fil visning" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Fil ændringstidspunkt" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Filnavn" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Filstørrelse" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Filtype" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Fil handlinger indstillinger." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Fil slettet: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Fil visnings indstillinger." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Fil modtaget: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Filer skal lagres i en VFS backend." - -#: manager.php:341 -msgid "Filter" -msgstr "Filtre" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Mappe fjernet: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Mapper skal oprettes i en VFS backend." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Gruppe" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Ugyldig backend: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Element kopieret til udklipsholder: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Element klippet til udklipsholder: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Enheder pr side" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "List mapper først?" - -#: manager.php:540 -msgid "Modified" -msgstr "Ændret" - -#: manager.php:514 -msgid "Name" -msgstr "Navn" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Ny mappe oprettet: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Nej" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Ingen kvote fundet." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Ejer" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Indsæt" - -#: manager.php:556 -msgid "Permission" -msgstr "Tilladelse" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Tilladelse til %s nægtet: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Tilladelse til mappe \"%s\" nægtet: %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Tilladelse nægtet til denne backend." - -#: manager.php:612 -msgid "Permissions" -msgstr "Tilladelser" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Vælg et element før denne handling." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Specificér mindst én fil, som skal lægges op." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Kvote oversigt" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Læs" - -#: manager.php:287 -msgid "Refresh" -msgstr "Opdater" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Omdøb" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Omdøbning mellem backends er ikke undeerstøttet." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Omdøbning af backends er ikke tilladt." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Nulstil" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Gem" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Vælg alle" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Vælg ingen" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Vælg en backend:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Del mappe" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Delte mapper" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Vis skjulte filer?" - -#: manager.php:548 -msgid "Size" -msgstr "Størrelse" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Start mappe" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Rod mappen kan ikke slettes." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Følgende element(er) er mapper: " - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Følgende elementer vil blive slettet permanent: " - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Vinduet, der har åbnet dette vindue, er blevet lukket. Afslutter." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Denne mappe indeholder ingen filer." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Disse kolonner vil blive vist i denne orden:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"For at slette elementer fra udklipsholderen skal du markere kassen ved siden " -"af filnavnet og klikke 'Visk ud'." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"For at indsætte elementer fra udklipsholderen til det aktuelle katalog skal " -"du markere kassen ved siden af filnavnet, og klikke 'Indsæt'." - -#: manager.php:506 -msgid "Type" -msgstr "Type" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Kan ikke oprette en Gollem session" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Kan ikke oprette backend-tilladelser: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Kan ikke slette fiken %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Kan ikke slette mappen %s: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Op til %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Læg fil(er) op" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Brugergrænseflade" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Skriv" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Ja" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Du har ikke tilladelse til at dele denne mappe" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Du har brug for at have mindst én backend defineret for at kunne indstille " -"tilladelser." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "Tilladelser _P" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/de/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/de/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/de/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/de/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ - - - - - Dateimanager: Aktionen - Verzeichnisse erstellen - Um einen Ordner im aktuellen Verzeichnis zu erstellen, klicken Sie - auf das Symbol "Verzeichnis erstellen". - - Löschen, Ausschneiden, Kopieren und Einfügen von - Dateien - Um Dateien zu löschen, auszuschneiden oder zu kopieren, muss - mindestens eine Datei ausgewählt sein. Nachdem eine oder mehrere Dateien - mit Hilfe der Checkboxen links ausgewählt wurden, können Sie im Menüpunkt - "Aktionen:" Kopieren, Ausschneiden, Löschen oder Umbenennen - auswählen. Wenn Sie Kopieren oder Ausschneiden gewählt haben, haben Sie - nun die Möglichkeit diese Dateien irgendwo im Dateimanager einzufügen. - Navigieren Sie in das Verzeichnis, in dem die Dateien eingefügt werden - sollen und wählen Sie unter "Aktionen:" Einfügen. Die Dateien werden dann - dorthin verschoben oder kopiert. - - Löschen, Ausschneiden, Kopieren und Einfügen von - Verzeichnissen - Standardmäßig können nur Verzeichnisse gelöscht werden, die leer - sind. Sie können aber das Löschen von Verzeichnissen mitsamt ihres Inhalts - (rekursives Löschen) aktivieren. Wenn Sie versuchen, ein Verzeichnis zu - löschen, das nicht leer ist, ohne diese Funktion einzuschalten, wird das - Löschen abgebrochen und Sie erhalten eine Fehlermeldung. Um das Löschen - von nicht-leeren Verzeichnissen einzuschalten, klicken Sie auf - "Einstellungen", noch einmal auf "Einstellungen" und wählen Sie "Ja" in - der Auswahlliste. - Um Verzeichnisse zu löschen, auszuschneiden oder zu kopieren, muss - mindestens ein Verzeichnis ausgewählt sein. Nachdem ein oder mehrere - Verzeichnisse mit Hilfe der Checkboxen links ausgewählt wurden, können Sie - im Menüpunkt "Aktionen:" Kopieren, Ausschneiden, Löschen oder Umbenennen - auswählen. Wenn Sie Kopieren oder Ausschneiden gewählt haben, haben Sie - nun die Möglichkeit diese Verzeichnisse irgendwo im Dateimanager - einzufügen. Navigieren Sie in das Verzeichnis, in dem die Verzeichnisse - eingefügt werden sollen und wählen Sie unter "Aktionen:" Einfügen. Die - Verzeichnisse werden dann dorthin verschoben oder kopiert. - - Mit der Zwischenablage arbeiten - Wenn Sie eine Datei oder ein Verzeichnis kopiert oder ausgeschnitten - haben, finden Sie dieses Element in der Zwischenablage. Dateien oder - Verzeichnisse, die ausgeschnitten oder kopiert wurden, können nicht mehr - über eine Checkbox ausgewählt werden. Eine fehlende Checkbox zeigt an, - dass sich eine Datei oder ein Verzeichnis in der Zwischenablage - befindet. Durch Klick auf das Symbol "Zwischenablage anzeigen", erhält man - eine Liste der Elemente, die kopiert oder ausgeschnitten wurden. Dieses - Symbol erscheint jedoch erst, wenn Dateien oder Verzeichnisse kopiert oder - ausgeschnitten wurden. Von dort aus kann man diese Dateien oder - Verzeichnisse in das aktuelle Verzeichnis einfügen. Wählen Sie dazu - einfach das entsprechende Element aus und klicken auf "Einfügen". Um ein - Element aus der Zwischenablage zu entfernen, wählen Sie es aus und klicken - dann auf "Entfernen". - - - - Dateimanager: Hochladen - Dateien hochladen - Um Dateien hochzuladen, wechseln Sie in das entsprechende - Verzeichnis, in das die Dateien geladen werden sollen. Wenn Sie sich im - entsprechenden Verzeichnis befinden, klicken Sie auf - "Durchsuchen...". Damit öffnen Sie einen Dialog, in dem Sie eine Datei - auswählen können, die hochgeladen werden soll. Anschließend können Sie - noch weitere Dateien auswählen, der Dateimanager fügt automatische neue - "Durschsuchen..."-Felder unter den bereits verwendeten hinzu. Wenn Sie - fertig sind, klicken Sie auf "Datei(en) hochladen", um die Datei(en) im - aktuellen Verzeichnis zu speichern. - - - - Einträge sortieren - Einträge sortieren - Wenn Sie sich eine Liste von Dateien oder Verzeichnissen ansehen, - können Sie diese nach verschiedenen Kriterien sortieren. Klicken Sie dazu - auf die entsprechende Spaltenüberschrift, nach der sortiert werden - soll. Anschließend wird die Liste aktualisiert und neu sortiert - angezeigt. Um zwischen aufsteigender und absteigender Sortierung zu - wechseln, klicken Sie erneut auf die Spaltenüberschrift. - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/de/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/de/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/de/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/de/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/de/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/de/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,544 +0,0 @@ -# German translations for Gollem. -# Copyright 2001-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Jan Schneider , 2001-2014. -# -# item: Element -# directory/folder: Verzeichnis -msgid "" -msgstr "" -"Project-Id-Version: Gollem H5 (3.0-git)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2015-12-28 17:03+0100\n" -"PO-Revision-Date: 2013-01-29 11:58+0100\n" -"Last-Translator: Jan Schneider \n" -"Language-Team: German \n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8-bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" nach \"%s\" umbenannt" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d Element" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d Elemente" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s erfolgreich gespeichert." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s wurde erfolgreich eingefügt." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Zugriff auf %s verweigert" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Zugriff auf Verzeichnis \"%s\" verweigert." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Hinzufügen" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Alle" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Sind Sie sicher, dass Sie fortfahren möchten?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Sind Sie sicher?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Aufsteigend" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Nachfragen" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Backend" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Backends" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Unten sehen Sie den aktuellen Inhalt der Zwischenablage." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Abbrechen" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Die Zugriffsrechte für \"%s\" konnten nicht geändert werden: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Elemente konnten nicht in die Zwischenablage kopiert werden." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Das Heimverzeichnis kann nicht erstellt werden: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Elemente konnten nicht in die Zwischenablage verschoben werden." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "" -"\"%s\" kann nicht eingefügt werden (Datei aus Zwischenablage entfernt): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Verzeichnis wechseln" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Rechte Ändern" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Speicherplatz überprüfen" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "_Alle/Keine auswählen" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Zugriffsrechte geändert: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "" -"Wählen Sie aus, welche Spalten in welcher Reihenfolge angezeigt werden " -"sollen:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Entfernen" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Zwischenablage" - -#: quota.php:25 -msgid "Close" -msgstr "Schließen" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Spalten die nicht angezeigt werden:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Kopieren" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Verzeichnis erstellen" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Es sind leere Rechte für \"%s\" angelegt worden. Sie müssen für dieses " -"Backend jetzt ausdrücklich Rechte festlegen." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Aktuelles Verzeichnis:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Ausschneiden" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Sortierreihenfolge:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Sortierrichtung:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Löschen" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Verzeichnisse rekursiv löschen?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Absteigend" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Fertig" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "%s Herunterladen" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "FEHLER:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "%s Bearbeiten" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Ausführen" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Datei" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Dateiaktionen" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Dateianzeige" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Dateiänderung" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Dateiname" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Dateigröße" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Dateityp" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Dateiaktionen-Einstellungen" - -#: manager.php:100 -msgid "File deleted: " -msgstr "Datei gelöscht: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Dateianzeige-Einstellungen" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Datei hochgeladen: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Dateien müssen innerhalb eines VFS-Backends gespeichert werden." - -#: manager.php:341 -msgid "Filter" -msgstr "Filter" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Verzeichnis gelöscht: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Ordner müssen innerhalb eines VFS-Backends angelegt werden." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Gruppe" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Ungültiges Backend: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Element in Zwischenablage kopiert: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Element in Zwischenablage verschoben: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Elemente pro Seite" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Verzeichnisse zuerst anzeigen?" - -#: manager.php:540 -msgid "Modified" -msgstr "Geändert" - -#: manager.php:514 -msgid "Name" -msgstr "Name" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Neues Verzeichnis erstellt: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Nein" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Keine Speicherplatzbegrenzung gefunden." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Besitzer" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Einfügen" - -#: manager.php:556 -msgid "Permission" -msgstr "Rechte" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Zugriff auf %s verweigert: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Zugriff auf Verzeichnis \"%s\" verweigert: %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Zugriff auf dieses Backend verweigert." - -#: manager.php:612 -msgid "Permissions" -msgstr "Rechte" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Bitte wählen Sie ein Element aus, bevor Sie diese Aktion durchführen." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Bitte geben Sie mindestens eine Datei zum Hochladen an." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Speicherplatz" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Lesen" - -#: manager.php:287 -msgid "Refresh" -msgstr "Aktualisieren" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Umbenennen" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Umbenennen über verschiedene Backends hinweg wird nicht unterstützt." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Das Umbenennen von Backends ist nicht erlaubt." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Zurücksetzen" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Speichern" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Alle auswählen" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Keine auswählen" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Backend auswählen:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Ordner teilen" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Gemeinsame Ordner" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Versteckte Dateien anzeigen?" - -#: manager.php:548 -msgid "Size" -msgstr "Größe" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Startordner" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Der Anwendungsordner kann nicht gelöscht werden." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Die folgenden Elemente sind Verzeichnisse:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Die folgenden Elemente werden endgültig gelöscht:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Das Ursprungs-Fenster ist geschlossen worden. Abbruch." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Dieses Verzeichnis ist leer." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Diese Spalten werden in der folgenden Reihenfolge angezeigt:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Um Elemente aus der Zwischenablage zu entfernen, markieren Sie das Kästchen " -"neben dem Dateinamen und klicken Sie auf "Entfernen"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Um Elemente aus der Zwischenablage in das aktuelle Verzeichnis einzufügen, " -"markieren Sie das Kästchen neben dem Dateinamen und klicken Sie auf "" -"Einfügen"." - -#: manager.php:506 -msgid "Type" -msgstr "Typ" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Gollemsession konnte nicht gestartet werden" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Die Backendrechte konnten nicht erstellt werden: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Die Datei \"%s\" konnte nicht gelöscht werden: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Das Verzeichnis \"%s\" konnte nicht gelöscht werden: %s" - -#: lib/Gollem.php:688 lib/Gollem.php:698 -#, php-format -msgid "Up to %s" -msgstr "Hoch nach %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Datei(en) Hochladen" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Benutzeroberfläche" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Schreiben" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Ja" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Sie dürfen diesen Ordner nicht teilen" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Sie müssen mindestens ein Backend konfiguriert haben, bevor Sie Rechte " -"festlegen können." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Rechte" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/el/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/el/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/el/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/el/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/el/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/el/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,542 +0,0 @@ -# Gollem Greek translation. -# Copyright 2012-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Giorgos Strimpakos , 2012. -# Terpou Maria , 2015 -# Drakopoulos Takis , 2015 -msgid "" -msgstr "" -"Project-Id-Version: Gollem H5 (3.0.0-git)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2016-02-29 12:27+0100\n" -"Last-Translator: Antonis Limperis \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.7.6\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" μετονομάστηκε σε \"%s\"." - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d αντικείμενο" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d αντικείμενα" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "Το \"%s\" αποθηκεύθηκε με επιτυχία." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "το \"%s\" επικολλήθηκε επιτυχώς." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Δεν επιτρέπεται η πρόσβαση στο %s" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Δεν επιτρέπεται η πρόσβαση στον φάκελο \" %s\"" - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Προσθήκη" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Όλα" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Είστε σίγουροι ότι θέλετε να συνεχίσετε;" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Είστε σίγουρος;" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Αύξουσα" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Ερώτηση" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Υποδομή" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Υποδομές" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Ακολουθούν τα τρέχοντα περιεχόμενα του προχείρου" - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Άκυρο" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Δεν είναι δυνατή η αλλαγή των ιδιοτήτων %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Δεν είναι δυνατή η αντιγραφή στοιχείων στο πρόχειρο." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Δεν είναι δυνατή η δημιουργία του κυρίου καταλόγου: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Δεν δυνατή η αποκοπή και μεταφορά αντικειμένων στο πρόχειρο." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "" -"Δεν μπορείτε γίνει επικόλληση του \"% s\" (το αρχείο διαγραφεί από το " -"πρόχειρο):% s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Αλλαγή Φακέλου" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Αλλαγή δικαιωμάτων" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Έλεγχος Κατειλημμένου Χώρου(Quota)" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "(Απ)Επιλογή όλων" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Ολοκληρώθηκε η αλλαγή των ιδιοτήτων:" - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Επιλέξτε ποιες στήλες θα εμφανίζονται και με ποια σειρά:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Καθαρισμός" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Πρόχειρο" - -#: quota.php:25 -msgid "Close" -msgstr "Κλείσιμο" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Στήλες που δεν θα εμφανίζονται:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Αντιγραφή" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Δημιουργία Φακέλου" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Δημιουργήθηκαν κενά δικαιώματα για το \"%s\". Θα πρέπει να αποδώσετε ρητά " -"την πρόσβαση σε αυτό το υποδομή τώρα." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Τρέχων κατάλογος:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Αποκοπή" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Προεπιλεγμένο κριτήριο ταξινόμησης:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Προεπιλεγμένη κατεύθυνση ταξινόμησης:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Διαγραφή" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Διαγραφή φακέλων αναδρομικά;" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Φθίνουσα" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "ΟΚ" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Κατέβασμα %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "Σφάλμα:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Επεξεργασία %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Εκτέλεση" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Αρχείο" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Ενέργειες Αρχείων" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Εμφάνιση Αρχείου" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Ημερομηνία Τροποποίησης Αρχείου" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Όνομα Αρχείου" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Μέγεθος αρχείου" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Τύπος Αρχειου" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Ρυθμίσεις ενεργειών αρχείων." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Διαγραμμένο Αρχείο::" - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Επιλογές εμφάνισης αρχείου." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Παραλαβή αρχείων: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Τα αρχεία πρέπει να καταχωρηθούν σε μια υποδομή VFS." - -#: manager.php:341 -msgid "Filter" -msgstr "Φίλτρο" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Ο φάκελος διαγράφηκε." - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Τα φάκελοι πρέπει να δημιουργηθούν σε μια υποδομή VFS." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Ομάδα" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Μη έγκυρη αίτηση στην υποδομή: %s." - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Στοιχείο που αντιγράφηκε στο πρόχειρο: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Στοιχείο που αποκόπηκε στο πρόχειρο:% s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Στοιχεία ανά σελίδα" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Εμφάνιση Πρώτα της Λίστας των φακέλων;" - -#: manager.php:540 -msgid "Modified" -msgstr "Τροποποιήθηκε" - -#: manager.php:514 -msgid "Name" -msgstr "Όνομα" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Ο φάκελος δημιουργήθηκε:" - -#: config/prefs.php:96 -msgid "No" -msgstr "Όχι" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Δεν υπάρχουν δεδομένα κατάληψης χώρου (quota)" - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Ιδιοκτήτης" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Επικόλληση" - -#: manager.php:556 -msgid "Permission" -msgstr "Δικαίωμα" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Δεν επιτρέπεται η πρόσβαση στο %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Δεν επιτρέπεται η πρόσβαση στον φάκελο \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Δεν επιτρέπεται η πρόσβαση στην υποδομή (backed) αυτή." - -#: manager.php:612 -msgid "Permissions" -msgstr "Εξουσιοδοτήσεις" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Παρακαλώ επιλέξτε ένα στοιχείο πριν από αυτή την ενέργεια." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Παρακαλώ να ορίσετε τουλάχιστον ένα αρχείο για μεταφόρτωση." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Εμφάνιση Κατάληψης χώρου" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Ανάγνωση" - -#: manager.php:287 -msgid "Refresh" -msgstr "Ανανέωση" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Αλλαγή ονόματος" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Η μετονομασία μεταξύ διαφορετικών υποδομών δεν υποστηρίζεται." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Δεν επιτρέπεται η μετονομασία των υποδομών." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Επαναφορά" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Αποθήκευση" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Επιλογή όλων" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Καμία Eπιλογή" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Επιλέξτε μια υποδομή:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Διαμοιρασμός Φακέλου" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Κοινόχρηστoι Φάκελοι" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Εμφάνιση κρυφών αρχείων (dotfiles);" - -#: manager.php:548 -msgid "Size" -msgstr "Μέγεθος" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Φάκελος Εκκίνησης" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Ο φάκελος εφαρμογής δεν μπορεί να διαγραφεί." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Το ακόλουθο στοιχεία είναι φάκελοι:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Τα ακόλουθα στοιχεία θα διαγραφούν οριστικά:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Το αρχικό παράθυρο έχει κλείσει. Έξοδος." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Δεν υπάρχουν αρχεία σε αυτόν το φάκελο." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Οι στήλες θα εμφανίζονται με αυτή τη σειρά:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Για να διαγράψετε αντικείμενα από το πρόχειρο, επιλέξτε το πλαίσιο δίπλα στο " -"όνομα του αρχείου και πατήστε στο \"Καθαρισμός\"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Για να επικολλήσετε στοιχεία από το πρόχειρο στον τρέχοντα κατάλογο, " -"επιλέξτε το πλαίσιο δίπλα στο όνομα του αρχείου και πατήστε στο \"Επικόλληση" -"\";." - -#: manager.php:506 -msgid "Type" -msgstr "Τύπος" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Αδύνατη η δημιουργία συνόδου" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Αδύνατη η δημιουργία δικαιωμάτων υποδομής: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Δεν ήταν δυνατή η διαγραφή του αρχείου %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου \"%s: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "έως το %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Αποστολή Αρχείου(ων)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Περιβάλλον Χρήστη" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Συγγραφή" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Ναι" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Δεν επιτρέπεται ο διαμοιρασμός του φακέλου." - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Χρειάζεστε τουλάχιστον μια ορισμένη υποδομή για να ρυθμίσετε τα δικαιώματα." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "Εξουσιοδοτήσεις" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/en/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/en/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/en/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/en/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ - - - - - File Manager: Actions - Creating Folders - - To create a folder in the current directory, simply choose Create Folder from the Actions drop down box. - - Delete, cut, copy and paste files - - In order to delete, cut or copy a file or files, you need to select at least one file. - After you select one or more files using the checkboxes to the left of the item, select either Cut Items, Copy Items or - Delete Items from the Actions drop down box. If you selected Cut Items or Copy Items, you now have the option to - paste those files elsewhere in the File Manager. Navigate to the location that you wish to paste the items, then select - Paste Items from the Actions drop down box. The items will now be either moved (Cut Items) or copied (Copy Items) to - the location that you chose. - - Delete, cut, copy and paste directories - - By default, you can only delete directories that are empty, however you can enable the deletion of non-empty directories - (recursive delete). If you try to delete a non-empty directory without enabling this feature, deletion will fail with - an error. To enable the deleting non-empty directories, click on Preferences, File Actions and choose Yes from the drop down box - for the Delete Folders Recursively preference. This will enable the recursive delete preference. - - In order to delete, cut or copy a directory or directories, you need to select at least one directory. - After you select one or more directories using the checkboxes to the left of the item, select either Cut Items, Copy Items - or Delete Items from the Actions drop down box. If you selected Cut Items or Copy Items, you now have the option to - paste those directories elsewhere in the File Manager. Navigate to the location that you wish to paste the items, then - select Paste Items from the Actions drop down box. The items will now either be moved (Cut Items) or copied (Copy Items) - to the location that you chose. - - Working with the Clipboard - - Once you copy or cut a file or directory, it is placed in the clipboard. You can view the contents of the clipboard by clicking - on the clipboard icon, which is located above the directory/folder listing and to the right of the refresh icon. This icon is not - present unless there are items in the clipboard. Items that are cut or copied will not have a checkbox to the left of them, which - means they are in the clipboard. Once you click on the clipboard viewer, you will see a list of items that you have copied or cut. - From the clipboard viewer, you can paste these items to the current directory, which is displayed above the list of items. - Simply check the items that you want to paste, then click paste. These items will be pasted into the current directory and be removed - from the clipboard. You will be returned to the current directory after the paste is complete. If you would like to remove an item - from the clipboard, simply check the items and click clear. These items will then be removed from the clipboard and you will be returned - to the current directory. - - - - - File Manager: Uploading - Uploading Files - - To upload a file or files, navigate to the directory on the File Manager that you wish to upload the files to. This is - known as your current directory. Once you are in the proper directory on the File Manager, click on the Browse button. - This will display a File Upload window. Once this window is open, navigate to the file which you wish to upload, select - it and click OK. You can upload multiple files at once. The File Manager will automatically add another - Browse button after each file you select. Once you have selected all of the files that you wish to upload, click the - Upload File(s) button and the file or files that you selected will be uploaded to your current directory on the File Manager. - - - - - Sorting Entries - Sorting Entries - - When viewing a list of files or directories, you can sort them by any column. To do this, click on the appropriate - column heading that you wish to sort by, and the list will refreshed, sorted by the column you selected. To switch - columns between ascending and descending order, click on the arrow icon in the column heading. - - - diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/es/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/es/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/es/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/es/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - - Administrador de archivos: Acciones - Creación de carpetas - - Para crear una carpeta en el directorio actual, elija Crear carpeta en la barra de menú. - - Eliminar, cortar, copiar y pegar archivos - - Para eliminar, cortar o copiar uno o varios archivos, primero tiene que seleccionar al menos uno. Tras seleccionar uno o más archivos mediante las casillas a la izquierda de los elementos, seleccione bien Cortar elementos, Copiar elementos o Eliminar elementos del menú desplegable Acciones. Si selecciona Cortar o Copiar elementos tendrá la posibilidad de pegar esos archivos en cualquier lugar del Gestor de archivos. Navegue hasta la ubicación en la que quiera pegar los elementos y seleccione Pegar elementos del menú desplegable Acciones. Los elementos se trasladarán (Cortar elementos) o se copiarán (Copiar elementos) a la ubicación que haya elegido. - - Eliminar, cortar, copiar y pegar carpetas - - Por omisión, sólo se pueden eliminar las carpetas que estén vacías, sin embargo se puede activar la eliminación de carpetas que no estén vacías (borrado recursivo). Si intenta eliminar una carpeta que no esté vacía sin activar esta opción, la eliminación fallará y se mostrará un mensaje de error. Para activar la eliminación de carpetas que no estén vacías, pulse Opciones, Configuración y elija Sí en el menú desplegable de la opción ¿Eliminar carpetas de forma recursiva?. Ésto activará la opción de eliminación recursiva. - - Para eliminar, cortar o copiar una o varias carpetas, tiene que seleccionar al menos una. Tras seleccionar una o más carpetas mediante las casillas a la izquierda de los elementos, seleccione bien Cortar elementos, Copiar elementos o Eliminar elementos del menú desplegable Acciones. Si selecciona Cortar o Copiar elementos tendrá la posibilidad de pegar esas carpetas en cualquier lugar del Gestor de archivos. Navegue hasta la ubicación en la que quiera pegar los elementos y seleccione Pegar elementos del menú desplegable Acciones. Los elementos se trasladarán (Cortar elementos) o se copiarán (Copiar elementos) a la ubicación que haya elegido. - - Trabajando con el Portapapeles - - Una vez halla copiado o cortado un archivo o carpeta, se situará en el portapapeles. Puede ver el contenido del portapapeles pulsando su icono, que está sobre el listado de carpetas a la derecha del icono Actualizar El icono no se mostrará a menos que exista algún elemento en el portapapeles. Los elementos cortados o copiados no dispondrán de una casilla a su izquierda, lo que significa que están en el portapapeles. Cuando pulse en el icono del portapapeles, verá un listado de los elementos que haya copiado o cortado. Desde el portapapeles puede pegar estos elementos en el directorio actual, que se muestra sobre la lista de elementos. Seleccione los elementos que desee pegar y pulse pegar. Esos elementos se pegarán en la carpeta actual y se eliminarán del portapapeles. Tras completar la operación de pegado, regresará a la carpeta actual. Si deseara eliminar un elemento del portapapeles, sólo tiene que seleccionarlo y pulsar Limpiar. Esos elementos se eliminarán del portapapeles se mostrará de nuevo la carpeta actual. - - - - - Administrador de archivos: Carga - Carga de archivos - - Para cargar uno o varios archivos, navegue hasta la carpeta del Administrador de archivos en la que desee cargarlos. Se le conoce como la carpeta actual. Una vez en la carpeta adecuada del Administrador de archivos, pulse el botón Examinar. Se abrirá una ventana de Carga de Archivos. Con dicha ventana abierta, navegue hasta el archivo que desee cargar, selecciónelo y pulse Aceptar/Abrir. Puede cargar varios archivos a la vez. El Administrador de archivos añadirá automáticamente otro botón Examinar tras cada archivo que seleccione. Una vez haya seleccionado todos los archivos que desee cargar, pulse el botón Cargar archivo y el archivo o archivos que había seleccionado se cargarán en la carpeta actual del Administrador de archivos. - - - - - Ordenación de entradas - Ordenación de entradas - - Al ver un listado de archivos o carpetas, puede ordenarlo por cualquier columna. Para ello, pulse la cabecera de la columna por la que desee realizar la ordenación y el listado se actualizará, ordenado por la columna que haya seleccionado. Para conmutar entre ordenación ascendente o descendente, pulse en el icono de flecha de la cabecera de la columna. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/es/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/es/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/es/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/es/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/es/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/es/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,537 +0,0 @@ -# Spanish translations for Gollem H5 package. -# Copyright (C) 2014 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Automatically generated, 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H5 (3.0.0-git)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2014-06-16 09:05+0100\n" -"Last-Translator: Manuel P. Ayala , Juan C. Blanco " -"\n" -"Language-Team: i18n@lists.horde.org\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" se ha renombrado como \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d elemento" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d elementos" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s guardado correctamente." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s se ha pegado correctamente." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Acceso denegado a %s" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Se ha denegado el acceso a la carpeta \"%s\"." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Añadir" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Todos" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "¿Seguro que desea continuar?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "¿Está seguro?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Ascendente" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Consultar" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Soporte" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Soportes" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "A continuación se muestra el contenido actual del Portapapeles." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Cancelar" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "No se puede hacer chmod %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "No se pueden copiar elementos al portapapeles." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "No se puede crear la carpeta principal: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "No se pueden cortar elementos al portapapeles." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "No se puede pegar \"%s\" (el portapapeles está vacío): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Cambiar carpeta" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Cambiar permisos" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Verificar Quota" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Comprobar _Todas/Ninguna" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Ha terminado el cambio de permisos: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Elegir las columnas mostradas y su orden:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Eliminar" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Portapapeles" - -#: quota.php:25 -msgid "Close" -msgstr "Cerrar" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Columnas que no se mostrarán:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Copiar" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Crear carpeta" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Se han creado permisos vacíos para \"%s\". Ahora tiene que conceder el " -"acceso a este soporte de forma explícita." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Carpeta actual:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Cortar" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Criterio de clasificación por omisión:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Sentido de clasificación por omisión:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Eliminar" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "¿Eliminar carpetas de forma recursiva?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Descendente" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Hecho" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Descargar %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "ERROR:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Modificar %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Ejecutar" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Archivo" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Acciones de archivos" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Vista de archivo" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Hora de modificación de archivo" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Nombre de archivo" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Tamaño de archivo" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Tipo de archivo" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Opciones de acciones de archivos" - -#: manager.php:100 -msgid "File deleted: " -msgstr "Archivo eliminado: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Opciones de visualización de archivos" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Archivo recibido: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Los archivos se tienen que almacenar en un soporte VFS." - -#: manager.php:341 -msgid "Filter" -msgstr "Filtro" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Carpeta eliminada: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Las carpetas se tienen que crear en un soporte VFS." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Grupo" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Soporte solicitado inválido: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Se ha copiado el elemento al portapapeles: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Se ha cortado el elemento al portapapeles: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Elementos por página" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "¿Listar primero las carpetas?" - -#: manager.php:540 -msgid "Modified" -msgstr "Modific." - -#: manager.php:514 -msgid "Name" -msgstr "Nombre" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Nueva carpeta creada: " - -#: config/prefs.php:96 -msgid "No" -msgstr "No" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "No se ha encontrado la quota." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Propietario" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Pegar" - -#: manager.php:556 -msgid "Permission" -msgstr "Permiso" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "No dispone de permisos para %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "No dispone de permisos para la carpeta \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "No dispone de permisos para este soporte." - -#: manager.php:612 -msgid "Permissions" -msgstr "Permisos" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Seleccione un elemento antes de esta acción." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Indique al menos un archivo a cargar." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Formato de Quota" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Leer" - -#: manager.php:287 -msgid "Refresh" -msgstr "Actualizar" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Renombrar" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "El renombrado entre soportes no está soportado." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "El renombrado de soporte no está permitido." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Limpiar" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Guardar" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Seleccionar todas" - -#: clipboard.php:47 -msgid "Select None" -msgstr "No seleccionar nada" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Seleccione un soporte:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Compartir carpeta" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Carpeta compartida" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "¿Mostrar archivos cuyo nombre empiece por un punto?" - -#: manager.php:548 -msgid "Size" -msgstr "Tamaño" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Carpeta de inicio" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "La carpeta de la aplicación no se puede eliminar." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Los siguiente(s) elemento(s) son carpetas:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Se eliminarán permanentemente los siguientes elementos:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Se ha cerrado la ventana de origen. Saliendo." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "No hay archivos en esta carpeta." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Estas columnas se mostrarán en este orden:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Para eliminar elementos del portapapeles, seleccione la casilla junto al " -"nombre del archivo y pulse "Limpiar"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Para pegar elementos del portapapeles en la carpeta actual, seleccione la " -"casilla junto al nombre del archivo y pulse "Pegar"." - -#: manager.php:506 -msgid "Type" -msgstr "Tipo" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "No se puede crear la sesión de Gollem" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "No se pueden crear los permisos en el soporte: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "No se puede eliminar el archivo %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "No se puede eliminar la carpeta %s: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Subir a %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Cargar archivo(s)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Interfaz de usuario" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Escritura" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Sí" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Carece de permisos para compartir esta carpeta" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "Para establecer permisos necesita al menos definir un soporte." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Permisos" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/et/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/et/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/et/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/et/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/et/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/et/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,566 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Gollem H3 (1.1-cvs)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2011-10-19 13:56+0300\n" -"PO-Revision-Date: 2011-11-09 13:56+0300\n" -"Last-Translator: Alar Sing \n" -"Language-Team: \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Estonian\n" -"X-Poedit-Country: ESTONIA\n" - -#: manager.php:62 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" nimetati ümber \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:556 -#, php-format -msgid "%d item" -msgstr "%d asja" - -#: manager.php:556 -#, php-format -msgid "%d items" -msgstr "%d asja" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s edukalt salvestatud." - -#: manager.php:177 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s edukalt kleebitud." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "%s juurdepääs keelatud" - -#: lib/Gollem.php:48 lib/Gollem.php:294 lib/Gollem.php:341 lib/Gollem.php:363 -#: lib/Gollem.php:383 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Kaustale \"%s\" juurdepääs keelatud." - -#: templates/manager/manager.html:110 -msgid "Actions:" -msgstr "Tegevus:" - -#: selectlist.php:79 -msgid "Add" -msgstr "Lisa" - -#: templates/manager/manager.html:11 -msgid "All" -msgstr "Kõik" - -#: templates/javascript_defs.php:20 -msgid "Are you sure you wish to continue?" -msgstr "Oled kindel et soovid jätkata?" - -#: templates/javascript_defs.php:18 -msgid "Are you sure?" -msgstr "Oled kindel?" - -#: config/prefs.php:67 -msgid "Ascending" -msgstr "Kasvav" - -#: config/prefs.php:97 -msgid "Ask" -msgstr "Küsi" - -#: templates/manager/manager.html:5 -msgid "Attributes" -msgstr "Atribuudid" - -#: lib/Application.php:124 -msgid "Backend" -msgstr "Alusrakendused" - -#: lib/Application.php:86 -msgid "Backends" -msgstr "Alusrakendused" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "Allpool on hetke lõikepuhver sisu." - -#: clipboard.php:24 manager.php:281 selectlist.php:81 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "Loobu" - -#: manager.php:82 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Ei õnnestu muuta õigusi %s: %s" - -#: manager.php:152 -msgid "Cannot copy items onto clipboard." -msgstr "Ei õnnestu kopeerida asju lõikepuhvrisse." - -#: manager.php:223 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Ei õnnestu luua kodu kataloogi: %s" - -#: manager.php:154 -msgid "Cannot cut items onto clipboard." -msgstr "Ei saa lõigata asju lõikepuhvrisse." - -#: manager.php:179 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Ei saa kleepida \"%s\" (lõikepuhver on tühjendatud) :%s" - -#: manager.php:307 templates/manager/manager.html:70 -msgid "Change Folder" -msgstr "Muuda Kausta" - -#: templates/manager/manager.html:112 -msgid "Change Permissions" -msgstr "Muuda Õigusi" - -#: lib/Gollem.php:585 -msgid "Change Server" -msgstr "Muuda Serverit" - -#: lib/Application.php:286 -msgid "Check Quota" -msgstr "Kontrolli mahupiirangut" - -#: manager.php:552 -msgid "Check _All/None" -msgstr "Märgi/tühjenda _kõik" - -#: manager.php:80 -msgid "Chmod done: " -msgstr "Õigused muudetud: " - -#: lib/Application.php:256 -msgid "Choose which columns to display, and in what order:" -msgstr "Vali, milliseid veerge näidata ja millises järjestuses:" - -#: clipboard.php:25 templates/manager/manager.html:131 -msgid "Clear" -msgstr "Tühjenda" - -#: clipboard.php:44 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "Lõikepuhver" - -#: quota.php:26 -msgid "Close" -msgstr "Sule" - -#: lib/Application.php:260 -msgid "Columns that will not be displayed:" -msgstr "Veerud mida ei näidata:" - -#: clipboard.php:28 templates/manager/manager.html:115 -msgid "Copy" -msgstr "Kopeeri" - -#: manager.php:300 templates/manager/manager.html:58 -msgid "Create Folder" -msgstr "Loo kaust" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "Teha ilma õigusteta \"%s\". Peab alusrakendusele andma selle õiguse." - -#: templates/clipboard/clipboard.html:21 -msgid "Current directory:" -msgstr "Hetke kaust:" - -#: clipboard.php:27 templates/manager/manager.html:116 -msgid "Cut" -msgstr "Lõika" - -#: config/prefs.php:59 -msgid "Default sorting criteria:" -msgstr "Vaike sorteerimise kriteerium:" - -#: config/prefs.php:70 -msgid "Default sorting direction:" -msgstr "Vaike sorteerimise suund:" - -#: templates/manager/manager.html:119 -msgid "Delete" -msgstr "Kustuta" - -#: config/prefs.php:99 -msgid "Delete folders recursively?" -msgstr "Kustuta kaustad rekursiivselt?" - -#: config/prefs.php:68 -msgid "Descending" -msgstr "Kahanev" - -#: selectlist.php:80 -msgid "Done" -msgstr "Tehtud" - -#: manager.php:427 -#, php-format -msgid "Download %s" -msgstr "Salvesta %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "VIGA:" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "Muuda %s" - -#: templates/manager/manager.html:26 -msgid "Execute" -msgstr "Käivita" - -#: templates/javascript_defs.php:22 templates/manager/manager.html:201 -msgid "File" -msgstr "Fail" - -#: config/prefs.php:86 -msgid "File Actions" -msgstr "Faili Tegevused" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Näita Faili" - -#: config/prefs.php:56 -msgid "File Modification Time" -msgstr "Faili muutmise aeg" - -#: config/prefs.php:55 -msgid "File Name" -msgstr "Faili Nimi" - -#: config/prefs.php:57 -msgid "File Size" -msgstr "Faili Suurus" - -#: config/prefs.php:54 -msgid "File Type" -msgstr "Faili Tüüp" - -#: config/prefs.php:87 -msgid "File action settings." -msgstr "Faili tegevuste seaded." - -#: manager.php:97 -msgid "File deleted: " -msgstr "Fail kustutatud: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Faili vaate eelistused." - -#: manager.php:118 -#, php-format -msgid "File received: %s" -msgstr "Fail saabunud: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Faili peab kirjutama VFS alusrakenduse sees." - -#: templates/manager/manager.html:129 -msgid "Filter" -msgstr "Filter" - -#: templates/manager/manager.html:128 -msgid "Filter:" -msgstr "Filter:" - -#: manager.php:89 -msgid "Folder removed: " -msgstr "Kaust eemaldatud: " - -#: lib/Api.php:155 lib/Api.php:186 -msgid "Folders must be created inside a VFS backend." -msgstr "Kaust tuleb teha VFS alusrakenduse sees." - -#: templates/manager/manager.html:72 -msgid "Go to:" -msgstr "Mine:" - -#: manager.php:531 templates/manager/manager.html:10 -msgid "Group" -msgstr "Grupp" - -#: lib/Api.php:405 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Vigane alusrakenduse päring: %s" - -#: manager.php:146 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Asi kopeeritud lõikepuhvrisse: %s" - -#: manager.php:148 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Asi lõigatud lõikepuhvrisse: %s" - -#: config/prefs.php:77 -msgid "Items per page" -msgstr "Kannete arv leheküljel" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "Keel" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Kaustad enne?" - -#: manager.php:501 -msgid "Modified" -msgstr "Muudetud" - -#: manager.php:479 -msgid "Name" -msgstr "Nimi" - -#: templates/manager/manager.html:46 templates/manager/manager.html:60 -msgid "Name:" -msgstr "Nimi:" - -#: manager.php:47 -msgid "New folder created: " -msgstr "Uus kaust tehtud: " - -#: config/prefs.php:95 -msgid "No" -msgstr "Ei" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "Kvooti ei leitud." - -#: manager.php:282 -msgid "OK" -msgstr "OK" - -#: manager.php:524 templates/manager/manager.html:9 -msgid "Owner" -msgstr "Omanik" - -#: clipboard.php:26 -msgid "Paste" -msgstr "Kleebi" - -#: manager.php:517 -msgid "Permission" -msgstr "Õigus" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Ligipääs keelatud %s: %s" - -#: manager.php:216 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Kaustale \"%s\" ligipääs keelatud: %s" - -#: lib/Api.php:413 -msgid "Permission denied to this backend." -msgstr "Alusrakendusele ligipääs keelatud." - -#: templates/javascript_defs.php:13 -msgid "Please provide your password." -msgstr "Palun sisesta oma salasõna." - -#: templates/javascript_defs.php:12 -msgid "Please provide your username." -msgstr "Palun sisesta oma kasutajanimi." - -#: templates/javascript_defs.php:16 -msgid "Please select an item before this action." -msgstr "Palun tee valik enne tegevust." - -#: templates/javascript_defs.php:21 -msgid "Please specify at least one file to upload." -msgstr "Palun vali vähemalt üks fail mida ülesse laadida." - -#: quota.php:57 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "Näita mahupiirangut" - -#: templates/manager/manager.html:14 -msgid "Read" -msgstr "Loe" - -#: manager.php:287 -msgid "Refresh" -msgstr "Värskenda" - -#: templates/manager/manager.html:44 templates/manager/manager.html:122 -msgid "Rename" -msgstr "Nimeta ümber" - -#: lib/Api.php:200 -msgid "Renaming across backends is not supported." -msgstr "Ümber nimetamine üle alusrakenduste ei ole võimalik." - -#: lib/Api.php:194 -msgid "Renaming of backends is not allowed." -msgstr "Alusrakenduste ümbernimetamine ei ole lubatud." - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "Lähtesta" - -#: manager.php:280 templates/edit/edit.inc:11 -msgid "Save" -msgstr "Salvesta" - -#: clipboard.php:48 templates/clipboard/clipboard.html:28 -msgid "Select All" -msgstr "Märgi Kõik" - -#: clipboard.php:49 -msgid "Select None" -msgstr "Ära Vali Midagi" - -#: lib/Application.php:258 -msgid "Select a backend:" -msgstr "Vali alusrakendus:" - -#: templates/login/login.html:31 -msgid "Server" -msgstr "Server" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Näita punktiga algavaid faile?" - -#: manager.php:509 -msgid "Size" -msgstr "Suurus" - -#: lib/Api.php:229 -msgid "The application folder can not be deleted." -msgstr "Rakenduse kausta ei saa kustutada." - -#: templates/javascript_defs.php:19 -msgid "The following item(s) are folders:" -msgstr "Järgmised asjad on kaustades:" - -#: templates/javascript_defs.php:17 -msgid "The following items will be permanently deleted:" -msgstr "Järgmised asjad kustutatakse igaveseks:" - -#: templates/javascript_defs.php:25 -msgid "The original opener window has been closed. Exiting." -msgstr "Algne avamisaken on suletud. Väljun." - -#: selectlist.php:176 templates/manager/manager.html:140 -msgid "There are no files in this folder." -msgstr "Selles kaustas pole faile." - -#: lib/Application.php:257 -msgid "These columns will display in this order:" -msgstr "Need veerge näidatakse selles järjestuses:" - -#: templates/clipboard/clipboard.html:17 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Lõikepuhvrist failide kustutamiseks vali linnuke faili nime järel ja vajuta " -""Tühjenda"." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Asjade kleepimiseks lõikepuhvrisse hetke kaustast vali linnuke faili nime " -"kõrval ja vajuta "Kleebi"." - -#: manager.php:471 -msgid "Type" -msgstr "Tüüp" - -#: lib/Api.php:409 -msgid "Unable to create Gollem session" -msgstr "Ei õnnestunud luua Gollemi sessiooni" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Ei õnnestunud luua alusrakenduse õigust: %s" - -#: manager.php:99 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Faili %s ei õnnestunud kustutada: %s" - -#: manager.php:91 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Kausta %s ei õnnestunud kustutada: %s" - -#: lib/Gollem.php:549 lib/Gollem.php:559 -#, php-format -msgid "Up to %s" -msgstr "Kuni %s" - -#: manager.php:296 -msgid "Upload File(s)" -msgstr "Lae fail(e)" - -#: config/prefs.php:14 config/prefs.php:85 -msgid "User Interface" -msgstr "Kasutajaliides" - -#: manager.php:291 -msgid "View Clipboard" -msgstr "Vaata lõikelauda" - -#: templates/manager/manager.html:20 -msgid "Write" -msgstr "Kirjuta" - -#: config/prefs.php:96 -msgid "Yes" -msgstr "Jah" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "Vähemalt üks alusrakendus peab olema defineeritud et seada õigusi." - -#: lib/Gollem.php:583 lib/Gollem.php:586 -msgid "_Change Server" -msgstr "_Muuda serverit" - -#: lib/Application.php:273 -msgid "_My Home" -msgstr "_Minu kodu" - -#: lib/Application.php:276 -msgid "_Permissions" -msgstr "Õig_used" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/eu/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/eu/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/eu/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/eu/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ - - - - - Fitxategi-kudeatzailea: Ekintzak - Sortu Karpetak - - Uneko direktorioan karpeta bat sortzeko, hautatu 'Sortu karpeta' aukera 'Ekintzak' goitibeherako koadroan. - - Ezabatu, ebaki, kopiatu eta itsatsi fitxategiak - - Fitxategi bat edo gehiago ezabatzeko, ebakitzeko edo kopiatzeko, fitxategi bat hautatu behar duzu gutxienez. - Fitxategi bat edo gehiago hautatu badituzu elementuaren ezkerrean dauden kontrol-laukiak erabiliz, hautatu 'Ebaki elementuak', 'Kopiatu elementuak' edo 'Ezabatu elementuak', 'Ekintzak' izeneko goitibeherako koadroan. 'Ebaki elementuak' edo 'Kopiatu elementuak' hautatu baduzu, fitxategi horiek Fitxategi-kudeatzaileko beste leku batean itsats ditzakezu orain. Nabigatu elementuak itsatsi nahi dituzun lekura, eta ondoren hautatu 'Itsatsi elementuak' 'Ekintzak' izeneko goitibeherako koadroan. Orduan elementuak lekuz aldatu (Ebaki elementuak) edo kopiatu (Kopiatu elementuak) egingo dira zuk aukeratutako lekura. - - Ezabatu, ebaki, kopiatu eta itsatsi direktorioak - - Lehenespenez, hutsik dauden direktorioak bakarrik ezaba ditzakezu, baina hutsik ez dauden direktorioak ezabatzeko aukera ere gaitu dezakezu (ezabatze errekurtsiboa). Hutsik ez dagoen direktorio bat ezabatzen saiatzen bazara eginbide hau gaitu gabe, ezabatzeak huts egingo du eta errorea emango dizu. Hutsik ez dauden direktorioak ezabatzeko aukera gaitzeko, hautatu Hobespenak, Fitxategi-ekintzak, eta aukeratu Bai 'Ezabatu karpetak errekurtsiboki' hobespenaren goitibeherako koadroan. Orduan gaituta geratuko da ezabatze errekurtsiboaren hobespena. - - Direktorio bat edo gehiago ezabatzeko, ebakitzeko edo kopiatzeko, direktorio bat hautatu behar duzu gutxienez. - Direktorio bat edo gehiago hautatu badituzu elementuaren ezkerrean dauden kontrol-laukiak erabiliz, hautatu 'Ebaki elementuak', 'Kopiatu elementuak' edo 'Ezabatu elementuak', 'Ekintzak' izeneko goitibeherako koadroan. 'Ebaki elementuak' edo 'Kopiatu elementuak' hautatu baduzu, direktorio horiek Fitxategi-kudeatzaileko beste leku batean itsats ditzakezu orain. Nabigatu elementuak itsatsi nahi dituzun lekura, eta ondoren hautatu 'Itsatsi elementuak' 'Ekintzak' izeneko goitibeherako koadroan. Orduan elementuak lekuz aldatu (Ebaki elementuak) edo kopiatu (Kopiatu elementuak) egingo dira zuk aukeratutako lekura. - - Arbelaren erabilera - - Fitxategi edo direktorio bat kopiatzean edo ebakitzean, arbelean kokatzen da. Arbelaren edukia ikusteko, egin klik arbelaren ikonoan. Direktorio/Karpeten zerrendaren goialdean eta 'Freskatu' ikonoaren eskuinean aurkituko duzu. Ikonoa ez da agertuko arbelean elementurik ez badago. Ebakitzen edo kopiatzen diren elementuek ez dute kontrol-laukirik edukiko ezkerraldean, arbelean daudela esan nahi baitu horrek. Arbel-ikustailean klik egindakoan, kopiatu edo ebakitako elementuen zerrenda ikusiko duzu. - Arbel-ikustailetik, elementu horiek uneko direktorioan itsats ditzakezu. Elementuen zerrendaren goialdean bistaratzen da, hain zuzen ere, uneko direktorioa. - Besterik gabe hautatu itsatsi nahi dituzun elementuak, eta egin klik Itsatsi botoian. Elementu horiek uneko direktorioan itsatsiko dira, arbeletik kenduz aldi berean. Itsasten amaitutakoan, uneko direktoriora itzuliko zara. Elementu bat kendu nahi baduzu arbeletik, egin klik elementuetan eta sakatu Garbitu botoia. Elementuak kendu egingo dira arbeletik, eta uneko direktoriora itzuliko zara. - - - - - Fitxategi-kudeatzailea: Kargatu - Kargatu fitxategiak - - Fitxategi bat edo gehiago kargatzeko, nabigatu fitxategiak kargatu nahi dituzun direktoriora Fitxategi-kudeatzailean. Direktorio horri uneko direktorioa esaten zaio. Direktorio egokian zaudenean Fitxategi-kudeatzailean, egin klik Arakatu botoian. - Fitxategiak kargatzeko leihoa bistaratuko da. Leihoa irekitzen denean, nabigatu kargatu nahi duzun fitxategira, hautatu, eta egin klik Ados botoian. Hainbat fitxategi karga ditzakezu batera. Fitxategi-kudeatzaileak automatikoki gehituko du beste Arakatu botoi bat, fitxategi bat hautatzen duzun bakoitzean. Kargatu nahi dituzun fitxategi guztiak hautatutakoan, egin klik 'Kargatu fitxategia(k)' botoian eta hautatutako fitxategiak kargatu egingo dira Fitxategi-kudeatzaileko uneko direktorioan. - - - - - Ordenatu sarrerak - Ordenatu sarrerak - - Fitxategi edo direktorioen zerrenda bat ikustean, edozein zutaberen arabera ordena ditzakezu. Hori egiteko, egin klik ordenatzeko erabili nahi duzun zutabearen goiburuan, eta zerrenda freskatu egingo da, hautatutako zutabearen arabera ordenatuta. Goranzko edo beheranzko ordenara aldatzeko, egin klik zutabearen izenburuko geziaren ikonoan. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/eu/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/eu/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/eu/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/eu/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/eu/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/eu/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,576 +0,0 @@ -# Basque translation for gollem package. -# This file is distributed under the same license as the gollem package. -# -msgid "" -msgstr "" -"Project-Id-Version: gollem\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-10-26 23:07+0200\n" -"PO-Revision-Date: 2013-02-25 12:04+0100\n" -"Last-Translator: Edurne \n" -"Language-Team: Euskal Herriko Unibertsitatea \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Basque\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" izenaren ordez \"%s\" jarri da" - -#: quota.php:51 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%% %.2f)" - -#: manager.php:582 -#, php-format -msgid "%d item" -msgstr "%d elementu" - -#: manager.php:582 -#, php-format -msgid "%d items" -msgstr "%d elementu" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s behar bezala gorde da." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s behar bezala itsatsi da." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Honako sarbidea ukatu da: %s" - -#: lib/Gollem.php:49 lib/Gollem.php:300 lib/Gollem.php:360 lib/Gollem.php:393 -#: lib/Gollem.php:413 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "\"%s\" karpetarako sarbidea ukatua." - -#: templates/manager/manager.html:69 -msgid "Actions:" -msgstr "Ekintzak:" - -#: selectlist.php:79 -msgid "Add" -msgstr "Gehitu" - -#: templates/manager/manager.html:9 -msgid "All" -msgstr "Denak" - -#: templates/javascript_defs.php:20 -msgid "Are you sure you wish to continue?" -msgstr "Ziur zaude jarraitu nahi duzula?" - -#: templates/javascript_defs.php:18 -msgid "Are you sure?" -msgstr "Ziur zaude?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Gorantz" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Galdetu" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Euskarri-modulua" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Euskarri-moduluak" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "Behean dago arbeleko uneko edukia." - -#: clipboard.php:24 manager.php:286 selectlist.php:81 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "Utzi" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Ezin da egin chmod %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Ezin dira kopiatu elementuak arbelean." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Ezin da sortu direktorio nagusia: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Ezin dira ebaki elementuak arbelera." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Ezin da itsatsi \"%s\" (fitxategia arbeletik kendu da): %s" - -#: manager.php:321 templates/javascript_defs.php:15 -msgid "Change Folder" -msgstr "Aldatu karpeta" - -#: templates/manager/manager.html:71 -msgid "Change Permissions" -msgstr "Aldatu baimenak" - -#: lib/Gollem.php:653 -msgid "Change Server" -msgstr "Aldatu zerbitzaria" - -#: lib/Application.php:224 -msgid "Check Quota" -msgstr "Egiaztatu kuota" - -#: manager.php:578 -msgid "Check _All/None" -msgstr "Egiaztatu _guztiak/bat ere ez" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Chmod eginda: " - -#: lib/Prefs/Special/Columnselect.php:53 -msgid "Choose which columns to display, and in what order:" -msgstr "Aukeratu zein zutabe bistaratuko diren eta zein ordenatan:" - -#: clipboard.php:25 templates/manager/manager.html:93 -msgid "Clear" -msgstr "Garbitu" - -#: clipboard.php:53 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "Arbela" - -#: quota.php:26 -msgid "Close" -msgstr "Itxi" - -#: lib/Prefs/Special/Columnselect.php:57 -msgid "Columns that will not be displayed:" -msgstr "Bistaratuko ez diren zutabeak:" - -#: clipboard.php:28 templates/manager/manager.html:74 -msgid "Copy" -msgstr "Kopiatu" - -#: manager.php:314 templates/javascript_defs.php:16 -msgid "Create Folder" -msgstr "Sortu karpeta" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Baimen hutsak sortu dira honentzat: \"%s\". Orain esplizituki eman behar " -"duzu euskarri-modulu honetarako sarbidea." - -#: templates/clipboard/clipboard.html:21 -msgid "Current directory:" -msgstr "Uneko direktorioa:" - -#: clipboard.php:27 templates/manager/manager.html:76 -msgid "Cut" -msgstr "Ebaki" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Ordenatze-irizpide lehenetsia:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Ordenatze-noranzko lehenetsia:" - -#: templates/manager/manager.html:80 -msgid "Delete" -msgstr "Ezabatu" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Ezabatu karpetak errekurtsiboki?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Beherantz" - -#: selectlist.php:80 -msgid "Done" -msgstr "Eginda" - -#: manager.php:450 -#, php-format -msgid "Download %s" -msgstr "Deskargatu %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "ERROREA:" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "Editatu %s" - -#: templates/manager/manager.html:24 -msgid "Execute" -msgstr "Exekutatu" - -#: templates/javascript_defs.php:21 templates/manager/manager.html:168 -msgid "File" -msgstr "Fitxategia" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Fitxategi-ekintzak" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Fitxategi-bistaratzea" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Fitxategi-aldaketaren ordua" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Fitxategi-izena" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Fitxategi-tamaina" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Fitxategi mota" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Fitxategi-ekintzaren ezarpenak." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Ezabatutako fitxategia: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Fitxategiak bistaratzeko hobespenak." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Fitxategia jaso da: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Fitxategiak VFS euskarri-modulu baten barnean idatzi behar dira." - -#: templates/manager/manager.html:91 -msgid "Filter" -msgstr "Iragazkia" - -#: templates/manager/manager.html:90 -msgid "Filter:" -msgstr "Iragazkia:" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Kendutako karpeta: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Karpetak VFS euskarri-modulu baten barnean sortu behar dira." - -#: manager.php:555 templates/manager/manager.html:8 -msgid "Group" -msgstr "Taldea" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Okerreko euskarri-modulua eskatu da: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Arbelean kopiatutako elementua: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Arbelean ebakitako elementua: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "elementu orriko" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "Hizkuntza" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Karpetak zerrendatu lehendabizi?" - -#: manager.php:527 -msgid "Modified" -msgstr "Aldatuta" - -#: manager.php:501 -msgid "Name" -msgstr "Izena" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Sortutako karpeta berria: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Ez" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "Ez da kuotarik aurkitu." - -#: manager.php:287 -msgid "OK" -msgstr "Ados" - -#: manager.php:549 templates/manager/manager.html:7 -msgid "Owner" -msgstr "Jabea" - -#: clipboard.php:26 -msgid "Paste" -msgstr "Itsatsi" - -#: manager.php:543 -msgid "Permission" -msgstr "Baimena" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Baimena ukatu da, %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Baimena ukatu da karpeta honetarako: \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Euskarri-modulu honetarako baimena ukatu da." - -#: templates/javascript_defs.php:22 -msgid "Permissions" -msgstr "Baimenak" - -#: templates/javascript_defs.php:12 -msgid "Please provide your password." -msgstr "Idatzi pasahitza." - -#: templates/javascript_defs.php:11 -msgid "Please provide your username." -msgstr "Idatzi erabiltzaile-izena." - -#: templates/javascript_defs.php:24 -msgid "Please select an item before this action." -msgstr "Hautatu elementu bat ekintza honen aurretik." - -#: templates/javascript_defs.php:25 -msgid "Please specify at least one file to upload." -msgstr "Zehaztu kargatzeko fitxategi bat gutxienez." - -#: quota.php:59 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "Kuota-bistaratzea" - -#: templates/manager/manager.html:12 -msgid "Read" -msgstr "Irakurri" - -#: manager.php:292 -msgid "Refresh" -msgstr "Freskatu" - -#: templates/javascript_defs.php:23 templates/manager/manager.html:83 -msgid "Rename" -msgstr "Aldatu izena" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Ez da onartzen euskarri-moduluen artean izenak aldatzea." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Ez da onartzen euskarri-moduluei izena aldatzea." - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "Berrezarri" - -#: manager.php:285 templates/edit/edit.inc:11 -msgid "Save" -msgstr "Gorde" - -#: clipboard.php:47 templates/clipboard/clipboard.html:28 -msgid "Select All" -msgstr "Hautatu dena" - -#: clipboard.php:48 -msgid "Select None" -msgstr "Ez hautatu bat ere" - -#: lib/Prefs/Special/Columnselect.php:55 -msgid "Select a backend:" -msgstr "Hautatu euskarri-modulu bat:" - -#: templates/login/login.html:31 -msgid "Server" -msgstr "Zerbitzaria" - -#: manager.php:305 manager.php:407 -msgid "Share Folder" -msgstr "Partekatu karpeta" - -#: manager.php:407 -msgid "Shared Folder" -msgstr "Karpeta partekatua" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Erakutsi dot fitxategiak? " - -#: manager.php:535 -msgid "Size" -msgstr "Tamaina" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Ezin da ezabatu aplikazioaren karpeta." - -#: templates/javascript_defs.php:19 -msgid "The following item(s) are folders:" -msgstr "Elementu hauek karpetak dira:" - -#: templates/javascript_defs.php:17 -msgid "The following items will be permanently deleted:" -msgstr "Elementu hauek betiko borratuko dira:" - -#: templates/javascript_defs.php:28 -msgid "The original opener window has been closed. Exiting." -msgstr "Jatorrizko hasierako leihoa itxi egin da. Irteten." - -#: selectlist.php:176 templates/manager/manager.html:102 -msgid "There are no files in this folder." -msgstr "Ez dago fitxategirik karpeta honetan." - -#: lib/Prefs/Special/Columnselect.php:54 -msgid "These columns will display in this order:" -msgstr "Zutabe hauek ordena honetan bistaratuko dira:" - -#: templates/clipboard/clipboard.html:17 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Kendu elementuak arbeletik, hautatu fitxategi-izenaren ondoko koadroa eta " -"egin klik "Garbitu" botoian." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Elementuak itsasteko arbeletik uneko direktoriora, hautatu fitxategi-" -"izenaren ondoko koadroa eta egin klik "Itsatsi" botoian." - -#: manager.php:493 -msgid "Type" -msgstr "Mota" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Ezin da sortu Gollem saioa" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Ezin da sortu euskarri-moduluaren baimena: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Ezin da ezabatu %s fitxategia: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Ezin da ezabatu %s karpeta: %s" - -#: lib/Gollem.php:617 lib/Gollem.php:627 -#, php-format -msgid "Up to %s" -msgstr "Honaino: %s" - -#: manager.php:310 -msgid "Upload File(s)" -msgstr "Kargatu fitxategia(k)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Erabiltzailearen interfazea" - -#: manager.php:296 -msgid "View Clipboard" -msgstr "Ikusi arbela" - -#: templates/manager/manager.html:18 -msgid "Write" -msgstr "Idatzi" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Bai" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Ez duzu karpeta hau partekatzeko baimenik" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Gutxienez euskarri-modulu bat eduki behar duzu definituta baimenak ezartzeko." - -#: lib/Gollem.php:651 lib/Gollem.php:654 -msgid "_Change Server" -msgstr "_Aldatu zerbitzaria" - -#: lib/Application.php:211 -msgid "_My Home" -msgstr "_Nire direktorio nagusia" - -#: lib/Application.php:214 -msgid "_Permissions" -msgstr "_Baimenak" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/fi/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/fi/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/fi/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/fi/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - - - Tiedostohallinta: Toiminnot - Hakemistojen luonti - - Luodaksesi alihakemiston nykyiseen hakemistoon, valitse "Luo hakemisto" toimto alasvetovalikosta. - - Tiedostojen poisto, leikkaus, kopiointi ja liitäminen - - Jotta voisit poistaa, leikata, kopioida tiedoston tai tiedostoja, niin sinun pitää valita ainakin yksi tiedosto. - Kun olet valinnut yhden tai useamman tiedoston rastittamalla valintalaatikot objektin vasemmalla puolella, voit alasvetovalikosta valita yhden seuraavista toiminnoista "Leikkaa objekteja", "Kopioi objekteja" tai "Poista objektit". Jos valitset "Leikkaa objekti" tai "Kopioi objekti", niin tämän jälkeen voit liittää objektin muuhun paikkaan tiedostonhallinnassa. Kun haluat liittää objektin, niin siirry valitsemaasi kohteeseen ja valitse tämän jälkeen toiminnot alasvetovalikosta "Liitä objekti". Tämän jälkeen objektit ovat joko siirtyneet (Leikkaa objekti) tai kopioituneet (Kopioi objekti) valitsemaasi kohteeseen. - - Hakemistojen poisto, leikkaus, kopiointi ja liitäminen - Delete, cut, copy and paste directories - - Oletuksena voit poistaa hakemiston vain jos se on tyhjä. On kuitenkin mahdollista poistaa ei-tyhjä hakemisto jos valitset asetuksen "Poista hakemistot rekursiivisesti". Jos yrität poistaa ei-tyhjää hakemistoa ilman että sinulla on päällä em. asetus, niin poistaminen epäonnistuu virheilmoituksen kera. Jos haluat poistaa ei-tyhjiä hakemistoja, niin valitse laita asetuksista päälle asetus "Poista hakemistot rekursiivisesti.". - Poistaaksesi, leikataksesi tai kopioidaksesi hakemistoja, sinun pitää valita ainakin yksi hakemisto. - Kun olet valinnut yhden tai useamman hakemiston rastittamalla valintalaatikon hakemiston vasemmalla puolella, voit alasvetovalikosta valita yhden seuraavista toiminnoista "Leikkaa objekteja", "Kopioi objekteja" tai "Poista objektit". Jos valitset "Leikkaa objekti" tai "Kopioi objekti", niin tämän jälkeen voit liittää objektin muuhun paikkaan tiedostonhallinnassa. Kun haluat liittää objektin, niin siirry valitsemaasi kohteeseen ja valitse tämän jälkeen toiminnot alasvetovalikosta "Liitä objekti". Tämän jälkeen objektit ovat joko siirtyneet (Leikkaa objekti) tai kopioituneet (Kopioi objekti) valitsemaasi kohteeseen. - - - Työskentely leikepöydällä - - Kun olet kopioinut tai leikannut tiedoston tai hakemiston, niin se laitetaan leikepöydälle. Voit tarkastella leikepöydän sisältöä napsauttamalla leikepöydän kuvaketta, joka sijaitsee hakemistolistauksen yläpuolella oikealla päivitä ikonista. Tämä ikoni on näkyvissä vain jos leikepöydällä on objekteja. Jos objektin vieressä ei ole valintalaatikkoa, niin se tarkoittaa, että nämä objektit on jo leikepöydällä. Kun napsautat auki leikepöydän, niin näet listan objekteista, jotka on sinne kopioitu. Voit tästä listasta valita haluamasi objektit ja liittää ne nykyiseen hakemistoon. Palaat automaattisesti takaisin nykyiseen hakistoon kun liittäminen on onnistunut. Jos haluat poistaa jonkun objektin leikepöydältä, niin valitse objekti ja napsauta poista. Kun poistaminen on onnistunut, niin palaat takaisin nykyiseen hakemistoon. - - - - Tiedostohallinta: Tuonti - Tiedostojen tuonti - - Tuodaksesi tiedoston tai tiedostoja, niin mene ensin siihen hakemistoon johon haluat tuoda tiedostot. Tämä valitsemasi hakemisto on nykyinen hakemistosi. Kun tiedostonhallinnassa oikeassa hakemistossa, niin napsauta "Browse" -painiketta ja tiedoston tuonti -ikkunan pitäisi aueta. Kun ikkuna on auki ja näkyvissä valitse tuotava tiedosto ja napsauta OK-painiketta. Voit myös tuoda useampia tiedostoja kerrallaan, joka kerta kun olet valinnut yhden tiedoston, niin ilmestyy uusi "Browse" -painike. Kun olet valinnut kaikki tuotavat tiedostot, niin napsauta "Tuo tiedostot" -painiketta ja valitsemasi tiedostot tuodaan tiedostohallinnan nykyiseen hakemistoon. - - - - Objektien järjestäminen - Objektien järjestäminen - - Kun katsot tiedostolistausta tai hakemistoja, niin voit järjestää ne mikä sarakkeen mukaan tahansa. Valitse vain haluttu sarake napsauttamalla sarakkeen otsikkoa ja lista järjestetään sen mukaan. Voit valita nousevan ja laskevan järjestyksen napsauttamalla nuoli ikonia sarakkeen otsikossa. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/fi/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/fi/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/fi/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/fi/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/fi/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/fi/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,580 +0,0 @@ -# Finnish translation for Gollem. -# This file is distributed under the same license as the Gollem package. -# Copyright -# Leena Heino , 2005-2012. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 2.0-git\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-10-26 23:07+0200\n" -"PO-Revision-Date: 2012-10-28 21:01:27+0200\n" -"Last-Translator: Leena Heino \n" -"Language-Team: Finnish \n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8-bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" uudelleennimettiin \"%s\"" - -#: quota.php:51 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:582 -#, php-format -msgid "%d item" -msgstr "%d objekti" - -#: manager.php:582 -#, php-format -msgid "%d items" -msgstr "%d objektia" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s tallennus onnistui." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s liittäminen onnistui." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "%s pääsy estetty" - -#: lib/Gollem.php:49 lib/Gollem.php:300 lib/Gollem.php:360 lib/Gollem.php:393 -#: lib/Gollem.php:413 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Pääsy kansioon \"%s\" on estetty." - -#: templates/manager/manager.html:69 -msgid "Actions:" -msgstr "Toiminnot:" - -#: selectlist.php:79 -msgid "Add" -msgstr "Lisää" - -#: templates/manager/manager.html:9 -msgid "All" -msgstr "Kaikki" - -#: templates/javascript_defs.php:20 -msgid "Are you sure you wish to continue?" -msgstr "Oletko varma että haluat jatkaa?" - -#: templates/javascript_defs.php:18 -msgid "Are you sure?" -msgstr "Oletko varma?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Nouseva" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Kysy" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Taustajärjestelmä" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Taustajärjestelmät" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "Alla on leikepöydän nykyinen sisältö." - -#: clipboard.php:24 manager.php:286 selectlist.php:81 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "Peru" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Ei voi suorittaa chmod %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Ei voi kopioida objekteja leikepöydälle." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Ei voi luoda kotihakemistoa: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Ei voi leikata objekteja leikepöydälle." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Ei voi liittää \"%s\" (tiedosto on poistettu leikepöydältä: %s" - -#: manager.php:321 templates/javascript_defs.php:15 -msgid "Change Folder" -msgstr "Vaihda hakemistoa" - -#: templates/manager/manager.html:71 -msgid "Change Permissions" -msgstr "Muuta oikeuksia" - -#: lib/Gollem.php:653 -msgid "Change Server" -msgstr "Vaihda palvelinta" - -#: lib/Application.php:224 -msgid "Check Quota" -msgstr "Tarkista kiintiö" - -#: manager.php:578 -msgid "Check _All/None" -msgstr "Valitse _kaikki/ei mitään" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Chmod suoritettu: " - -#: lib/Prefs/Special/Columnselect.php:53 -msgid "Choose which columns to display, and in what order:" -msgstr "Valitse mitkä sarakkeet näytetään ja missä järjestyksessä:" - -#: clipboard.php:25 templates/manager/manager.html:93 -msgid "Clear" -msgstr "Tyhjennä" - -#: clipboard.php:53 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "Leikepöytä" - -#: quota.php:26 -msgid "Close" -msgstr "Sulje" - -#: lib/Prefs/Special/Columnselect.php:57 -msgid "Columns that will not be displayed:" -msgstr "Sarakkeet, joita ei näytetä:" - -#: clipboard.php:28 templates/manager/manager.html:74 -msgid "Copy" -msgstr "Kopioi" - -#: manager.php:314 templates/javascript_defs.php:16 -msgid "Create Folder" -msgstr "Luo hakemisto" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Luotiin tyhjä oikeus - \"%s\". Sinun pitää erikseen antaa oikeudet tälle " -"taustajärjestelmälle." - -#: templates/clipboard/clipboard.html:21 -msgid "Current directory:" -msgstr "Nykyinen hakemisto:" - -#: clipboard.php:27 templates/manager/manager.html:76 -msgid "Cut" -msgstr "Leikkaa" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Oletusjärjestys:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Oletusjärjestyksensuunta:" - -#: templates/manager/manager.html:80 -msgid "Delete" -msgstr "Poista" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Poista hakemistot rekursiivisesti." - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Laskeva" - -#: selectlist.php:80 -msgid "Done" -msgstr "Valmis" - -# php-format -#: manager.php:450 -#, php-format -msgid "Download %s" -msgstr "Tallenna %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "VIRHE:" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "Muokkaa %s" - -#: templates/manager/manager.html:24 -msgid "Execute" -msgstr "Suorita" - -#: templates/javascript_defs.php:21 templates/manager/manager.html:168 -msgid "File" -msgstr "Tiedosto" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Tiedostotoiminnot" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Tiedostonäkymä" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Tiedoston muokkauspäivämäärä" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Tiedoston nimi" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Tiedoston koko" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Tiedoston tyyppi" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Tiedostotoimintojen asetukset." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Tiedosto poistettiin: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Tiedstojen näyttämisen asetukset." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Tiedosto vastaanotettiin: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Tiedostot pitää kirjoittaa VFS-taustajärjestään." - -#: templates/manager/manager.html:91 -msgid "Filter" -msgstr "Suodatin" - -#: templates/manager/manager.html:90 -msgid "Filter:" -msgstr "Suodatin:" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Kansio poistettiin: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Kansiot pitää tehdä VFS-taustajärjestelmään." - -#: manager.php:555 templates/manager/manager.html:8 -msgid "Group" -msgstr "Ryhmä" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Epäkelpo taustajärjestelmäpyyntö: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Objekti kopioitiin leikepöydälle: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Objekti leikattiin leikepöydälle: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Objektia sivulla" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "Kieli" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Listaa ensin hakemistot." - -#: manager.php:527 -msgid "Modified" -msgstr "Muokattu" - -#: manager.php:501 -msgid "Name" -msgstr "Nimi" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Luotiin uusi kansio: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Ei" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "Kiintiötä ei löytynyt." - -#: manager.php:287 -msgid "OK" -msgstr "OK" - -#: manager.php:549 templates/manager/manager.html:7 -msgid "Owner" -msgstr "Omistaja" - -#: clipboard.php:26 -msgid "Paste" -msgstr "Liitä" - -#: manager.php:543 -msgid "Permission" -msgstr "Oikeus" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Käyttö estetty %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Kansion \"%s\" käyttö estetty: %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Tämän taustajärjestelmän käyttö on estetty." - -#: templates/javascript_defs.php:22 -msgid "Permissions" -msgstr "Oikeudet" - -#: templates/javascript_defs.php:12 -msgid "Please provide your password." -msgstr "Anna salasanasi." - -#: templates/javascript_defs.php:11 -msgid "Please provide your username." -msgstr "Anna käyttäjätunnuksesi." - -#: templates/javascript_defs.php:24 -msgid "Please select an item before this action." -msgstr "Valitse objekti ennen tätä toimintoa." - -#: templates/javascript_defs.php:25 -msgid "Please specify at least one file to upload." -msgstr "Valitso ainakin yksi tiedosto tuotavaksi." - -#: quota.php:59 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "Kiintiönäkymä" - -#: templates/manager/manager.html:12 -msgid "Read" -msgstr "Luku" - -#: manager.php:292 -msgid "Refresh" -msgstr "Päivitä" - -#: templates/javascript_defs.php:23 templates/manager/manager.html:83 -msgid "Rename" -msgstr "Nimeä uudelleen" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Uudelleen nimeäminen eri taustajärjestelmien välillä ei ole tuettu." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Taustajärjestelmien uudelleennimeäminen ei ole sallittu." - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "Palauta" - -#: manager.php:285 templates/edit/edit.inc:11 -msgid "Save" -msgstr "Tallenna" - -#: clipboard.php:47 templates/clipboard/clipboard.html:28 -msgid "Select All" -msgstr "Valitse kaikki" - -#: clipboard.php:48 -msgid "Select None" -msgstr "Tyhjennä valinnat" - -#: lib/Prefs/Special/Columnselect.php:55 -msgid "Select a backend:" -msgstr "Valitse taustajärjestelmä:" - -#: templates/login/login.html:31 -msgid "Server" -msgstr "Palvelin" - -#: manager.php:305 manager.php:407 -msgid "Share Folder" -msgstr "Jaa hakemisto" - -#: manager.php:407 -msgid "Shared Folder" -msgstr "Jaettu hakemisto" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Näytä pistetiedostot." - -#: manager.php:535 -msgid "Size" -msgstr "Koko" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Ohjelmakansiota ei voi poistaa." - -#: templates/javascript_defs.php:19 -msgid "The following item(s) are folders:" -msgstr "Seuraavat objektit ovat kansioissa: " - -#: templates/javascript_defs.php:17 -msgid "The following items will be permanently deleted:" -msgstr "Seuraavat objektit poistetaan lopullisesti:" - -#: templates/javascript_defs.php:28 -msgid "The original opener window has been closed. Exiting." -msgstr "Alkuperäinen aukaisuikkuna on suljettu. Poistutaan." - -#: selectlist.php:176 templates/manager/manager.html:102 -msgid "There are no files in this folder." -msgstr "Tässä hakemistossa ei ole tiedostoja." - -#: lib/Prefs/Special/Columnselect.php:54 -msgid "These columns will display in this order:" -msgstr "Nämä sarakkeet näytetään tässä järjestyksessä:" - -#: templates/clipboard/clipboard.html:17 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Poistaaksesi objekteja leikepöydältä, valitse tiedostonnimen vieressä " -"valintalaatikko ja napsauta "Tyhjennä"-painiketta." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Liittääksesi objekteja nykyisestä hakemistosta leikepöydälle, valitse " -"tiedostonnimen vieressä valintalaatikko ja napsauta "Liitä"-" -"painiketta." - -#: manager.php:493 -msgid "Type" -msgstr "Tyyppi" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Ei voida luoda Gollem-istuntoa" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Ei voida luoda taustajärjestelmäoikeutta: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Ei voi poistaa tiedostoa %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Ei voi poistaa kansiota %s: %s" - -#: lib/Gollem.php:617 lib/Gollem.php:627 -#, php-format -msgid "Up to %s" -msgstr "Ylöspäin %s" - -#: manager.php:310 -msgid "Upload File(s)" -msgstr "Tuo tiedostoja" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Käyttöliittymä" - -#: manager.php:296 -msgid "View Clipboard" -msgstr "Näytä leikepöytä" - -#: templates/manager/manager.html:18 -msgid "Write" -msgstr "Kirjoitus" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Kyllä" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Sinulla ei ole oikeusia jakaa tätä hakemistoa" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Sinulla pitää olla ainakin yksi taustajärjestelmä määriteltynä, jotta voit " -"määritellä oikeuksia." - -#: lib/Gollem.php:651 lib/Gollem.php:654 -msgid "_Change Server" -msgstr "_Vaihda palvelinta" - -#: lib/Application.php:211 -msgid "_My Home" -msgstr "_Oma koti" - -#: lib/Application.php:214 -msgid "_Permissions" -msgstr "_Oikeudet" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/fr/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/fr/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/fr/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/fr/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/fr/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/fr/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,545 +0,0 @@ -# translation of gollem to French -# Gollem 1.1-cvs French translation. -# Copyright 2001 Rémi Cohen-Scali. -# Copyright 2004 Benoit St-André -# Copyright 2005 Thierry Thomas -# Rémi Cohen-Scali , 2001. -# Benoit St-André , 2004. -# Thierry Thomas , 2005, 2007. -# Paul De Vlieger , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Gollem (3.0.0-git)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-14 09:19+0100\n" -"PO-Revision-Date: 2013-01-14 10:19+0100\n" -"Last-Translator: Paul De Vlieger \n" -"Language-Team: French \n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 1.4\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "« %s » renommé en « %s »" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMo / %.2fMo (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d élément" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d éléments" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s a été enregistré avec succès." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s a été copié avec succès." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Accès à %s refusé" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Accès refusé au dossier « %s »." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Ajouter" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Tout" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Êtes-vous réellement certain de vouloir continuer ?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Êtes-vous certain ?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Croissant" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Demander" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Partage" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Dorsaux" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Voir ci-dessous le contenu de votre presse-papiers." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Annuler" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Impossible de modifier les permissions de %s : %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Impossible de copier les éléments dans le presse-papiers" - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Impossible de créer le dossier d'accueil : %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Impossible de couper les éléments vers le presse-papiers" - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Impossible de coller « %s » (presse-papiers vidé) : %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Changer de dossier" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Changer les permissions" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Vérifier les quotas" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Vérifier _Tout/Rien" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Altération du mode (permissions) effectué : " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "" -"Choisir les champs à afficher dans le gestionnaire de fichiers, selon cet " -"ordre:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Effacer" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Presse-papiers" - -#: quota.php:25 -msgid "Close" -msgstr "Fermer" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Colonnes non affichées:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Copier" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Créer un dossier" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Permissions vierges créées pour « %s ». Vous devez maintenant explicitement " -"attribuer des permissions sur ce module." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Répertoire courant :" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Couper" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Critère de tri par défaut :" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Ordre de tri par défaut :" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Supprimer" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Supprimer les dossiers récursivement ?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Décroissant" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Terminé" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Télécharger %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "ERREUR :" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Éditer %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Exécuter" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Fichier" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Actions" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Affichage des fichiers" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Heure de modification du fichier" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Nom du fichier" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Taille du fichier" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Type de fichier" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Paramètres d'action sur les fichiers" - -#: manager.php:100 -msgid "File deleted: " -msgstr "Fichier supprimé : " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Préférences d'affichage." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Fichier reçu : %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Les fichiers doivent être créés au sein d'un partage" - -#: manager.php:341 -msgid "Filter" -msgstr "Filtre" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Dossier supprimé : " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Les dossiers doivent être créés au sein d'un partage." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Groupe" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Partage %s invalide" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Élément copié dans le presse-papiers : %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Élément coupé vers le presse-papiers : %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Nombre d'éléments par page" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Afficher les dossiers en premier ?" - -#: manager.php:540 -msgid "Modified" -msgstr "Modifié" - -#: manager.php:514 -msgid "Name" -msgstr "Nom" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Nouveau dossier créé : " - -#: config/prefs.php:96 -msgid "No" -msgstr "Non" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Pas de quota trouvé." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Propriétaire" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Coller" - -#: manager.php:556 -msgid "Permission" -msgstr "Droits d'accès" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Accès refusé à %s : %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Accès refusé au dossier « %s » : %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Accès refusé à ce partage." - -#: manager.php:612 -msgid "Permissions" -msgstr "Droits d'accès" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Veuillez sélectionner un élément avant d'exécuter cette action." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Veuillez indiquer au moins un fichier à envoyer." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Affichage du quota" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Lire" - -#: manager.php:287 -msgid "Refresh" -msgstr "Actualiser" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Renommer" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Impossible de renommer un partage" - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Impossible de renommer un partage" - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Réinitialiser" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Enregistrer" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Tout sélectionner" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Sectionner Aucun" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Veuillez choisir un partage :" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Partager le dossier" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Dossier partagé" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Afficher les fichiers cachés?" - -#: manager.php:548 -msgid "Size" -msgstr "Taille" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Dossier Principal" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Le dossier ne peut pas être supprimé." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Les éléments suivants sont des dossiers :" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Les éléments suivants seront supprimés définitivement :" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "La fenêtre de départ s'est fermée. Sortie." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Il n'y a aucun fichier dans ce dossier." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Les colonnes vont s'afficher dans cet ordre :" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Pour retirer des éléments du presse-papiers, cochez la case à coté du nom du " -"fichier et cliquez sur « Effacer »." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Pour copier des éléments du presse-papiers vers le répertoire courant, " -"cochez la case à coté du nom du fichier et cliquez sur « Coller »." - -#: manager.php:506 -msgid "Type" -msgstr "Type" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Impossible de créer la session Gollem : %s" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Impossible de créer le module des permissions : %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Suppression impossible du fichier %s : %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Suppression impossible du dossier %s : %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Aller à %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Envoyer fichier(s)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Interface utilisateur" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Écrire" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Oui" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Vous n'êtes pas autorisé à partager ce dossier" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Il faut avoir défini au moins un partage pour attribuer des permissions." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Permissions" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/gollem.pot php-horde-gollem-3.0.9/gollem-3.0.8/locale/gollem.pot --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/gollem.pot 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/gollem.pot 1970-01-01 00:00:00.000000000 +0000 @@ -1,530 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Gollem\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2015-12-28 17:03+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" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "" - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "" - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "" - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "" - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "" - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "" - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "" - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "" - -#: clipboard.php:24 -msgid "Clear" -msgstr "" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "" - -#: quota.php:25 -msgid "Close" -msgstr "" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "" - -#: manager.php:100 -msgid "File deleted: " -msgstr "" - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "" - -#: manager.php:341 -msgid "Filter" -msgstr "" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "" - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "" - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "" - -#: manager.php:540 -msgid "Modified" -msgstr "" - -#: manager.php:514 -msgid "Name" -msgstr "" - -#: manager.php:50 -msgid "New folder created: " -msgstr "" - -#: config/prefs.php:96 -msgid "No" -msgstr "" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "" - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "" - -#: clipboard.php:25 -msgid "Paste" -msgstr "" - -#: manager.php:556 -msgid "Permission" -msgstr "" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "" - -#: manager.php:612 -msgid "Permissions" -msgstr "" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "" - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "" - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "" - -#: manager.php:287 -msgid "Refresh" -msgstr "" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "" - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "" - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "" - -#: clipboard.php:47 -msgid "Select None" -msgstr "" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "" - -#: manager.php:548 -msgid "Size" -msgstr "" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "" - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "" - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "" - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" - -#: manager.php:506 -msgid "Type" -msgstr "" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "" - -#: lib/Gollem.php:688 lib/Gollem.php:698 -#, php-format -msgid "Up to %s" -msgstr "" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/hr/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/hr/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/hr/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/hr/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,92 +0,0 @@ - - - - - Datoteke: Akcije - Nova mapa - - Za dodavanje nove mape u kliknite na ikonu Nova mapa. Nakon unosa imena, - nova mapa se stvara unutar trenutno odabrane mape. - - Brisanje, izrezivanje, kopiranje i vraćanje datoteka - - Operacije brisanja, izrezivanja, kopiranja i vraćanja datoteka zahtijevaju - da je odabrana barem jedna datoteka. Datoteke se odabiru klikom na kućicu - ispred imena datoteke. Nakon toga je iz izbornika moguće odabrati akciju - koja će se primijeniti na odabrane datoteke. Operacije kopiranja i - izrezivanja spremaju odabrane datoteke u međuspremnik nakon čega ih je - moguće zalijepiti u neku drugu mapu. Nakon pozicioniranja u odredišnu - mapu, u međuspremniku se odaberu željene datoteke i klikne na Zalijepi. - Odabrane datoteke biti će premještene (ako su izrezane u međuspremnik) ili - kopirane (ako su kopirane u međuspremnik) u trenutnu mapu. - - Brisanje, izrezivanje, kopiranje i vraćanje mapa - - Uobičajeno se mogu brisati samo prazne mape, ali postoji mogućnost - brisanje mapa koje nisu prazne (rekurzivno brisanje). Ako ova opcija - nije uključena pokušaj brisanja mape koja nije prazna vratiti će grešku. - Da bi aktivirali ovu funkcionalnost potrebno je otići u postavke aplikacije - i za stavku Rekurzivno briši pod-mape odabrati vrijednost Da. Nakon toga - biti će moguće rekurzivno brisati sadržaj mape (zajedno sa mapom brišu se - pod-mape i datoteke koje ona sadrži). - - - - Operacije brisanja, izrezivanja, kopiranja i vraćanja mapa zahtijevaju - da je odabrana barem jedna mapa. Mape se odabiru klikom na kućicu - ispred imena mape. Nakon toga je iz izbornika moguće odabrati akciju - koja će se primijeniti na odabrane mape. Operacije kopiranja i - izrezivanja spremaju odabrane mape u međuspremnik nakon čega ih je - moguće zalijepiti u neku drugu mapu. Nakon pozicioniranja u odredišnu - mapu, u međuspremniku se odaberu željene mape i klikne na Zalijepi. - Odabrane mape biti će premještene (ako su izrezane u međuspremnik) ili - kopirane (ako su kopirane u međuspremnik) u trenutnu mapu. - - Rad sa međuspremnikom - - Izrezane ili kopirane datoteke i mape smještaju se u međuspremnik. Sadržaj - međuspremnika može se pregledati klikom na ikonu međuspremnika koja se - nalazi iznad popisa datoteka, desno od ikone za osvježavanje liste - datoteka. Ikona međuspremnika se pojavljuje samo ako međuspremnik nije - prazan. Datoteke koje su izrezane ili kopirane u međuspremnik i dalje se - nalaze u listi datoteka ali ispred njihovog imena više nema kućice za - označavanje. U sadržaju međuspremnika prikazane su sve izrezane ili - kopirane datoteke i mape. Datoteke iz međuspremnika moguće je zalijepiti u - trenutnu mapu, čije ime je prikazano iznad popisa datoteka u međuspremnika. - Odaberite datoteke koje želite zalijepiti i kliknite na Zalijepi. Odabrane - datoteke će biti premještene iz međuspremnika u trenutnu mapu. Nakon - završetka operacije prikazat će se sadržaj trenutne mape. Za brisanje - datoteka iz međuspremnika odaberite ih u sadržaju međuspremnika i kliknite - na Isprazni. Odabrane datoteke biti će vraćene u svoje originalne mape iz - kojih su kopirane u međuspremnik. - - - - - Datoteke: Prijenos - Prijenos datoteka na poslužitelj - - Za slanje jedne ili više datoteka prvo je potrebno otići u mapu u - koju će datoteke biti spremljene na poslužitelju. Kada se nalazite u - željenoj mapi kliknite na Browse. Otvorit će se dijalog za odabir - datoteka u kojemu treba pronaći i odabrati datoteku koju želite poslati sa - vašeg računala na poslužitelj. Istovremeno je moguće poslati više od jedne - datoteke. Nakon što se odabrali jednu datoteku za slanje, pojavit će se - novo polje za unos slijedeće datoteke. Kada ste odabrali sve datoteke koje - želite poslati, kliknite na Prenesi datoteke i sve odabrane datoteke biti - će poslane i spremljene u trenutnu mapu na poslužitelju. - - - - - Sortiranje - Sortiranje liste datoteka - - Prikaz liste datoteka i mapa može biti sortiran po bilo kojem polju. Da bi - sortirali listu po određenom polju kliknite na naslov stupca po kojem - želite sortirati. Popis datoteka će se ponovno prikazati sortiran po - odabranom stupcu. Smjer sortiranja može se promijeniti između uzlaznog i - silaznog klikom na ikonu strelice u naslovu stupca. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/hr/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/hr/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/hr/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/hr/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/hr/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/hr/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,577 +0,0 @@ -# Croatian translations for Gollem package. -# Copyright 2009-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Valentin Vidic , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H3 (1.1)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2011-11-04 15:10+0100\n" -"PO-Revision-Date: 2011-11-08 16:49+0200\n" -"Last-Translator: Valentin Vidic \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\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" - -#: manager.php:62 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" je preimenovan u \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "Zauzeto %.2fMB od %.2fMB (%.2f%%)" - -#: manager.php:556 -#, php-format -msgid "%d item" -msgstr "%d datoteka" - -#: manager.php:556 -#, php-format -msgid "%d items" -msgstr "%d datoteke" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s uspješno spremljen." - -#: manager.php:177 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s uspješno dodan." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Odbijen pristup datoteci %s" - -#: lib/Gollem.php:48 lib/Gollem.php:295 lib/Gollem.php:344 lib/Gollem.php:366 -#: lib/Gollem.php:386 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Odbijen pristup mapi \"%s\"." - -#: templates/manager/manager.html:110 -msgid "Actions:" -msgstr "Akcije:" - -#: selectlist.php:79 -msgid "Add" -msgstr "Dodaj" - -#: templates/manager/manager.html:11 -msgid "All" -msgstr "Sve" - -#: templates/javascript_defs.php:20 -msgid "Are you sure you wish to continue?" -msgstr "Jeste li sigurni da želite nastaviti?" - -#: templates/javascript_defs.php:18 -msgid "Are you sure?" -msgstr "Jeste li sigurni?" - -#: config/prefs.php:67 -msgid "Ascending" -msgstr "Uzlazno" - -#: config/prefs.php:97 -msgid "Ask" -msgstr "Pitaj" - -#: templates/manager/manager.html:5 -msgid "Attributes" -msgstr "Atributi" - -#: lib/Application.php:124 -msgid "Backend" -msgstr "Poslužitelj datoteka" - -#: lib/Application.php:86 -msgid "Backends" -msgstr "Poslužitelji datoteka" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "U nastavku je prikazan trenutni sadržaj međuspremnika." - -#: selectlist.php:81 manager.php:281 clipboard.php:24 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "Odustani" - -#: manager.php:82 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Nije uspjela promjena dozvola %s: %s" - -#: manager.php:152 -msgid "Cannot copy items onto clipboard." -msgstr "Nije uspjelo kopiranje datoteka u međuspremnik." - -#: manager.php:223 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Stvaranje početne mape korisnika nije uspjelo: %s" - -#: manager.php:154 -msgid "Cannot cut items onto clipboard." -msgstr "Nije uspjelo izrezivanje datoteka u međuspremnik." - -#: manager.php:179 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "" -"Nije uspjelo kopiranje iz međuspremnika \"%s\" (datoteke su već obrisane iz " -"međuspremnika): %s" - -#: manager.php:307 templates/manager/manager.html:70 -msgid "Change Folder" -msgstr "Promijeni mapu" - -#: templates/manager/manager.html:112 -msgid "Change Permissions" -msgstr "Promijeni dozvole" - -#: lib/Gollem.php:588 -msgid "Change Server" -msgstr "Promijeni poslužitelj" - -#: lib/Application.php:286 -msgid "Check Quota" -msgstr "Provjeri kvotu" - -#: manager.php:552 -msgid "Check _All/None" -msgstr "Odaberi sve/ništa" - -#: manager.php:80 -msgid "Chmod done: " -msgstr "Promjena dozvola završena: " - -#: lib/Application.php:256 -msgid "Choose which columns to display, and in what order:" -msgstr "Odaberite stupce koje želite prikazati i kojim redoslijedom:" - -#: clipboard.php:25 templates/manager/manager.html:131 -msgid "Clear" -msgstr "Isprazni" - -#: clipboard.php:44 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "Međuspremnik" - -#: quota.php:26 -msgid "Close" -msgstr "Zatvori" - -#: lib/Application.php:260 -msgid "Columns that will not be displayed:" -msgstr "Stupci koji neće biti prikazati:" - -#: clipboard.php:28 templates/manager/manager.html:115 -msgid "Copy" -msgstr "Kopiraj" - -#: manager.php:300 templates/manager/manager.html:58 -msgid "Create Folder" -msgstr "Nova mapa" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Postavljenje prazne dozvole za \"%s\". Za pristup ovom poslužitelju datoteka " -"sada je potrebno eksplicitno dozvoliti pristup." - -#: templates/clipboard/clipboard.html:21 -msgid "Current directory:" -msgstr "Trenutna mapa:" - -#: clipboard.php:27 templates/manager/manager.html:116 -msgid "Cut" -msgstr "Izreži" - -#: config/prefs.php:59 -msgid "Default sorting criteria:" -msgstr "Podrazumijevani kriterij sortiranja:" - -#: config/prefs.php:70 -msgid "Default sorting direction:" -msgstr "Podrazumijevani smjer sortiranja:" - -#: templates/manager/manager.html:119 -msgid "Delete" -msgstr "Obriši" - -#: config/prefs.php:99 -msgid "Delete folders recursively?" -msgstr "Rekurzivno briši pod-mape?" - -#: config/prefs.php:68 -msgid "Descending" -msgstr "Silazno" - -#: selectlist.php:80 -msgid "Done" -msgstr "Završeno" - -#: manager.php:427 -#, php-format -msgid "Download %s" -msgstr "Preuzmi %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "Greška:" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "Uredi %s" - -#: templates/manager/manager.html:26 -msgid "Execute" -msgstr "Izvršavanje" - -#: templates/javascript_defs.php:22 templates/manager/manager.html:201 -msgid "File" -msgstr "Datoteka" - -#: config/prefs.php:86 -msgid "File Actions" -msgstr "Akcije na datoteci" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Prikaz datoteka" - -#: config/prefs.php:56 -msgid "File Modification Time" -msgstr "Posljednja izmjena" - -#: config/prefs.php:55 -msgid "File Name" -msgstr "Ime datoteke" - -#: config/prefs.php:57 -msgid "File Size" -msgstr "Veličina datoteke" - -#: config/prefs.php:54 -msgid "File Type" -msgstr "Tip datoteke" - -#: config/prefs.php:87 -msgid "File action settings." -msgstr "Postavke akcija na datotekama." - -#: manager.php:97 -msgid "File deleted: " -msgstr "Datoteka obrisana: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Postavke prikaza datoteka." - -#: manager.php:118 -#, php-format -msgid "File received: %s" -msgstr "Datoteka primljena: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Datoteke se mogu zapisati samo na VFS poslužitelja datoteka." - -#: templates/manager/manager.html:129 -msgid "Filter" -msgstr "Filtriraj" - -#: templates/manager/manager.html:128 -msgid "Filter:" -msgstr "Filter:" - -#: manager.php:89 -msgid "Folder removed: " -msgstr "Mapa obrisana: " - -# virtual file system? pozadinske procese? -#: lib/Api.php:155 lib/Api.php:186 -msgid "Folders must be created inside a VFS backend." -msgstr "Mape se mogu napraviti samo na VFS poslužitelju datoteka." - -#: templates/manager/manager.html:72 -msgid "Go to:" -msgstr "Idi u:" - -#: manager.php:531 templates/manager/manager.html:10 -msgid "Group" -msgstr "Grupa" - -#: lib/Api.php:405 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Traženi poslužitelj datoteka ne postoji: %s" - -#: manager.php:146 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Datoteka prekopirana u međuspremnik: %s" - -#: manager.php:148 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Datoteka premještena u međuspremnik: %s" - -#: config/prefs.php:77 -msgid "Items per page" -msgstr "Broj datoteka po stranici" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "Jezik" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Prvo prikaži mape?" - -#: manager.php:501 -msgid "Modified" -msgstr "Posljednja izmjena" - -#: manager.php:479 -msgid "Name" -msgstr "Ime" - -#: templates/manager/manager.html:46 templates/manager/manager.html:60 -msgid "Name:" -msgstr "Ime:" - -#: manager.php:47 -msgid "New folder created: " -msgstr "Nova mapa napravljena: " - -#: config/prefs.php:95 -msgid "No" -msgstr "Ne" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "Kvota nije nađena." - -#: manager.php:282 -msgid "OK" -msgstr "U redu" - -#: manager.php:524 templates/manager/manager.html:9 -msgid "Owner" -msgstr "Vlasnik" - -#: clipboard.php:26 -msgid "Paste" -msgstr "Zalijepi" - -#: manager.php:517 -msgid "Permission" -msgstr "Dozvola" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Odbijen pristup datoteci %s: %s" - -#: manager.php:216 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Odbijen pristup u mapu \"%s\": %s" - -#: lib/Api.php:413 -msgid "Permission denied to this backend." -msgstr "Odbijen pristup odabranom poslužitelju datoteka." - -#: templates/javascript_defs.php:13 -msgid "Please provide your password." -msgstr "Molim unesite svoju lozinku." - -#: templates/javascript_defs.php:12 -msgid "Please provide your username." -msgstr "Molim unesite svoje korisničko ime." - -#: templates/javascript_defs.php:16 -msgid "Please select an item before this action." -msgstr "Molim odaberite datoteku prije nego odaberete akciju." - -#: templates/javascript_defs.php:21 -msgid "Please specify at least one file to upload." -msgstr "Molim odaberite barem jednu datoteku za prijenos." - -#: quota.php:57 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "Prikaz kvote" - -#: templates/manager/manager.html:14 -msgid "Read" -msgstr "Čitanje" - -#: manager.php:287 -msgid "Refresh" -msgstr "Osvježi" - -#: templates/manager/manager.html:44 templates/manager/manager.html:122 -msgid "Rename" -msgstr "Preimenuj" - -#: lib/Api.php:200 -msgid "Renaming across backends is not supported." -msgstr "Preimenovanje između poslužitelja datoteka nije podržano." - -#: lib/Api.php:194 -msgid "Renaming of backends is not allowed." -msgstr "Nije dozvoljeno mijenjati ime poslužitelja datoteka." - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "Resetiraj" - -#: manager.php:280 templates/edit/edit.inc:11 -msgid "Save" -msgstr "Spremi" - -#: clipboard.php:48 templates/clipboard/clipboard.html:28 -msgid "Select All" -msgstr "Odaberi sve" - -#: clipboard.php:49 -msgid "Select None" -msgstr "Označiti ništa" - -#: lib/Application.php:258 -msgid "Select a backend:" -msgstr "Odaberite poslužitelj datoteka:" - -#: templates/login/login.html:31 -msgid "Server" -msgstr "Poslužitelj" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Prikaži skrivene datoteke?" - -#: manager.php:509 -msgid "Size" -msgstr "Veličina" - -#: lib/Api.php:229 -msgid "The application folder can not be deleted." -msgstr "Aplikacijska mapa se ne može obrisati." - -#: templates/javascript_defs.php:19 -msgid "The following item(s) are folders:" -msgstr "Slijedeće stavke su mape:" - -#: templates/javascript_defs.php:17 -msgid "The following items will be permanently deleted:" -msgstr "Slijedeće datoteke biti će nepovratno obrisane:" - -#: templates/javascript_defs.php:25 -msgid "The original opener window has been closed. Exiting." -msgstr "Originalni početni prozor je zatvoren. Završavam s radom." - -#: selectlist.php:176 templates/manager/manager.html:140 -msgid "There are no files in this folder." -msgstr "U ovoj mapi nema datoteka." - -#: lib/Application.php:257 -msgid "These columns will display in this order:" -msgstr "Stupci će biti prikazani slijedećim redoslijedom:" - -#: templates/clipboard/clipboard.html:17 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Za brisanje datoteka iz međuspremnika odaberite kućicu pored imena datoteke " -"i kliknite na "Isprazni"." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Za kopiranje datoteke iz međuspremnika u trenutni direktorij odaberite " -"kućicu pored imena datoteke i kliknite na "Zalijepi"." - -#: manager.php:471 -msgid "Type" -msgstr "Tip" - -#: lib/Api.php:409 -msgid "Unable to create Gollem session" -msgstr "Nije uspjelo stvaranje Gollem sjednice" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Nije uspjelo dodavanje dozvola na poslužitelj datoteka: %s" - -#: manager.php:99 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Nije uspjelo brisanje datoteke %s: %s" - -#: manager.php:91 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Nije uspjelo brisanje mape %s: %s" - -#: lib/Gollem.php:552 lib/Gollem.php:562 -#, php-format -msgid "Up to %s" -msgstr "Povratak u %s" - -#: manager.php:296 -msgid "Upload File(s)" -msgstr "Prenesi datoteke" - -#: config/prefs.php:14 config/prefs.php:85 -msgid "User Interface" -msgstr "Korisničko sučelje" - -#: manager.php:291 -msgid "View Clipboard" -msgstr "Pregledaj međuspremnik" - -#: templates/manager/manager.html:20 -msgid "Write" -msgstr "Pisanje" - -#: config/prefs.php:96 -msgid "Yes" -msgstr "Da" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Da bi postavili dozvole mora biti definiran bar jedan poslužitelj datoteka." - -#: lib/Gollem.php:586 lib/Gollem.php:589 -msgid "_Change Server" -msgstr "Promijeni poslužitelj" - -#: lib/Application.php:273 -msgid "_My Home" -msgstr "_Početna" - -#: lib/Application.php:276 -msgid "_Permissions" -msgstr "_Dozvole" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/.htaccess php-horde-gollem-3.0.9/gollem-3.0.8/locale/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/.htaccess 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/.htaccess 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - Require all denied - - - Deny from all - diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/hu/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/hu/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/hu/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/hu/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,130 +0,0 @@ - - - - Fájl menedzser: Műveletek - Mappák létrehozása - - Ha új almappát kívánunk létrehozni a jelenlegi mappán belül, válasszuk az 'Új mappa - létrehozása' funkciót a 'Műveletek' legördülő menüből. - - Fájlok törlése, vágóasztalra való áthelyezése, másolása ill. onnan történő - beillesztése - - Ezekhez a műveletekhez először ki kell jelölnie legalább egy fájlt. Miután a fájlok - bal oldalán levő kis négyzetekben megjelölte a megfelelőket, válassza ki a megfelelő - funkciót a 'Műveletek' legördülő menüből. Ha az 'Áthelyezés a vágóasztalra' vagy a - 'Másolás a vágóasztalra' műveletet választotta, akkor megjelenik a - 'Beillesztés a vágóasztalról' funkció. Keresse meg azt a mappát ahova be kívánja - illeszteni a fájlokat, majd válassza ki a 'Beillesztés a vágóasztalról' funkciót - a 'Műveletek' legördülő menüből. A korábban kiválasztott fájlok vagy átkerülnek - (áthelyzezés esetén) vagy átmásolódnak (másolás esetén) az új mappába. - - Mappák törlése, vágóasztalra való áthelyezése, másolása ill. onnan történő - beillesztése - - Alapértelmezett beállítás esetén csak olyan mappákat törölhet, melyek üresek, bár - az opciókban beállíthatja a nemüres mappák (rekurzív) törölhetőségét. Enélkül viszont - ha megkísérel kitörölni egy nemüres mappát, akkor ez nem fog sikerülni, hibajelzést - kap. A nemüres mappák rekurzív törléséhez kattintson az Opciókra, majd itt a - Beállítások pontra, ahol már beállítható a kívánt lehetőség. - Ha mappákat kíván törölni, áthelyezni, vagy másolni, akkor először válasszon ki - legalább egy mappát. Miután a mappák bal oldalán levő kis négyzetekben megjelölte - a megfelelőket, válassza ki a megfelelő funkciót a 'Műveletek' legördülő menüből. - Ha az 'Áthelyezés a vágóasztalra' vagy a 'Másolás a vágóasztalra' műveletet - választotta, akkor megjelenik a 'Beillesztés a vágóasztalról' funkció. Keresse meg - azt a mappát ahova be kívánja illeszteni a mappákat, majd válassza ki a - 'Beillesztés a vágóasztalról' funkciót a 'Műveletek' legördülő menüből. - A korábban kiválasztott mappák vagy átkerülnek (áthelyzezés esetén) vagy - átmásolódnak (másolás esetén) az új mappába. - - - - Fájl menedzser: Feltöltés - Fájlok feltöltése - - Ha egy vagy több fájlt kíván a szerverre feltölteni, először keresse meg a Fájl - menedzserben azt a mappát, ahova az állományokat el kívánja helyezni. Ez lesz az - éppen érvényes alkönyvtár. Ezután kattintson a 'Böngészés' (Browse) gombra, majd - a felbukkanó Fájlfeltöltés (File upload) ablakban keresse meg és jelölje ki - (a saját gépén) a feltöltendő fájlt és kattintson az OK (esetleg Megnyitás/Open) - gombra. Egyszerre több fájlt is feltölthet. Minden fájlkiválasztás után a Fájl - menedzser egy újabb sorban új 'Böngészés' (Browse) gombot jelenít meg. Ezt használva - több fájl is kijelölhető feltöltésre. Miután kijelölte a feltöltendő fájl(oka)t, - kattintson a Fájlfeltöltés gombra. Erre a kijelölt állományok a szerverre fognak - kerülni, a Fájl menedzserben korábban kiválasztott mappába. - - - - Sorbarendezés - Sorbarendezés - - Az állományok listázáskor bármely oszlop szerint sorbarendezhetők. Ehhez mindössze - a megfelelő oszlop fejlécére kell kattintania. Erre a lista újra megjelenik, mégpedig - a kívánt oszlop szerinti sorrendben. Ha a sorbarendezés irányát kívánja megváltoztatni, - akkor kattintson a fejlécben levő kis háromszög alakú nyílra. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/hu/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/hu/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/hu/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/hu/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/hu/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/hu/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,539 +0,0 @@ -# Gollem Hungarian translation file. -# Copyright 2005-2008 Laszlo L. Tornoci -# This file is distributed under the same license as the Gollem package. -msgid "" -msgstr "" -"Project-Id-Version: Gollem H5 (3.0.4-git)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2014-08-12 10:34+0200\n" -"Last-Translator: Andras Galos \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "A \"%s\" állományt átneveztük erre: \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d fájl" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d állomány" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s sikeresen elmentve." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s-t sikeresen beillesztettük." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "%s eléréséhez nem rendelkezik megfelelő jogosultsággal." - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "" -"A(z) %s mappába való belépéshez nem rendelkezik megfelelő jogosultsággal." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Bevitel" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Mindenki" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Biztos, hogy folytatni kívánja?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Biztos ebben?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "növekvő" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Kérdezzen meg a gép" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Tároló" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Tároló alrendszerek" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Alább látható a vágóasztal jelenlegi tartalma." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Mégse" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "%s elérési jogosultságait nem sikerült megváltoztatni: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Nem sikerült az állomány(oka)t a vágóasztalra másolni." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Nem sikerült az induló alkönyvár létrehozása: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Nem sikerült az állomány(oka)t a vágóasztalra áttenni." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Nem sikerült \"%s\"-t beilleszteni (a vágóasztal üres): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Mappaváltás" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Jogosultságok módosítása" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Ellenőrizzük a kvótát" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Mind/egyik sem kijelölése" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Az elérési jogosultságokat megváltoztattuk: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Mely mezők, és milyen sorrendben való megjelenítése:sorrendben:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Törlés" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Vágóasztal" - -#: quota.php:25 -msgid "Close" -msgstr "Bezárás" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Rejtett mezők:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Másoljuk át" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Új mappa létrehozása" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"\"%s\" számára nincsenek meghatározva az elérési jogosultságok. Ezeket most " -"közvetlenül meg kell adnia." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "A jelenlegi alkönyvtár:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Kivágás" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "A sorbarendezés alapértelmezés szerinti szempontja:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "A sorbarendezés alapértelmezés szerinti iránya:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Törlés" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "A mappákban levő almappák rekurzív törlése?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "csökkenő" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Kész" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Töltsük le %s-t" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "HIBA:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "%s módosítása" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Végrehajtás" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Fájl" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Fájlműveletek" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "A fájl megjelenítése" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "A fájl módosítási ideje" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Fájlnév" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Fájlméret" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Fájltípus" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Fájl műveletek." - -#: manager.php:100 -msgid "File deleted: " -msgstr "A fájlt töröltük: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Megjelenítés" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "A fájlt feltöltöttük: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "A fájlokat egy VFS alrendszeren belül kell menteni." - -#: manager.php:341 -msgid "Filter" -msgstr "Szűrő" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "A mappát töröltük:" - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "A mappákat egy VFS alrendszeren belül kell menteni." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Csoport" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Érvénytelen tároló: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Az állomány(oka)t a vágóasztalra másoltuk: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Az állomány(oka)t a vágóasztalra tettük át: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Egy oldalon megjelenő fájlok maximális száma" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "A listában a mappák legyenek elöl?" - -#: manager.php:540 -msgid "Modified" -msgstr "Módosítva" - -#: manager.php:514 -msgid "Name" -msgstr "Név" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Az új mappát létrehoztuk: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Nem" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Nincs kvóta adat." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Tulajdonos" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Beillesztés" - -#: manager.php:556 -msgid "Permission" -msgstr "Jogosultság" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "A hozzáférés megtagadva %s-hez: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "A hozzáférés megtagadva \"%s\" mappához: %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Hozzáférés megtagadva ehhez a tárolóhoz" - -#: manager.php:612 -msgid "Permissions" -msgstr "Jogosultság" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Kérem előbb válasszon ki egy állományt." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Kérem jelöljön ki legalább egy feltöltendő fájlt." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "A kvóta adatok" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Olvasás" - -#: manager.php:287 -msgid "Refresh" -msgstr "Frissítés" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Átnevezés" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Tárolók közötti átnevezés nem támogatott." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Tárolók átnevezése nem támogatott." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Újrakezdés" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Mentés" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Mind kijelölése" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Kijelölés törlése" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Kérem válasszon egy tárolót:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Mappa megosztása" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Megosztott mappa" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Mutassuk a rejtett fájlokat?" - -#: manager.php:548 -msgid "Size" -msgstr "Méret" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Kezdő mappa" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Az alkalmazás mappája nem törölhető." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "A következő fájlok mappák:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "A következő állományok végleges törlésre kerülnek: " - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "" -"Az ablak bezárult, amiből ezt eredetileg megnyitották. Kilépés következik." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Ebben a mappában nincsenek fájlok." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Az mezőkk megjelenítési sorrendje:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Úgy törölhet egyes állományokat a vágóasztalról, hogy kijelöli a megfelelő " -"állomány(ok) neve melletti ki négyzet(ek)et, majd a Törlés gombra kattint." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Úgy illeszthet be egyes állományokat a vágóasztalról a jelenleg érvényes " -"alkönyvtárba, hogy kijelöli a megfelelő állomány(ok) neve melletti kis " -"négyzet(ek)et, majd a Beillesztés gombra kattint." - -#: manager.php:506 -msgid "Type" -msgstr "Típus" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Fájlkezelési munkamenet nem hozható létre" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "A tároló alrendszerben nem hozható létre a jogosultság: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "\"%s\" törlése nem sikerült: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "A \"%s\" mappa törlése nem sikerült: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "%s-re" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Fájlfeltöltés" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "A program használata" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Írás" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Igen" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Ön nem jogosult e mappa megosztására." - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Az elérési jogok beállítása előtt legalább egy tároló alrendszert definiálni " -"kell." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Jogosultságok" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/it/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/it/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/it/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/it/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/it/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/it/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,537 +0,0 @@ -# Gollem Italian translation. -# Copyright 2006-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Fabio Pedretti , 2008. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 1.1-cvs\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2015-08-17 17:39+0200\n" -"Last-Translator: Massimo Balestrieri \n" -"Language-Team: Horde i18n \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" rinominato in \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d voci" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d voci" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s salvato con successo." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s è stato incollato con successo." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Accesso negato a %s" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Accesso negato alla cartella \"%s\"." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Aggiungi" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Tutti" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Sei sicuro di voler continuare?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Sei sicuro?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Crescente" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Chiedi" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Backend" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Backend" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Qui sotto c'è il contenuto degli appunti." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Annulla" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Impossibile cambiare i permessi di %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Impossibile copiare gli oggetti negli appunti." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Impossibile creare la cartella principale: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Impossibile tagliare gli oggetti negli appunti." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Impossibile incollare \"%s\" (file rimosso dagli appunti): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Cambia Cartella" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Cambia Permessi" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Spazio Disponibile" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Seleziona _Tutti/Nessuno" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Chmod fatto: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Scegli le colonne da visualizzare e come ordinarle." - -#: clipboard.php:24 -msgid "Clear" -msgstr "Azzera" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Appunti" - -#: quota.php:25 -msgid "Close" -msgstr "Chiudi" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Colonne che non verranno visualizzate:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Copia" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Crea Cartella" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Permessi vuoti creati per \"%s\". Ora devi esplicitamente assegnare " -"l'accesso a questo backend." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Cartella corrente:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Taglia" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Criterio predefinito di ordinamento:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Direzione di ordinamento predefinita:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Elimina" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Cancellare tutte le sottocartelle?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Decrescente" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Fatto" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Scarica %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "ERRORE:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Modifica %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Esegui" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "File" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Azioni File" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Visualizzazione File" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Ora di modifica del file" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Nome File" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Dimensione File" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Tipo File" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Configurazioni delle azioni" - -#: manager.php:100 -msgid "File deleted: " -msgstr "File eliminato: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Preferenze di Visualizzazione" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "File ricevuto: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "I file devono essere scritti all'interno di un backend VFS." - -#: manager.php:341 -msgid "Filter" -msgstr "Filtro" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Cartella eliminata: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Le cartelle devono essere create all'interno di un backend VFS." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Gruppo" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Richiesto un backend invalido: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Oggetto copiato negli appunti: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Oggetto tagliato negli appunti: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Elementi per pagina" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Elenca prima le cartelle?" - -#: manager.php:540 -msgid "Modified" -msgstr "Modificato" - -#: manager.php:514 -msgid "Name" -msgstr "Nome" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Nuova cartella creata: " - -#: config/prefs.php:96 -msgid "No" -msgstr "No" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Limiti allo spazio disponibile non impostati." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Proprietario" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Incolla" - -#: manager.php:556 -msgid "Permission" -msgstr "Permessi" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Permesso negato a %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Permesso negato alla cartella \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Permesso negato a questo backend." - -#: manager.php:612 -msgid "Permissions" -msgstr "Permessi" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Si prega di selezionare una voce prima di questa azione." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Si prega di specificare almeno un file da caricare." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Visualizza Spazio Disponibile" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Leggi" - -#: manager.php:287 -msgid "Refresh" -msgstr "Aggiorna" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Rinomina" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Rinominare tra backend non è supportato." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Rinominare i backend non è supportato." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Resetta" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Salva" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Seleziona Tutto" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Selezione nulla" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Selezionare un backend:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Condividi Cartelle" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Cartelle Condivise" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Mostra file preceduti dal punto?" - -#: manager.php:548 -msgid "Size" -msgstr "Dimensione" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Cartella Principale" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "La cartella applicazioni non può essere eliminata." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "I seguenti oggetti sono cartelle:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "I seguenti oggetti saranno definitivamente eliminati:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "La finestra originale è stata chiusa. Uscire." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Non ci sono file in questa cartella." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Queste colonne verrano mostrate in questo ordine:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Per rimuovere oggetti dagli appunti, seleziona la casella accanto al nome " -"del file e clicca su "Rimuovi"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Per incollare oggetti dagli appunti alla cartella corrente, seleziona la " -"casella accanto al nome del file e clicca su "Incolla"." - -#: manager.php:506 -msgid "Type" -msgstr "Tipo" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Impossibile creare la sessione Gollem" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Impossibile creare permessi del backend: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Impossibile eliminare il file %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Impossibile eliminare la cartella %s: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Fino a %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Carica file" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Interfaccia Utente" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Scrivi" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Si" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Non sei abilitato a condividere questa cartella" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"E' necessario aver definito almeno un backend per impostare i permessi." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Permessi" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/ja/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/ja/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/ja/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/ja/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/ja/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/ja/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,538 +0,0 @@ -# Japanese translation for Gollem. -# Copyright 2009-2013 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Hiromi Kimura -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H5 (3.0.2-git)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2014-06-08 11:18+0900\n" -"Last-Translator: Hiromi Kimura \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.6.5\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" は \"%s\" に名前が変更されました" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d アイテム" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d アイテム" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s は保存されました。" - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s は正常に送られました。" - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "%s へのアクセスが拒否されました" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "フォルダー %s へのアクセスが拒否されました。" - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "追加" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "全て" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "本当に操作を続けますか?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "本当ですか?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "昇順" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "尋ねる" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "バックエンド" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "バックエンド" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "以下がクリップボードの内容です。" - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "取り消し" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "%s を chmod できません:%s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "クリップボードにコピーできません。" - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "ホームディレクトリを作成できません:%s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "クリップボードに移動できません。" - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "\"%s\" が貼り付けられません(クリップボードからクリアされました): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "フォルダの変更" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "権限の変更" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "クォータ確認" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "_A全て選択/解除" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Chmod 完了:" - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "どの欄をどの順序で表示するかを選択:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "クリア" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "クリップボード" - -#: quota.php:25 -msgid "Close" -msgstr "閉じる" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "表示させない欄:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "コピー" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "フォルダ作成" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"\"%s\" への空の権限を作成しました。このバックエンドでのアクセス許可を今すぐ指" -"定して下さい。" - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "現在のディレクトリ:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "切り取り" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "デフォルトのソート基準:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "デフォルトのソート方向:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "削除" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "フォルダの階層を削除しますか?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "降順" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "完了" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "ダウンロード %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "エラー:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "%s を編集" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "実行" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "ファイル" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "ファイル動作" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "ファイル表示" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "ファイルの更新日時" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "ファイルの名前" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "ファイルの大きさ" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "ファイルの種類" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "ファイル動作の設定をします。" - -#: manager.php:100 -msgid "File deleted: " -msgstr "ファイルは削除されました:" - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "ファイル表示の設定をします。" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "ファイルを受け取りました: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "ファイルは VFS バックエンドの内側に書かれなければなりません。" - -#: manager.php:341 -msgid "Filter" -msgstr "フィルタ" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "フォルダを削除しました:" - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "フォルダは VFS バックエンドの内側に作成しなければなりません。" - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "グループ" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "無効なバックエンドが要求されました:%s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "クリップボードにコピーされました: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "クリップボードに移動しました: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "1ページの項目数" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "フォルダを最初に表示しますか?" - -#: manager.php:540 -msgid "Modified" -msgstr "変更日" - -#: manager.php:514 -msgid "Name" -msgstr "名前" - -#: manager.php:50 -msgid "New folder created: " -msgstr "新しいフォルダが作成されました:" - -#: config/prefs.php:96 -msgid "No" -msgstr "いいえ" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "クォータが確認できません。" - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "所有者" - -#: clipboard.php:25 -msgid "Paste" -msgstr "貼り付け" - -#: manager.php:556 -msgid "Permission" -msgstr "権限" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "%s へのアクセスが拒否されました:%s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "フォルダー \"%s\" へのアクセスが拒否されました:%s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "このバックエンドへのアクセスが拒否されました。" - -#: manager.php:612 -msgid "Permissions" -msgstr "権限" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "先ずアイテムを選択して下さい。" - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "少なくとも1つのファイルを指定して下さい。" - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "クォータ表示" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "読み出し" - -#: manager.php:287 -msgid "Refresh" -msgstr "再表示" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "名前変更" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "バックエンド間の名前の変更はサポートされていません。" - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "バックエンドの名前の変更は許可されていません。" - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "リセット" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "保存" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "全て選択" - -#: clipboard.php:47 -msgid "Select None" -msgstr "どれも選択しない" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "バックエンドを選択:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "フォルダを共有" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "共有フォルダ" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "ドットで始まるファイルを表示しますか?" - -#: manager.php:548 -msgid "Size" -msgstr "サイズ" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "先頭フォルダ" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "アプリケーションフォルダは削除できません。" - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "以下の項目はフォルダーです:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "以下のアイテムは完全に削除されます:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "元のウインドーが閉じられました。終了します。" - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "このフォルダにファイルはありません。" - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "これらの欄はこの順に表示されます:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"クリップボードからアイテムをクリアするには、以下から選択し、「クリア」をク" -"リックして下さい。" - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"クリップボードから現在のディレクトリに貼り付けるには、以下から選択し、「貼り" -"付け」をクリックして下さい。" - -#: manager.php:506 -msgid "Type" -msgstr "種類" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Gollem のセッションを作成できません" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "バックエンドの権限が作成できません:%s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "ファイル %s を削除できません: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "フォルダ %s を削除できません: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "上の %s へ" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "ファイルをアップロード" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "ユーザインターフェイス" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "書き込み" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "はい" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "あなたはこのフォルダーの共有を許可されていません" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"権限を設定するには少なくとも1つのバックエンドを定義する必要があります。" - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_P権限" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/ko/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/ko/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/ko/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/ko/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/ko/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/ko/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,318 +0,0 @@ -# Gollem Korean translation. -# Copyright 2001 J.I Kim. -# J.I Kim , 2001. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 0.0.1-cvs\n" -"POT-Creation-Date: 2001-12-31 13:59+0900\n" -"PO-Revision-Date: 2001-11-09 16:29+0900\n" -"Last-Translator: J.I Kim \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid " to: " -msgstr "의 파일이름 변경:" - -#, c-format -msgid "%d items in %s" -msgstr "%d 항목 (%s)" - -#, c-format -msgid "%s renamed to %s" -msgstr "%s는 %s로 이름 변경되었습니다." - -msgid "Note: These settings won't take effect until your next login." -msgstr "참조: 이 설정값은 다음 로그인시에 반영됩니다." - -msgid "An illegal value was specified." -msgstr "잘못된 값입니다." - -msgid "Are you sure?" -msgstr "확실합니까?" - -msgid "Ascending" -msgstr "오름차순" - -#, c-format -msgid "Cannot chmod %s" -msgstr "%s의 접근설정을 변경할 수 없습니다." - -#, c-format -msgid "Cannot delete %s" -msgstr "%s를 삭제할 수 없습니다." - -msgid "Change your file sorting options." -msgstr "파일 정렬 옵션 변경" - -msgid "Checkbox" -msgstr "체크박스" - -msgid "Chmod Items" -msgstr "접근설정값 변경" - -msgid "Chmod done: " -msgstr "접근설정값 변경 완료: " - -msgid "Choose Action:" -msgstr "명령어 선택:" - -msgid "Create Folder" -msgstr "새로운 폴더 만들기" - -msgid "Default sorting criteria:" -msgstr "기본 정렬 범주:" - -msgid "Default sorting direction:" -msgstr "기본 정렬 방향:" - -msgid "Delete Items" -msgstr "파일 삭제" - -msgid "Descending" -msgstr "내림차순" - -msgid "Directory removed: " -msgstr "디렉토리 삭제: " - -msgid "Display Options" -msgstr "화면 출력 옵션" - -msgid "" -"Either you have logged in incorrectly or your login has expired. Please " -"login again." -msgstr "" -"정확하게 로그인하지 않았거나 로그인이 만료 되었습니다. 다시 로그인하세요." - -msgid "Error creating new folder: " -msgstr "새로운 폴더 만들기 오류: " - -msgid "Error renaming: " -msgstr "파일 이름 변경 오류: " - -msgid "Error uploading file: " -msgstr "파일 업로드 오류: " - -msgid "Error" -msgstr "오류" - -msgid "File Modification Time" -msgstr "파일 변경 시간" - -msgid "File Name" -msgstr "파일 이름" - -msgid "File Size" -msgstr "파일 크기" - -msgid "File Type" -msgstr "파일 유형" - -msgid "File deleted: " -msgstr "파일 삭제: " - -msgid "File received: " -msgstr "파일 올리기: " - -msgid "Gollem is not properly configured" -msgstr "Gollem이 정상 설정되지 않았습니다." - -msgid "Group" -msgstr "그룹" - -msgid "Help" -msgstr "도움말" - -msgid "Home" -msgstr "홈" - -msgid "Incorrect number of items." -msgstr "잘못된 항목수" - -msgid "Language" -msgstr "언어" - -msgid "Log in" -msgstr "로그인" - -msgid "" -"Login failed for some reason. Most likely your username or password was " -"entered incorrectly." -msgstr "" -"어떤 이유로 로그인이 실패했습니다. 대부분의 경우 사용자이름 또는 비밀번호가 " -"올바르지 않기 때문입니다." - -msgid "Logout" -msgstr "종료" - -msgid "Message" -msgstr "메세지" - -msgid "Modified" -msgstr "변경일자" - -msgid "Name" -msgstr "이름" - -msgid "New User Introduction" -msgstr "새로운 사용자를 위한 도움말" - -msgid "New folder created: " -msgstr "새로운 폴더 생성: " - -msgid "No such directory: " -msgstr "디렉토리가 없습니다: " - -msgid "Options" -msgstr "옵션" - -msgid "Other Options" -msgstr "다른 옵션" - -msgid "Owner" -msgstr "소유자" - -msgid "Password" -msgstr "비밀 번호" - -msgid "Permission" -msgstr "파일접근모드" - -msgid "Please enter the mode in numeric format:" -msgstr "숫자형식으로 입력하세요:" - -msgid "Please enter the name of the new folder:" -msgstr "새로운 폴더의 이름을 입력하세요:" - -msgid "Please provide your password." -msgstr "비밀번호를 입력하세요." - -msgid "Please provide your username." -msgstr "사용자이름을 입력하세요." - -msgid "Please select an item before this action." -msgstr "실행할 항목을 선택하세요" - -msgid "Please specify a file to upload." -msgstr "업로드할 파일을 선택하세요." - -msgid "Problem?" -msgstr "문제?" - -msgid "Refresh" -msgstr "다시 읽기" - -msgid "Rename " -msgstr "이름 변경 " - -msgid "Rename Items" -msgstr "파일 이름 변경" - -msgid "Select your preferred language:" -msgstr "자주 사용하는 언어를 선택하세요:" - -msgid "Server" -msgstr "서버" - -msgid "Set the language that menu items, explanations, and help are in." -msgstr "메뉴, 설명, 도움말을 표시할 언어를 선택하세요." - -msgid "Size" -msgstr "크기" - -msgid "Some of Gollem's configuration files are missing:" -msgstr "일부 Gollem의 설정파일이 없습니다:" - -msgid "Sort Direction" -msgstr "정렬 순서" - -msgid "Success" -msgstr "완료" - -msgid "The following items will be permenantly deleted: " -msgstr "다음의 항목이 영구 삭제될것입니다:" - -msgid "There are no files in this directory." -msgstr "디렉토리에 파일이 없습니다." - -msgid "" -"This file controls the default preferences for Gollem, and also controls " -"which preferences users can alter." -msgstr "" -"이파일은 Gollem의 기본 환경설정과 사용자가 변경할 수 있는 환경 설정을 제어합" -"니다." - -msgid "" -"This file controls the default settings for Gollem, and also defines the " -"list of available servers if you are using the server list." -msgstr "이파일은 Gollem의 기본 설정값과 사용가능한 서버 목록을 명시합니다." - -msgid "" -"This is the main Gollem configuration file. It contains paths and options " -"for the Gollem scripts." -msgstr "" -"이파일은 기본 Gollem환경설정 파일입니다. Gollem 스크립트의 경로와 옵션을 갖" -"고 있습니다." - -msgid "This number must be at least one." -msgstr "최소한 1이상의 값이어야 합니다." - -msgid "This value must be a number." -msgstr "숫자로 된 값이어야 합니다." - -msgid "Type" -msgstr "종류" - -msgid "Up to parent" -msgstr "상위로" - -msgid "Upload File" -msgstr "파일 올리기" - -msgid "User Preferences" -msgstr "사용자 환경설정" - -msgid "Username" -msgstr "사용자 이름" - -msgid "Warning" -msgstr "경고" - -#, c-format -msgid "Warning: %s requires Javascript to perform certain functions." -msgstr "경고: %s가 실행되기 위해서는 자바스크립트를 필요로 합니다." - -#, c-format -msgid "Welcome to %s" -msgstr "환영합니다. %s 입니다." - -msgid "Welcome" -msgstr "환영합니다." - -#, c-format -msgid "" -"You have been logged out of %s. Thank you for using the system. If you wish " -"to log in again, please use the form below." -msgstr "" -"%s에서 로그아웃하셨습니다. 이 시스템을 사용해주셔서 감사합니다. 다시 로그인하" -"시려면, 아래의 폼을 사용하시기 바랍니다." - -msgid "Your Information" -msgstr "사용자 정보" - -msgid "Your preferences have been updated." -msgstr "환경설정이 저장되었습니다." - -msgid "Your preferred FTP server:" -msgstr "자주 사용하는 FTP 서버:" - -msgid "[home]" -msgstr "[홈]" - -msgid "folder" -msgstr "폴더" - -msgid "symlink" -msgstr "심볼 링크" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/lv/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/lv/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/lv/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/lv/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,119 +0,0 @@ - - - - - Failu pārvaldnieks: Darbības - Mapju izveidošana - - Lai izveidotu mapi aktuālajā katalogā, uzklikšķiniet ikonai Izveidot mapi Failu pārvaldnieka rīkjoslā. - - Failu dzēšana, izgriešana, kopēšana, ielīmēšana - - Lai dzēstu, izgrieztu vai nokopētu failu(s), ir jāizvēlas vismaz viens fails, atzīmējot to(s) izvēles rūtiņā(s) pa kreisi no faila nosaukuma. Pēc tam, kad ir atzīmēti nepieciešami faili, no izkrītošās komandkartes Darbības izvēlieties nepieciešamo darbību. Ja izvēlējāties Kopēt vai Izgriezt, atzīmētie faili tiks nokopēti vai pārvietoti uz Starpliktuvi un lietotāja saskarnē parādīsies jauna ikona Skatīt starpliktuvi. No Starpliktuves Jums ir iespēja ielīmēt atbilstošos failus jebkurā Failu pārvaldnieka vietā. Pārejiet uz vietu direktoriju kokā, kurā nepieciešams novietot failu(s), atveriet Starpliktuvi, atzīmējiet nepieciešamo(s) failu(s) rūtiņā(s) pa kreisi no faila nosaukuma un uzklikšķiniet uz Ielīmēt. Pēc šīs darbības faili tiks ielīmēti aktuālajā katalogā un Starpliktuve – attīrīta. - - Katalogu dzēšana, izgriešana, kopēšana, ielīmēšana - -Pēc noklusēšanas, izdzēst katalogu iespējams tikai gadījumā, ja tajā nav failu. Ja vēlaties dzēst katalogus ar visu to saturu, varat ieslēgt rekursīvu katalogu dzēšanu. Lai to ieslēgtu, uzklikšķiniet ikonai Opcijas, izvēlieties Iestatījumi un no izkrītošajā komandkartē piedāvātajām iespējām - Jums vēlamo variantu. -Ja mēģināsiet dzēst katalogu ar failiem, neieslēdzot minēto opciju, dzēšanas mēģinājums beigsies ar kļūdu. - -Lai dzēstu, izgrieztu vai nokopētu katalogu(s), ir jāizvēlas vismaz viens katalogs, atzīmējot to(s) izvēles rūtiņā(s) pa kreisi no kataloga nosaukuma. Pēc tam, kad ir atzīmēti nepieciešami katalogi, no izkrītošās komandkartes Darbības izvēlieties nepieciešamo darbību. Ja izvēlējāties Kopēt vai Izgriezt, atzīmētie katalogi tiks nokopēti vai pārvietoti uz Starpliktuvi un lietotāja saskarnē parādīsies jauna ikona Skatīt starpliktuvi. No Starpliktuves Jums ir iespēja ielīmēt atbilstošos katalogus jebkurā katalogu pārvaldnieka vietā. Pārejiet uz vietu direktoriju kokā, kurā nepieciešams novietot katalogu(s), atveriet Starpliktuvi, atzīmējiet nepieciešamo(s) katalogu(s) rūtiņā(s) pa kreisi no kataloga nosaukuma un uzklikšķiniet uz Ielīmēt. Pēc šīs darbības katalogi tiks ielīmēti aktuālajā katalogā un Starpliktuve – attīrīta. - - - Darbs ar starpliktuvi - -Ja Jūs kopējat vai izgreižat failu vai katalogu, tas tiek novietots starpliktuvē, kuras saturu varat apskatīt, uzklikšķinot ikonai Starpliktuve, kas atrodas virs failu un katalogu saraksta pa labio no Atsvaidzināt skatu ikonas. -Šī ikona parādās lietotāja saskarnē tikai tad, kad starpliktuvē atrodas kāds objekts.Pēc tam, kad kāds fails vai katalogs ir nokopēts vai izgriezts, blakus tā tā nosaukumam Failu pārvaldnieka galvenajā logā vairs nebūs izvēles rūtiņa. - - -Kad atvērsiet Starpliktuves pārlūku, redzēsiet uz starpliktuvi kopēto vai izgriezto objektu sarakstu, kur katram objektam blakus ir attēlota iepriekš veikto darbību atainojoša piktogramma. No šejienes Jūs varat ielīmēt objektus aktuālajā katalogā, kas parādīts virs objektu saraksta – atzīmējiet ielīmējamos failus un nospiediet pogu Ielīmēt, objekti tiks ievietoti aktuālajā katalogā un notīrīti no starpliktuves. Pēc objektu ielīmēšanas Failu pārvaldnieks atgriezīsies aktuālajā katalogā. Ja vēlaties vienkārši notīrīt kādu objektu no starpliktuves, atzīmējiet to un nospiediet pogu Notīrīt. Objekts(-i) tiks notīrīti no starpliktuves un Failu pārvaldnieks atgriezīsies aktuālajā katalogā. - - -Piezīme: ja objekts tika izgriezts uz starpliktuvi, pēc notīrīšanas no starpliktuves objekts paliek savā iepriekšējā vietā. - - - - - Failu pārvaldnieks: Augšupielādēšana - Failu augšupielādēšana - -Piezīme: failu augšupielādēšana darbojas tikai gadījumā, ja ir pareizi konfigurētas VFS palīgmoduļa pieejas tiesības. To var izdarīt tikai sistēmas administrators. - - - Lai augšupielādētu failus, pārejiet uz vietu katalogu kokā, kurā vēlaties tos novietot. Tas būs aktuālais katalogs. Kad esat atvēruši vajadzīgo katalogu, Failu pārvaldnieka loga apakšā nospiediet pogu Browse... (pārlūkot). Tas atvērs File Upload logu, kurā Jums jāsameklē augšupielādējamais fails, jāuzklikšķina tā nosaukumam un OK pogai. - - -Vienlaikus ir iespējams augšupielādēt vairākus failus – Failu pārvaldnieks automātiski pievienos jaunu Browse... pogu pēc katra faila izvēles. Kad ir sameklēti visi faili, nospiediet pogu Augšupielādēt failu(s) un tie tiks augšupielādēti aktuālajā Failu pārvaldnieka katalogā. - - - - - Šķirošana - Šķirošana - - Apskatot failu vai katalogu sarakstus, Jūs varat to sakārtot pēc jebkuras slejas. Lai to izdarītu, uzklikšķiniet atbilstošās slejas virsrakstam un saraksts tiks atsvaidzināts, sakārtojot objektus atbilstoši Jūsu izvēlētajai slejai. Lai mainītu kārtošanas secību no augošas uz dilstošu un otrādi, uzklikšķiniet slejas virsrakstam blakus esošajai bultiņai. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/lv/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/lv/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/lv/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/lv/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/lv/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/lv/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,553 +0,0 @@ -# Latvian translations for Gollem H4 package. -# Copyright 2011-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Automatically generated, 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H4 (2.0-git)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2013-06-03 14:08+0300\n" -"Last-Translator: Jānis Eisaks \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: lv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" -"X-Poedit-Language: Latvian\n" -"X-Poedit-Country: LATVIA\n" -"X-Poedit-SourceCharset: utf-8\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" pārdēvēts par \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d objekts" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d objekti" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s veiksmīgi saglabāts." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s veiksmīgi ielīmēts." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "%s pieeja liegta" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Mapei \"%s\" pieeja liegta." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Pievienot" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Visi" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Vai tiešām vēlaties turpināt?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Esat pārliecināti?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Augoši" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Jautāt" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Dzinis" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Dziņi" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Zemāk redzams pašreizējais starpliktuves saturs." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Atcelt" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "%s nevar izmanīt atribūtus: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Nevar nokopēt objektu uz starpliktuvi." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Nevar izveidot mājas mapi: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Nevar izgriezt objektu uz starpliktuvi." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Nevar ielīmēt \"%s\" (fails iztīrīts no starpliktuves): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Mainīt mapi" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Mainīt pieejas tiesības" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Pārbaudīt kvotu" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Pārbaudīt visus/nevienu" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Atribūti manīti:" - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Izvēlieties, kurus slejas un kādā secībā rādīt:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Notīrīt" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Starpliktuve" - -#: quota.php:25 -msgid "Close" -msgstr "Aizvērt" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Slejas, kas netiks parādītas:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Kopēt" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Izveidot mapi" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Izveidotas tukšas pieejas tiesības \"%s\". Tagad ir jānosaka precīzas " -"pieejas tiesības šim dzinim." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Aktuālā mape:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Izgriezt" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Noklusētais šķirošanas kritērijs:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Noklusētais kārtošanas virziens:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Dzēst" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Dzēst arī apakšmapes?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Dilstoši" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Darīts" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Lejupielādēt %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "KĻŪDA:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Labot %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Izpildīt" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Fails" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Failu darbības" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Faili" - -# #-#-#-#-# nag.po (Nag 2.1.4) #-#-#-#-# -# -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Faila izmaiņu datums" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Faila nosaukums" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Faila izmērs" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Faila tips" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Failu darbību iestatījumi." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Fails dzēsts:" - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Mapju pārlūkošanas iestatījumi" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Fails saņemts: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Failus jāieraksta VFS vidē." - -#: manager.php:341 -msgid "Filter" -msgstr "Filtrs" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Mape dzēsta:" - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Mapes jāizveido VFS vidē." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Grupa" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Pieprasīts neizmantojams dzinis: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Objekts nokopēts uz starpliktuvi: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Objekts izgriezts uz starpliktuvi: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Objektu skaits vienā lapā" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Mapes rādīt vispirms?" - -# #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# -# #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# -# -# #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# -# -#: manager.php:540 -msgid "Modified" -msgstr "Pēdējās izmaiņas" - -#: manager.php:514 -msgid "Name" -msgstr "Nosaukums" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Izveidota jauna mape:" - -#: config/prefs.php:96 -msgid "No" -msgstr "Nē" - -# -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Kvota nav atrasta." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Īpašnieks" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Ielīmēt" - -#: manager.php:556 -msgid "Permission" -msgstr "Tiesības" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Pieeja %s liegta: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Pieeja mapei \"%s\" liegta: %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Jums nav tiesību izmantot šo dzini." - -#: manager.php:612 -msgid "Permissions" -msgstr "Tiesības" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Pirms veikt šo darbību, lūdzu, izvēlieties objektu." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Norādiet vismaz vienu failu augšupielādei." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Kvota" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Lasīt" - -#: manager.php:287 -msgid "Refresh" -msgstr "Atsvaidzināt skatu" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Pārdēvēt" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Pārdēvēšana starp dažādiem dziņiem nav atbalstīta." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Dziņu pārdēvēšana nav atļauta." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Sākt no jauna" - -# #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# -# #-#-#-#-# lv_LV.po (Nag 2.1.4) #-#-#-#-# -# -# #-#-#-#-# nag.po (Nag 2.1.4) #-#-#-#-# -# -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Saglabāt" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Iezīmēt visu" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Neizvēlēties neko" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Izvēlieties dzini:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Koplietot mapi" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Koplietota mapes" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Rādīt slēptos failus?" - -#: manager.php:548 -msgid "Size" -msgstr "Izmērs" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Sākuma mape" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Aplikācijas mape nav izdzēšama." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Sekojošie objekts(-i) ir mape(s):" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Sekojošie objekti tiks neatgriezeniski izdzēsti:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Oriģinālais logs ir aizvērts. Veramies ciet." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Šajā mapē failu nav." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Šīs slejas tiks parādītas šādā secībā:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Lai iztīrītu objektus no starpliktuves, ieķeksējiet rūtiņu blakus faila " -"nosaukumam un uzklikšķiniet "Tīrīt"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Lai ielīmētu objektus no starpliktuves atvērtajā mapē, ieķeksējiet rūtiņu " -"blakus faila nosaukumam un uzklikšķiniet "Ielīmēt"." - -#: manager.php:506 -msgid "Type" -msgstr "Tips" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Nevar atvērt Gollem sesiju" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Nevar izveidot pieejas tiesības dzinim: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Failu %s nevar nodzēst: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Mapi %s nevar nodzēst: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Atpakaļ uz %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Augšupielādēt failu(s)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Lietotāja saskarne" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Rakstīt" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Jā" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Jums nav atļauts koplietot šo mapi." - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "Lai noteiktu pieejas tiesības, jābūt definētam vismaz vienam dzinim" - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "Tiesības" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/nl/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/nl/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/nl/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/nl/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/nl/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/nl/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,540 +0,0 @@ -# Gollem Dutch translation. -# Copyright 2001 Jan Kuipers. -# -# Jan Kuipers , 2001-2007. -# Arjen de Korte , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Gollem H3 (1.1-cvs)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-11-23 10:08+0100\n" -"PO-Revision-Date: 2012-11-30 10:27+0100\n" -"Last-Translator: Arjen de Korte \n" -"Language-Team: Dutch \n" -"Language: nl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Lokalize 1.4\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" hernoemd naar \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:597 -#, php-format -msgid "%d item" -msgstr "%d onderdeel" - -#: manager.php:597 -#, php-format -msgid "%d items" -msgstr "%d onderdelen" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s met succes opgeslagen." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s met succes geplakt." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Toegang tot %s geweigerd" - -#: lib/Gollem.php:49 lib/Gollem.php:300 lib/Gollem.php:360 lib/Gollem.php:393 -#: lib/Gollem.php:413 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Toegang tot map \"%s\" geweigerd." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Toevoegen" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Alle" - -#: manager.php:613 -msgid "Are you sure you wish to continue?" -msgstr "Weet u zeker dat u verder wilt gaan?" - -#: manager.php:611 -msgid "Are you sure?" -msgstr "Weet u het zeker?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Oplopend" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Vragen" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Backend" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Backends" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Hieronder staat de huidige inhoud van uw klembord." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Afbreken" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Kan niet chmod %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Kan onderdelen niet naar het klembord kopiëren." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Kan homedirectory niet maken: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Kan onderdelen niet naar het klembord knippen." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Kan \"%s\" niet plakken (bestand van klembord gewist): %s" - -#: manager.php:333 manager.php:608 -msgid "Change Folder" -msgstr "Wijzig map" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Wijzig rechten" - -#: lib/Application.php:242 -msgid "Check Quota" -msgstr "Controleer quota" - -#: manager.php:593 -msgid "Check _All/None" -msgstr "Controleer _Alles/Geen" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Rechten gewijzigd: " - -#: lib/Prefs/Special/Columnselect.php:53 -msgid "Choose which columns to display, and in what order:" -msgstr "" -"Kies de kolommen die weergegeven dienen te worden en in welke volgorde:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Leegmaken" - -#: clipboard.php:51 lib/Application.php:225 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Klembord" - -#: quota.php:25 -msgid "Close" -msgstr "Sluiten" - -#: lib/Prefs/Special/Columnselect.php:57 -msgid "Columns that will not be displayed:" -msgstr "Kolommen die niet zullen worden getoond:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Kopiëren" - -#: manager.php:321 manager.php:609 -msgid "Create Folder" -msgstr "Maak map" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Blanco rechten voor \"%s\" aangemaakt. U dient nu expliciete rechten aan dit " -"backend to te kennen." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Huidige map:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Knippen" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Standaard sorteercriteria:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Standaard sorteervolgorde:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Verwijderen" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Mappen recursief verwijderen?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Aflopend" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Uitgevoerd" - -#: manager.php:466 -#, php-format -msgid "Download %s" -msgstr "%s downloaden" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "FOUT:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "%s bewerken" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Uitvoeren" - -#: manager.php:614 templates/manager.html.php:146 -msgid "File" -msgstr "Bestand" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Bestandsbewerkingen" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Bestandsweergave" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Wijzigingstijd van bestand" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Bestandsnaam" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Bestandsgrootte" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Bestandstype" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Bestandsbewerking instellingen." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Bestand verwijderd: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Bestandsweergave voorkeuren." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Bestand ontvangen: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Bestanden dienen binnen een VFS backend geschreven te worden." - -#: manager.php:344 -msgid "Filter" -msgstr "Filter" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Map verwijderd: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Mappen dienen binnen een VFS backend gemaakt te worden." - -#: manager.php:571 templates/manager.html.php:8 -msgid "Group" -msgstr "Groep" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Ongeldig backend aangevraagd: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Onderdeel gekopieerd naar klembord: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Onderdeel geknipt naar klembord: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Aantal onderdelen per pagina" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Mappen eerst weergeven in lijst?" - -#: manager.php:543 -msgid "Modified" -msgstr "Gewijzigd" - -#: manager.php:517 -msgid "Name" -msgstr "Naam" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Nieuwe map gemaakt: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Nee" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Geen quota gevonden." - -#: manager.php:565 templates/manager.html.php:7 -msgid "Owner" -msgstr "Eigenaar" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Plakken" - -#: manager.php:559 -msgid "Permission" -msgstr "Toegang" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Toegang geweigerd aan %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Toegang geweigerd tot map \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Toegang geweigerd op dit backend." - -#: manager.php:615 -msgid "Permissions" -msgstr "Rechten" - -#: manager.php:617 -msgid "Please select an item before this action." -msgstr "Selecteer een onderdeel voor deze bewerking, a.u.b." - -#: manager.php:618 -msgid "Please specify at least one file to upload." -msgstr "Specificeer tenminste één bestand voor upload, a.u.b." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Quotaweergave" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Lezen" - -#: manager.php:290 -msgid "Refresh" -msgstr "Verversen" - -#: manager.php:616 templates/manager.html.php:72 -msgid "Rename" -msgstr "Hernoemen" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Hernoemen over backends wordt niet ondersteund." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Hernoemen van backends is niet toegestaan." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Herstellen" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Opslaan" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Selecteer alle" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Selecteer niets" - -#: lib/Prefs/Special/Columnselect.php:55 -msgid "Select a backend:" -msgstr "Selecteer een backend:" - -#: manager.php:304 manager.php:423 -msgid "Share Folder" -msgstr "Map delen" - -#: manager.php:423 -msgid "Shared Folder" -msgstr "Gedeelde map" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Verborgen bestanden weergeven?" - -#: manager.php:551 -msgid "Size" -msgstr "Grootte" - -#: lib/Application.php:213 -msgid "Start Folder" -msgstr "Initiële map" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "De applicatiemap kan niet worden verwijderd." - -#: manager.php:612 -msgid "The following item(s) are folders:" -msgstr "De volgende onderdelen zijn mappen:" - -#: manager.php:610 -msgid "The following items will be permanently deleted:" -msgstr "De volgende onderdelen zullen definitief worden verwijderd:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Het originele opener scherm is gesloten. Afsluiten." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Er zijn geen bestanden in deze map." - -#: lib/Prefs/Special/Columnselect.php:54 -msgid "These columns will display in this order:" -msgstr "Deze kolommen zullen worden weergegeven in deze volgorde:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Om onderdelen van het klembord te verwijderen, vink het vakje naast de " -"bestandsnaam aan en klik op "Verwijderen"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Om onderdelen van het klembord naar de huidige directory te plakken, vink " -"het vakje naast de bestandsnaam en klik op "Plakken"." - -#: manager.php:509 -msgid "Type" -msgstr "Type" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Niet in staat om Gollem sessie te maken" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Niet in staat om backend recht te maken: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Niet in staat om bestand %s te verwijderen: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Niet in staat om map %s te verwijderen: %s" - -#: lib/Gollem.php:617 lib/Gollem.php:627 -#, php-format -msgid "Up to %s" -msgstr "Tot aan %s" - -#: manager.php:316 -msgid "Upload File(s)" -msgstr "Upload bestand(en)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Gebruikersinterface" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Schrijven" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Ja" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "U mag deze map niet delen" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"U dient tenminste één backend gedefinieerd te hebben om rechten in te kunnen " -"stellen." - -#: lib/Application.php:248 -msgid "_Permissions" -msgstr "_Rechten" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/nn/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/nn/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/nn/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/nn/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/nn/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/nn/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,334 +0,0 @@ -# Gollem Norwegian Nynorsk translation -# Copyright 2002 Per-Stian Vatne -# This file is distributed under the same license as the Gollem package. -# Per-Stian Vatne , 2002. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 0.0.1-cvs\n" -"POT-Creation-Date: 2002-06-08 22:16+0200\n" -"PO-Revision-Date: 2002-06-08 22:23+0100\n" -"Last-Translator: Per-Stian Vatne \n" -"Language-Team: Norwegian Nynorsk \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid " to: " -msgstr " til:" - -#, c-format -msgid "%d items in %s" -msgstr "%d element i %s" - -#, c-format -msgid "%s Standard" -msgstr "%s Standard" - -#, c-format -msgid "'%s' renamed to '%s'" -msgstr "'%s' endra namn til '%s'" - -msgid "Note: These settings won't take effect until your next login." -msgstr "" -"Merk: Desse endringane vil ikkje setjast i verk før neste innlogging." - -msgid "Are you sure?" -msgstr "Er du sikker?" - -msgid "Ascending" -msgstr "Stigande" - -msgid "Barbie" -msgstr "Barbie" - -msgid "Brown" -msgstr "Brun" - -msgid "Burnt Orange" -msgstr "Brent oransje" - -msgid "Camouflage" -msgstr "Kamuflasje" - -#, c-format -msgid "Cannot chmod %s" -msgstr "Kan ikkje chmod %s" - -#, c-format -msgid "Cannot delete '%s'" -msgstr "Kan ikkje slette '%s'" - -msgid "Change your file sorting options." -msgstr "Endre alternativ for sortering av filer" - -msgid "Checkbox" -msgstr "Avkryssingboks" - -msgid "Cherry" -msgstr "Kirsebær" - -msgid "Chmod Items" -msgstr "Chmod-element" - -msgid "Chmod done: " -msgstr "Chmod-ferdig:" - -msgid "Choose Action:" -msgstr "Vel handling:" - -msgid "Create Folder" -msgstr "Opprett mappe" - -msgid "Default sorting criteria:" -msgstr "Standard sorteringskriterium:" - -msgid "Default sorting direction:" -msgstr "Standard sorteringsrekkefølgje:" - -msgid "Delete Items" -msgstr "Slett element" - -msgid "Descending" -msgstr "Synkande" - -msgid "Directory removed: " -msgstr "Katalog fjerna:" - -msgid "Display Options" -msgstr "Visingsalternativ" - -msgid "" -"Either you have logged in incorrectly or your login has expired. Please " -"login again." -msgstr "" -"Enten logga du inn feil, eller så har økta di gått ut på tid. Logg inn på " -"nytt." - -msgid "Error creating new folder: " -msgstr "Feil ved oppretting av ny mappe:" - -#, c-format -msgid "Error renaming: '%s'" -msgstr "Kunne ikkje endre namn: '%s'" - -msgid "Error uploading file: " -msgstr "Kunne ikkje laste opp fil:" - -msgid "File Modification Time" -msgstr "Fil sist endra" - -msgid "File Name" -msgstr "Filnamn" - -msgid "File Size" -msgstr "Filstorleik" - -msgid "File Type" -msgstr "Filtype" - -msgid "File deleted: " -msgstr "Fil sletta:" - -msgid "File received: " -msgstr "Fil motteken:" - -msgid "Gollem is not properly configured" -msgstr "Gollem er ikkje ordentleg konfigurert" - -msgid "Green" -msgstr "Grøn" - -msgid "Grey" -msgstr "Grå" - -msgid "Group" -msgstr "Gruppe" - -msgid "Help" -msgstr "Hjelp" - -msgid "Home" -msgstr "Heim" - -msgid "Incorrect number of items." -msgstr "Feil tal på element." - -msgid "Language" -msgstr "Språk" - -msgid "Light Blue" -msgstr "Lys blå" - -msgid "Log in" -msgstr "Logg inn" - -msgid "" -"Login failed for some reason. Most likely your username or password was " -"entered incorrectly." -msgstr "" -"Kunne av ein eller annan grunn ikkje logge inn. Sannsynlegvis er brukarnamn " -"eller passord tasta inn feil." - -msgid "Logout" -msgstr "Logg ut" - -msgid "Modified" -msgstr "Endra" - -msgid "Name" -msgstr "Namn" - -msgid "New folder created: " -msgstr "Ny mappe oppretta:" - -msgid "No such directory: " -msgstr "Ingen slik katalog:" - -msgid "Options" -msgstr "Alternativ" - -msgid "Orange" -msgstr "Oransje" - -msgid "Other Options" -msgstr "Andre alternativ" - -msgid "Owner" -msgstr "Eigar" - -msgid "Password" -msgstr "Passord" - -msgid "Permission" -msgstr "Tilgang" - -msgid "Please enter the mode in numeric format:" -msgstr "Skriv inn modus i numerisk format:" - -msgid "Please enter the name of the new folder:" -msgstr "Skriv inn namnet på den nye mappa:" - -msgid "Please provide your password." -msgstr "Skriv inn ditt passord." - -msgid "Please provide your username." -msgstr "Skriv inn ditt brukarnamn." - -msgid "Please select an item before this action." -msgstr "Vel eit element før denne handlinga." - -msgid "Please specify a file to upload." -msgstr "Spesifiser ei fil for opplasting." - -msgid "Problem?" -msgstr "Problem?" - -msgid "Refresh" -msgstr "Frisk opp" - -msgid "Rename " -msgstr "Gi nytt namn" - -msgid "Rename Items" -msgstr "Gi nytt namn til elementa" - -msgid "Select your color scheme." -msgstr "Vel fargeskjema." - -msgid "Select your preferred language:" -msgstr "Vel ønska språk:" - -msgid "Server" -msgstr "Tenar" - -msgid "Set the language that menu items, explanations, and help are in." -msgstr "Vel språk for menyar, forklaringar og hjelp." - -msgid "Size" -msgstr "Storleik" - -msgid "Some of Gollem's configuration files are missing:" -msgstr "Nokre av Gollem sine konfigurasjonsfiler manglar:" - -msgid "Sort Direction" -msgstr "Sorteringsrekkefølgje" - -msgid "Sun" -msgstr "Sol" - -msgid "The following items will be permenantly deleted: " -msgstr "Følgjande element vil bli sletta permanent:" - -msgid "There are no files in this directory." -msgstr "Ingen filer i denne katalogen." - -msgid "" -"This file controls the default preferences for Gollem, and also controls " -"which preferences users can alter." -msgstr "" -"Denne fila kontrollerer standardinnstillingane for Gollem, og kontrollerer " -"også kva innstillingar brukarane kan endre." - -msgid "" -"This file controls the default settings for Gollem, and also defines the " -"list of available servers if you are using the server list." -msgstr "" -"Denne fila kontrollerer standardvala for Gollem, og definerer også lista " -"over tilgjengelege tenarar dersom du brukar tenarlista." - -msgid "" -"This is the main Gollem configuration file. It contains paths and options " -"for the Gollem scripts." -msgstr "" -"Dette er hovedkonfigurasjonsfila for Gollem. Den inneheld katalognamn og " -"alternativ for Gollem-skripta." - -msgid "Type" -msgstr "Type" - -msgid "Up to parent" -msgstr "Opp til overordna" - -msgid "Upload File" -msgstr "Last opp fil" - -msgid "User Options" -msgstr "Brukarval" - -msgid "Username" -msgstr "Brukarnamn" - -#, c-format -msgid "Warning: %s requires Javascript to perform certain functions." -msgstr "Åtvaring: %s krever Javascript for å utføre enkelte funksjonar." - -#, c-format -msgid "Welcome to %s" -msgstr "Velkomen til %s" - -msgid "Welcome" -msgstr "Velkomen" - -#, c-format -msgid "" -"You have been logged out of %s. Thank you for using the system. If you wish " -"to log in again, please use the form below." -msgstr "" -"Du er logga ut av %s. Takk for at du brukar dette systemet. Om du ønskjer å " -"logge inn igjen, bruk skjemaet under." - -msgid "Your Information" -msgstr "Din informasjon" - -msgid "Your preferred FTP server:" -msgstr "Føretrekt FTP-tenar:" - -msgid "[home]" -msgstr "[heim]" - -msgid "folder" -msgstr "mappe" - -msgid "symlink" -msgstr "symlink" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/pl/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/pl/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/pl/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/pl/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/pl/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/pl/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,543 +0,0 @@ -# Polish translations for Gollem package -# Polskie tlumaczenia dla pakietu Gollem. -# Copyright 2007-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Automatically generated, 2007. -# Krzysztof Kozlowski , 2005. -# Piotr Tarnowski , 2007. -# Maciej Uhlig , 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H3 (1.1-cvs)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2014-04-15 09:06+0200\n" -"PO-Revision-Date: 2014-04-15 09:18+0100\n" -"Last-Translator: Maciej Uhlig \n" -"Language-Team: Polish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"Language: pl\n" -"X-Generator: Poedit 1.6.4\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "Zmieniono nazwę \"%s\" na \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d element" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d elementów" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "Pomyślnie zapisano %s." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s został pomyślnie wklejony." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Brak dostępu do %s" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Brak dostępu do folderu \"%s\"." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Dodaj" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Wszyscy" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Czy na pewno chcesz kontynuować?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Czy jesteś pewny(a)?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Rosnąco" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Zapytaj" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Backend" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Backendy" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Poniżej jest bieżąca zawartość Twojego schowka." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Anuluj" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Nie można wykonać chmod %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Nie można skopiować elementów do schowka." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Nie można utworzyć katalogu domowego: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Nie można wyciąć elementów do schowka." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Nie można wkleić \"%s\" (plik wyczyszczono ze schowka): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Zmień folder" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Zmień uprawnienia" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Sprawdź wolne miejsce" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Zaznacz wszystko/nic" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Wykonano chmod: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Wybierz. które kolumny wyświetlać, i w jakim porządku:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Wyczyść" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Schowek" - -#: quota.php:25 -msgid "Close" -msgstr "Zamknij" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Kolumny, które nie będą wyświetlane:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Kopiuj" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Utwórz folder" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Utworzono puste uprawnienia dla \"%s\". Musisz formalnie przyznać dostęp do " -"tego backendu." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Bieżący katalog:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Wytnij" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Domyślne kryteria sortowania:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Domyślny kierunek sortowania:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Usuń" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Czy usuwać foldery rekursywnie?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Malejąco" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Wykonano" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Pobierz %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "BŁĄD:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Edycja %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Wykonaj" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Plik" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Działania na plikach" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Wyświetlanie plików" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Czas modyfikacji pliku" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Nazwa pliku" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Wielkość pliku" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Typ pliku" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Ustawienia działań na plikach" - -#: manager.php:100 -msgid "File deleted: " -msgstr "Plik usunięty: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Preferencje wyświetlania plików" - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Plik odebrany: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Pliki muszą być zapisywane za pomocą backendu VFS." - -#: manager.php:341 -msgid "Filter" -msgstr "Filtr" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Folder usunięty: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Pliki muszą być tworzone za pomocą backendu VFS." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Grupa" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Zażądano nieprawidłowego backendu: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Element skopiowany do schowka: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Element wycięty i skopiowany do schowka: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Liczba elementów na stronie" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Czy wyświetlać najpierw foldery?" - -#: manager.php:540 -msgid "Modified" -msgstr "Zmodyfikowany" - -#: manager.php:514 -msgid "Name" -msgstr "Nazwa" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Utworzono nowy folder: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Nie" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Nie znaleziono quoty." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Właściciel" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Wklej" - -#: manager.php:556 -msgid "Permission" -msgstr "Uprawnienie" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Brak uprawnień do %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Brak uprawnień do folderu \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Brak uprawnień do tego backendu." - -#: manager.php:612 -msgid "Permissions" -msgstr "Uprawnienia" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Proszę wybrać element przed wykonaniem tej akcji." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Proszę określić przynajmniej jeden plik do załadowania." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Wyświetlanie quoty" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Czytaj" - -#: manager.php:287 -msgid "Refresh" -msgstr "Odśwież" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Zmień nazwę" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Ta operacja nie jest możliwa." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Zmiana nazw backendów nie jest dozwolona." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Przywróć" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Zapisz" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Wybierz wszystko" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Nie wybieraj niczego" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Proszę wybrać backend:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Udostępniaj folder" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Udostępniony folder" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Czy wyświetlać pliki ukryte?" - -#: manager.php:548 -msgid "Size" -msgstr "Wielkość" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Folder początkowy" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Nie można usunąć folderu aplikacji." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Następujące elementy są folderami:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Następujące elementy zostaną trwale usunięte:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Oryginalne okno zostało zamnkięte. Wychodzę." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "W tym folderze nie ma żadnych plików." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Te kolumny będą wyświetlane w następującej kolejności:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Aby wyczyścić elementy ze schowka zaznacz kwadrat obok nazwy pliku i kliknij " -"na "Wyczyść"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Aby wkleić elementy ze schowka do bieżącego katalogu zaznacz kwadrat obok " -"nazwy pliku i kliknij na "Wklej"." - -#: manager.php:506 -msgid "Type" -msgstr "Typ" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Nie można utworzyć sesji Gollema" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Nie można utworzyć uprawnień backendu: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Nie można usunąć pliku %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Nie można usunąć folderu %s: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "W górę do %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Załaduj plik(i)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Interfejs użytkownika" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Zapisz" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Tak" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Nie możesz udostępnić tego folderu" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Musisz zdefiniować przynajmniej jeden backend, aby ustawić uprawnienia." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "U_prawnienia" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/pt_BR/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/pt_BR/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/pt_BR/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/pt_BR/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/pt_BR/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/pt_BR/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,540 +0,0 @@ -# translation of pt_BR.po to Português brasileiro -# Copyright 2012-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# -# Fábio Gomes , 2006. -# Luis Felipe Marzagao , 2008. -msgid "" -msgstr "" -"Project-Id-Version: pt_BR\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-29 11:44+0100\n" -"PO-Revision-Date: 2013-03-16 10:31-0300\n" -"Last-Translator: Luis Felipe Marzagao \n" -"Language-Team: Português brasileiro \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" renomeado para \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d item" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d itens" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s gravado com sucesso." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s foi colado com sucesso." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Acesso negado a %s" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Acesso negado à pasta \"%s\"." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Adicionar" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Todos" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Deseja realmente continuar?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Você tem certeza?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Ascendente" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Perguntar" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Estrutura" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Estruturas" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Abaixo está o conteúdo atual da área de transferência." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Cancelar" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Impossível mudar permissões de %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Impossível copiar ítens para a área de transferência." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Impossível criar diretório pessoal: %s" - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Impossível cortar itens da área de transferência." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "" -"Impossível colar \"%s\" (arquivo excluído da área de transferência): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Mudar Pasta" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Alterar Permissões" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Verificar Quota" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Verific_ar Todos/Nenhum" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Alteração de permissões terminada: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Escolha quais colunas para mostrar, e em qual ordem:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Limpar" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Área de Transferência" - -#: quota.php:25 -msgid "Close" -msgstr "Fechar" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Colunas que não serão exibidas:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Copiar" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Criar Pasta" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Criadas permissões vazias para \"%s\". Você deve explicitamente dar acesso a " -"esta estrutura agora." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Diretório atual:" - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Cortar" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Critério padrão de ordenação:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Direção padrão de ordenação:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Excluir" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Excluir pastas e subpastas?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Descendente" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Feito" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Baixar %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "ERRO:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Editar %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Executar" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Arquivo" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Ações de Arquivo" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Exibir Arquivo" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Data de Modificação do Arquivo" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Nome do Arquivo" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Tamanho do Arquivo" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Tipo do Arquivo" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Ajuste de ações de arquivo." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Arquivo excluído: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Preferências de exibição de arquivo." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Arquivo recebido: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Arquivos devem ser gravados em uma estrutura VFS." - -#: manager.php:341 -msgid "Filter" -msgstr "Filtro" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Pasta removida: " - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Pastas devem ser criadas em uma estrutura VFS." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Grupo" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Pedido inválido à estrutura: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Item copiado para a área de transferência: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Item cortado da área de transferência: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Itens por página" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Listar pastas primeiro?" - -#: manager.php:540 -msgid "Modified" -msgstr "Modificado" - -#: manager.php:514 -msgid "Name" -msgstr "Nome" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Nova pasta criada: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Não" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Nenhuma quota encontrada." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Dono" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Colar" - -#: manager.php:556 -msgid "Permission" -msgstr "Permissão" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Permissão negada para %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Permissão negada para a pasta \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Permissão negada para essa estrutura." - -#: manager.php:612 -msgid "Permissions" -msgstr "Permissões" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Por favor selecione um item antes desta ação." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Por favor especifique pelo menos um arquivo para enviar." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Exibição de Quota" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Ler" - -#: manager.php:287 -msgid "Refresh" -msgstr "Atualizar" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Renomear" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Não é possível renomear entre estruturas." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Não é permitido renomear estruturas." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Limpar" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Gravar" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Selecionar Todas" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Selecionar Nenhum" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Selecione uma estrutura:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Compartilhar Pasta" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Pasta Compartilhada" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Mostrar arquivos ocultos?" - -#: manager.php:548 -msgid "Size" -msgstr "Tamanho" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Pasta de Início" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "A pasta da aplicação não pode ser apagada." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Os seguintes itens são pastas:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Os seguintes itens serão excluídos permanentemente: " - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "A janela original de abertura foi fechado. Saindo." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "Não existem arquivos nesta pasta." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Essas colunas serão exibidas nesta ordem:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Para limpar itens da área de transferência, marque a caixa ao lado do " -"arquivo e clique em "Limpar"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Para colar itens da área de transferência na pasta atual, marque a caixa ao " -"lado do arquivo e clique em "Colar"." - -#: manager.php:506 -msgid "Type" -msgstr "Tipo" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Não é possível criar sessão do Gollem" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Não é possível criar permissões da estrutura: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Não é possível apagar o arquivo %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Não é possível apagar a pasta %s: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Até %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Enviar Arquivo(s)" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Interface do Usuário" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Gravar" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Sim" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Você não pode compartilhar esta pasta" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"Você precisa definir pelo menos uma estrutura para configurar permissões." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Permissões" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/ro/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/ro/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/ro/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/ro/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/ro/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/ro/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,468 +0,0 @@ -# Romanian translations for Gollem package. -# Copyright 2003-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Eugen Hoanca , 2003. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 0.0.1\n" -"POT-Creation-Date: 2003-03-04 13:46+0100\n" -"PO-Revision-Date: 2003-03-27 13:50+0200\n" -"Last-Translator: Eugen Hoanca \n" -"Language-Team: Romanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: templates/manager/header.inc:34 -msgid "%d items in %s" -msgstr "%d elemente in %s" - -#: templates/login/login.inc:83 -msgid "%s Login" -msgstr "Intrare %s" - -#: manager.php:152 -msgid "%s was succesfully copied, but not deleted: %s" -msgstr "%s a fost copiat cu succes, dar nu sters: %s" - -#: manager.php:180 manager.php:189 -msgid "%s was sucesfully copied to %s." -msgstr "%s a fost copiat cu succes in %s." - -#: manager.php:139 manager.php:150 -msgid "%s was sucesfully moved to %s." -msgstr "%s a fost mutat cu succes in %s." - -#: manager.php:75 -msgid "'%s' renamed to '%s'" -msgstr "'%s' redenumit in '%s'" - -#: templates/manager/header.inc:34 -msgid "1 item in %s" -msgstr "1 element in %s" - -#: view.php:41 view.php:70 -msgid "Access denied to %s" -msgstr "Acces interzis in %s" - -#: templates/manager/javascript.inc:135 -msgid "Are you sure?" -msgstr "Sunteti sigur?" - -#: config/prefs.php.dist:52 -msgid "Ascending" -msgstr "Crescator" - -#: templates/manager/prompts.inc:181 -msgid "Attributes" -msgstr "Atribute" - -#: templates/view/header.inc:8 templates/view/header.inc:9 -msgid "Back To Folder" -msgstr "Inapoi la director" - -#: templates/manager/prompts.inc:209 templates/manager/prompts.inc:243 -#: templates/manager/prompts.inc:276 templates/manager/prompts.inc:310 -msgid "Cancel" -msgstr "Renuntare" - -#: manager.php:107 -msgid "Cannot chmod %s" -msgstr "Nu se poate face chmod %s" - -#: manager.php:182 -msgid "Cannot copy '%s': %s" -msgstr "Nu se poate copia '%s': %s" - -#: manager.php:94 -msgid "Cannot delete '%s'" -msgstr "Nu se poate sterge '%s'" - -#: manager.php:141 -msgid "Cannot move '%s': %s" -msgstr "Nu se poate muta '%s': %s" - -#: manager.php:158 manager.php:194 -msgid "Cannot read '%s': %s" -msgstr "Nu se poate citi '%s': %s" - -#: manager.php:155 manager.php:191 -msgid "Cannot write '%s': %s" -msgstr "Nu se poate scrie '%s': %s" - -#: templates/menu/menu.inc:9 templates/manager/actions.inc:25 -#: templates/manager/prompts.inc:291 -msgid "Change Directory" -msgstr "Schimbare director" - -#: config/prefs.php.dist:16 -msgid "Change your file sorting options." -msgstr "Schimbare optiuni sortare fisier." - -#: templates/manager/file_headers.inc:4 -msgid "Checkbox" -msgstr "Casuta confirmare" - -#: templates/manager/actions.inc:30 -msgid "Chmod Items" -msgstr "Chmod elemente" - -#: manager.php:105 -msgid "Chmod done: " -msgstr "Chmod efectuat:" - -#: templates/manager/actions.inc:24 -msgid "Choose Action:" -msgstr "Alege actiune:" - -#: templates/login/login.inc:112 -msgid "Connect to: %s" -msgstr "Conectare catre: %s" - -#: templates/manager/actions.inc:14 -msgid "Copy" -msgstr "Copiere" - -#: templates/menu/menu.inc:8 templates/manager/actions.inc:26 -msgid "Create Directory" -msgstr "Creare director" - -#: templates/manager/prompts.inc:257 -msgid "Create Folder" -msgstr "Creare dosar" - -#: config/prefs.php.dist:44 -msgid "Default sorting criteria:" -msgstr "Criteriu implicit de sortare:" - -#: config/prefs.php.dist:54 -msgid "Default sorting direction:" -msgstr "Directie implicita de sortare:" - -#: templates/login/login.inc:110 -msgid "Defaulted to: %s" -msgstr "Intoarcere la: %s" - -#: templates/manager/actions.inc:29 -msgid "Delete Items" -msgstr "Stergere elemente" - -#: config/prefs.php.dist:53 -msgid "Descending" -msgstr "Descrescator" - -#: manager.php:92 -msgid "Directory removed: " -msgstr "Director sters: " - -#: config/prefs.php.dist:15 -msgid "Display Options" -msgstr "Optiuni afisaj" - -#: manager.php:279 templates/manager/file_headers.inc:14 -msgid "Download" -msgstr "Download" - -#: login.php:19 -msgid "" -"Either you have logged in incorrectly or your login has expired. Please " -"login again." -msgstr "" -"Ori v-ati loginat incorect ori loginul a expirat. Va rugam intrati din nou." - -#: config/credentials.php.dist:28 -msgid "Email" -msgstr "Email" - -#: manager.php:223 -msgid "Error retrieving directory listing" -msgstr "Eroare la aducerea listingului directorului" - -#: config/prefs.php.dist:42 -msgid "File Modification Time" -msgstr "Momentul modificarii fisierului" - -#: config/prefs.php.dist:41 -msgid "File Name" -msgstr "Nume fisier" - -#: config/prefs.php.dist:43 -msgid "File Size" -msgstr "Marime fisier" - -#: config/prefs.php.dist:40 -msgid "File Type" -msgstr "Tip fisier" - -#: manager.php:90 -msgid "File deleted: " -msgstr "Fisier sters: " - -#: manager.php:121 -msgid "File received: %s" -msgstr "Fisier primit: %s" - -#: view.php:66 -msgid "File type can't be viewed inline, download the file instead" -msgstr "Tipul fisierului nu poate fi vizualizat, downloadati fisierul" - -#: manager.php:220 -msgid "Files to" -msgstr "Fisiere catre" - -#: templates/manager/prompts.inc:299 -msgid "Go to:" -msgstr "Du-te la:" - -#: templates/index/notconfigured.inc:4 -msgid "Gollem is not properly configured" -msgstr "Gollem nu este corect configurat" - -#: templates/manager/file_headers.inc:31 -msgid "Group" -msgstr "Grup" - -#: templates/menu/menu.inc:21 -msgid "Help" -msgstr "Ajutor" - -#: templates/menu/menu.inc:6 -msgid "Home" -msgstr "Acasa" - -#: manager.php:81 -msgid "Incorrect number of items." -msgstr "Numar incorect de elemente." - -#: config/prefs.php.dist:9 -msgid "Language" -msgstr "Limba" - -#: login.php:90 -msgid "Locked" -msgstr "Incuiat" - -#: login.php:136 templates/login/login.inc:140 -msgid "Log in" -msgstr "Intrare" - -#: login.php:21 -msgid "" -"Login failed for some reason. Most likely your username or password was " -"entered incorrectly." -msgstr "" -"Login esuat din diverse motive. Cel mai probabil username sau parola " -"introduse incorect." - -#: templates/menu/menu.inc:28 -msgid "Logout" -msgstr "Iesire" - -#: templates/manager/file_headers.inc:18 -msgid "Modified" -msgstr "Modificat" - -#: templates/manager/actions.inc:13 -msgid "Move" -msgstr "Mutare" - -#: templates/manager/file_headers.inc:11 -msgid "Name" -msgstr "Nume" - -#: templates/manager/prompts.inc:232 templates/manager/prompts.inc:265 -msgid "Name:" -msgstr "Nume:" - -#: manager.php:50 -msgid "New directory created: " -msgstr "Director nou creat: " - -#: templates/manager/prompts.inc:242 templates/manager/prompts.inc:275 -#: templates/manager/prompts.inc:309 -msgid "OK" -msgstr "OK" - -#: templates/menu/menu.inc:13 -msgid "Options" -msgstr "Optiuni" - -#: config/prefs.php.dist:14 -msgid "Other Options" -msgstr "Alte optiuni" - -#: templates/manager/file_headers.inc:28 -msgid "Owner" -msgstr "Proprietar" - -#: config/credentials.php.dist:23 -msgid "Password" -msgstr "Parola" - -#: templates/manager/file_headers.inc:25 -msgid "Permission" -msgstr "Permisune" - -#: manager.php:236 -msgid "Permission denied to %s: %s." -msgstr "Permisiune interzisa in %s: %s." - -#: templates/login/login.inc:25 -msgid "Please provide your password." -msgstr "Introduceti parola." - -#: templates/login/login.inc:20 -msgid "Please provide your username." -msgstr "Introduceti username." - -#: templates/manager/javascript.inc:75 -msgid "Please select an item before this action." -msgstr "Selectati un element inainte de actiune." - -#: templates/manager/javascript.inc:150 -msgid "Please specify a file to upload." -msgstr "Specificati un fisier pentru trimitere." - -#: templates/manager/header.inc:14 templates/manager/header.inc:15 -msgid "Refresh" -msgstr "Reimprospatare" - -#: templates/manager/prompts.inc:224 -msgid "Rename" -msgstr "Redenumire" - -#: templates/manager/actions.inc:28 -msgid "Rename Items" -msgstr "Redenumire elemente" - -#: templates/manager/prompts.inc:208 -msgid "Save" -msgstr "Salvare" - -#: templates/login/login.inc:103 -msgid "Select" -msgstr "Selectare" - -#: config/prefs.php.dist:25 -msgid "Select your preferred language:" -msgstr "Selectare limba favorita:" - -#: templates/login/login.inc:99 templates/login/login.inc:120 -msgid "Server" -msgstr "Server" - -#: config/prefs.php.dist:10 -msgid "Set the language that menu items, explanations, and help are in." -msgstr "Setare limba in care vor fi meniurile, explicatiile shi helpul." - -#: config/prefs.php.dist:32 -msgid "Show dotfiles?" -msgstr "Afisare fisiere cu punct?" - -#: templates/manager/file_headers.inc:22 -msgid "Size" -msgstr "Marime" - -#: templates/index/notconfigured.inc:39 -msgid "Some of Gollem's configuration files are missing:" -msgstr "Anumite fisiere de configurare Gollem lipsesc:" - -#: templates/manager/file_headers.inc:6 templates/manager/file_headers.inc:10 -#: templates/manager/file_headers.inc:17 templates/manager/file_headers.inc:21 -msgid "Sort Direction" -msgstr "Directie sortare" - -#: templates/manager/javascript.inc:135 -msgid "The following items will be permenantly deleted: " -msgstr "Urmatoarele elemente vor fi sterse permanent: " - -#: templates/manager/empty_dir.inc:2 -msgid "There are no files in this directory." -msgstr "Nu exista fisiere in acest director." - -#: lib/MIME/Viewer/plain.php:33 -msgid "There was an error viewing this file" -msgstr "S-a produs o eroare la vizualizarea fisierului" - -#: templates/index/notconfigured.inc:51 -msgid "" -"This file controls the default preferences for Gollem, and also controls " -"which preferences users can alter." -msgstr "" -"Acest fisier controleaza atat preferintele implicite pentru Gollem, cat si " -"alte preferinte pentru utilizatori." - -#: templates/index/notconfigured.inc:58 -msgid "This file controls what backends are available from Gollem." -msgstr "Acest fisier controleaza suporturile disponibile pentru Gollem." - -#: templates/index/notconfigured.inc:65 -msgid "This file defines types of credentials that a backend might request." -msgstr "Acest fisier defineste tipurile de credentiale cerute de suport." - -#: templates/index/notconfigured.inc:44 -msgid "" -"This is the main Gollem configuration file. It contains options for the " -"Gollem scripts." -msgstr "" -"Acesta este principalul fisier de configurare Gollem. Contine optiuni pentru " -"scripturile Gollem." - -#: templates/manager/file_headers.inc:7 -msgid "Type" -msgstr "Tip" - -#: templates/view/footer.inc:6 templates/view/footer.inc:8 -#: templates/view/footer.inc:10 templates/manager/header.inc:20 -#: templates/manager/header.inc:22 templates/manager/header.inc:25 -msgid "Up to parent" -msgstr "Inapoi la parinte" - -#: templates/manager/actions.inc:8 -msgid "Upload File" -msgstr "Trimitere fisier" - -#: prefs.php:36 -msgid "User Options" -msgstr "Optiuni utilizator" - -#: config/credentials.php.dist:18 -msgid "Username" -msgstr "Nume utilizator" - -#: templates/login/login.inc:61 -msgid "Warning: %s requires Javascript to perform certain functions." -msgstr "Avertisment: %s necesita Javascript pentru anumite functii." - -#: login.php:20 -msgid "" -"You have been logged out of %s. Thank you for using the system. If you wish " -"to log in again, please use the form below." -msgstr "" -"Ati iesit din %s. Multumim pentru utilizarea sistemului. Daca doriti sa " -"reintrati, folositi formularul de mai jos." - -#: config/prefs.php.dist:8 -msgid "Your Information" -msgstr "Detalii personale" - -#: lib/MIME/Viewer/images.php:39 -msgid "Your browser does not support inline display of this image type" -msgstr "Browserul dumneavoastra nu poate afisa acest tip de imagine" - -#: lib/Gollem.php:335 -msgid "[ Home ]" -msgstr "[ Acasa ]" - -#: lib/Gollem.php:233 lib/Gollem.php:241 -msgid "[home]" -msgstr "[acasa]" - -#: templates/manager/file_summaries.inc:9 -msgid "folder" -msgstr "dosar" - -#: templates/manager/file_summaries.inc:7 -msgid "symlink" -msgstr "link simbolic" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/ru/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/ru/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/ru/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/ru/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/ru/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/ru/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,311 +0,0 @@ -# Gollem 0.0.1 Russian Translation. -# Copyright 2001 Anton Nekhoroshih. -# Anton Nekhoroshih , 2001 -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 0.0.1\n" -"POT-Creation-Date: 2001-08-28 15:56\n" -"PO-Revision-Date: 2001-08-28 15:56\n" -"Last-Translator: Anton Nekhoroshih \n" -"Language-Team: Czech \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8-bit\n" - -msgid " renamed to " -msgstr " переименовать в " - -msgid " to: " -msgstr " в: " - -#, c-format -msgid "%d items in %s" -msgstr "%d элементов в %s" - -msgid "Note: These settings won't take effect until your next login." -msgstr "" -" Обратить внимание: Эти параметры настройки не будут вступать в " -"силу до вашего следующего входа в систему." - -msgid "An illegal value was specified." -msgstr "Указано не верное значение." - -msgid "Are you sure?" -msgstr "Вы уверены?" - -msgid "Ascending" -msgstr "По возрастанию" - -msgid "Cannot chmod " -msgstr "Невозможно изменить атрибуты" - -msgid "Cannot delete " -msgstr "Невозможнго удалить" - -msgid "Change your file sorting options." -msgstr "Изменить Ваш порядок сортировки." - -msgid "Change your ftp server" -msgstr "Изменить Ваш ftp сервер" - -msgid "Chmod Items" -msgstr "Сменить атрибуты" - -msgid "Chmod done: " -msgstr "Атрибуты изменены:" - -msgid "Choose Action:" -msgstr "Выберите действите:" - -msgid "Create Folder" -msgstr "Создать папку" - -msgid "Default sorting criteria:" -msgstr "Критерий сортировки по умолчанию:" - -msgid "Default sorting direction:" -msgstr "Направление сортировки по умолчанию:" - -msgid "Delete Items" -msgstr "Удалить элемент" - -msgid "Descending" -msgstr "По убыванию" - -msgid "Directory removed: " -msgstr "Директоря перемещена:" - -msgid "Display Options" -msgstr "Настройки экрана" - -msgid "" -"Either you have logged in incorrectly or your login has expired. Please " -"login again." -msgstr "" -"Или Вы вошли неправильно, или ваш вход в систему истек. Пожалуйста войдите " -"снова. " - -msgid "Error creating new folder: " -msgstr "Ошибка создания новой папки: " - -msgid "Error renaming: " -msgstr "Ошибка преименования: " - -msgid "Error uploading file: " -msgstr "Ошибка загрузки файла: " - -msgid "Error" -msgstr "Ошибка" - -msgid "File Modification Time" -msgstr "Время изменения файла" - -msgid "File Name" -msgstr "Имя файла" - -msgid "File Size" -msgstr "Размер файла" - -msgid "File Type" -msgstr "Тип файла" - -msgid "File deleted: " -msgstr "Файл удален: " - -msgid "File received: " -msgstr "Файл принят: " - -msgid "Forwards" -msgstr "Перенаправления" - -msgid "Gollem is not fully configured." -msgstr "Gollem не отконфигурирован." - -msgid "Group" -msgstr "Группа" - -msgid "Help" -msgstr "Помощь" - -msgid "Home" -msgstr "Домой" - -msgid "Incorrect number of items." -msgstr "Не верное кол-во элементов." - -msgid "Language" -msgstr "Язык" - -msgid "Log in" -msgstr "Войти" - -msgid "" -"Login failed for some reason. Most likely your username or password was " -"entered incorrectly." -msgstr "" -"Вход в систему, неудавшийся по некоторым причинам. Наиболее вероятно ваше " -"имя пользователя или пароль были введены неправильно." - -msgid "Logout" -msgstr "Выйти" - -msgid "Mail Forwards" -msgstr "Почтовая переадресация" - -msgid "Message" -msgstr "Сообщение" - -msgid "Modified" -msgstr "Изменен" - -msgid "Name" -msgstr "Имя" - -msgid "New User Introduction" -msgstr "Вступление для новеньких" - -msgid "New folder created: " -msgstr "Новая папка создад: " - -msgid "No such directory: " -msgstr "Несуществующая директория: " - -msgid "Options" -msgstr "Параметры" - -msgid "Other Options" -msgstr "Другие параметры" - -msgid "Owner" -msgstr "Владелец" - -msgid "Password Change" -msgstr "Смена пароля" - -msgid "Password" -msgstr "Пароль" - -msgid "Permission" -msgstr "Права" - -msgid "Please enter the mode in numeric format:" -msgstr "Пажулайста введите атрибут в цифровом формате:" - -msgid "Please enter the name of the new folder:" -msgstr "Пажулайста введите имя для новой папки:" - -msgid "Please provide your password." -msgstr "Пожалуйста укажите свой пароль." - -msgid "Please provide your username." -msgstr "Пожалуйста укажите свое Имя." - -msgid "Please select an item before this action." -msgstr "Пожалуйста выбирете элемент перед действием." - -msgid "Please specify a file to upload." -msgstr "Пажалуйста укажите имя файла для загрузки." - -msgid "Problem?" -msgstr "Проблемы?" - -msgid "Refresh" -msgstr "Обновить" - -msgid "Rename " -msgstr "Переименовать" - -msgid "Rename Items" -msgstr "Переименовать элементы" - -msgid "Server Information" -msgstr "Информация о сервере" - -msgid "Server" -msgstr "Сервер" - -msgid "Set the language that menu items, explanations, and help are in." -msgstr "Установите язык на котором будут пункты меню, объяснения, справки." - -msgid "Size" -msgstr "Размер" - -msgid "Some of Gollem's configuration files are missing:" -msgstr "Некоторые из файлов конфигурации Gollem отсутствуют:" - -msgid "Sort Direction" -msgstr "Направление сортировки" - -msgid "Success" -msgstr "Успешно" - -msgid "The following items will be permenantly deleted: " -msgstr "Следующие элементы будут удаленный: " - -msgid "There are no files in this directory." -msgstr "Нет никаких файлов в этом каталоге." - -msgid "This file lists each FTP server that Gollem makes available." -msgstr "Этот файл перечисляет FTP сервера, которые будут достпуны в Gollem." - -msgid "" -"This file sets the default user options for Gollem, and controls which ones " -"are user editable." -msgstr "" -"Этот файл устанавливает опции по умолчанию для пользователя Gollem, " -"доступными для редактирования." - -msgid "" -"This is the main Gollem configuration file. It contains paths and options " -"for the Gollem scripts." -msgstr "" -"Это главный файл конфигурации Gollem. Он содержит пути и опции для сценариев " -"Gollem." - -msgid "This number must be at least one." -msgstr "Этот номер должен быть по крайней мере один." - -msgid "This value must be a number." -msgstr "Значение должно быть цифрой." - -msgid "Type" -msgstr "Тип " - -msgid "Upload File" -msgstr "Загрузка файла" - -msgid "User Preferences" -msgstr "Настройки пользователя" - -msgid "Username" -msgstr "Пользователь" - -msgid "Warning" -msgstr "Внимание" - -#, c-format -msgid "Warning: %s requires Javascript to perform certain functions." -msgstr "Внимание: %s нужен Javascript для выполнения функций." - -#, c-format -msgid "Welcome to %s" -msgstr "Добро пожаловать в %s" - -msgid "Welcome" -msgstr "Добро пожаловать" - -#, c-format -msgid "" -"You have been logged out of %s. Thank you for using the system. If you wish " -"to log in again, please use the form below." -msgstr "Вы покинули систему %s. Спасибо за использование." - -msgid "Your Information" -msgstr "Ваша информация" - -msgid "Your preferences have been updated." -msgstr "Ваши настройки изменены." - -msgid "Your preferred FTP server:" -msgstr "Ваш основной FTP сервер:" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/sk/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/sk/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/sk/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/sk/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/sk/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/sk/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,537 +0,0 @@ -# Slovak translations for Gollem package. -# Copyright 2008-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Martin Matuška , 2008 -# Jozef Sudolský , 2012-2014 -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H3 (1.0.4-cvs)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-01-13 21:04+0100\n" -"PO-Revision-Date: 2013-02-01 17:54+0200\n" -"Last-Translator: Jozef Sudolsky \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: manager.php:65 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" premenované na \"%s\"" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:594 -#, php-format -msgid "%d item" -msgstr "%d položka" - -#: manager.php:594 -#, php-format -msgid "%d items" -msgstr "%d položiek" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s bolo úspešne uložené." - -#: manager.php:178 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s bolo úspešne vložené." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "Prístup do %s bol odopretý" - -#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 -#: lib/Gollem.php:433 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Prístup do priečinka \"%s\" bol odopretý." - -#: templates/selectlist.html.php:28 -msgid "Add" -msgstr "Pridať" - -#: templates/manager.html.php:9 -msgid "All" -msgstr "Všetky" - -#: manager.php:610 -msgid "Are you sure you wish to continue?" -msgstr "Naozaj chcete pokračovať?" - -#: manager.php:608 -msgid "Are you sure?" -msgstr "Ste si istý?" - -#: config/prefs.php:68 -msgid "Ascending" -msgstr "Vzostupne" - -#: config/prefs.php:98 -msgid "Ask" -msgstr "Spýtať sa" - -#: lib/Application.php:136 -msgid "Backend" -msgstr "Backend" - -#: lib/Application.php:83 -msgid "Backends" -msgstr "Backendy" - -#: templates/clipboard.html.php:12 -msgid "Below is the current contents of your clipboard." -msgstr "Nižšie je aktuálny obsah Vašej schránky." - -#: clipboard.php:23 templates/edit.html.php:15 -#: templates/selectlist.html.php:30 -msgid "Cancel" -msgstr "Zrušiť" - -#: manager.php:85 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "Nepodarilo sa vykonať chmod %s: %s" - -#: manager.php:153 -msgid "Cannot copy items onto clipboard." -msgstr "Nepodarilo sa skopírovať položky do schránky." - -#: manager.php:224 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Nepodarilo sa vytvoriť domovský priečinok %s." - -#: manager.php:155 -msgid "Cannot cut items onto clipboard." -msgstr "Nepodarilo sa vystrihnúť položky do schránky." - -#: manager.php:180 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Nepodarlio sa vložiť \"%s\" (súbor bol zmazaný zo schránky): %s" - -#: manager.php:330 manager.php:605 -msgid "Change Folder" -msgstr "Zmeniť priečinok" - -#: templates/manager.html.php:60 -msgid "Change Permissions" -msgstr "Zmeniť prístupové práva" - -#: lib/Application.php:244 -msgid "Check Quota" -msgstr "Skontrolovať kvóta" - -#: manager.php:590 -msgid "Check _All/None" -msgstr "Vybrať _všetky/žiadne" - -#: manager.php:83 -msgid "Chmod done: " -msgstr "Chmod vykonaný: " - -#: lib/Prefs/Special/Columnselect.php:47 -msgid "Choose which columns to display, and in what order:" -msgstr "Vyberte, ktoré stĺpce sa majú zobraziť a v akom poradí:" - -#: clipboard.php:24 -msgid "Clear" -msgstr "Odstrániť" - -#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 -msgid "Clipboard" -msgstr "Schránka" - -#: quota.php:25 -msgid "Close" -msgstr "Zavrieť" - -#: lib/Prefs/Special/Columnselect.php:51 -msgid "Columns that will not be displayed:" -msgstr "Stĺpce, ktoré nebudú zobrazené:" - -#: clipboard.php:27 templates/manager.html.php:63 -msgid "Copy" -msgstr "Kopírovať" - -#: manager.php:318 manager.php:606 -msgid "Create Folder" -msgstr "Vytvoriť priečinok" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Vytvorené prázdne práva pre \"%s\". Teraz musíte jednotlivo povoliť prístup " -"do tohto backendu." - -#: templates/clipboard.html.php:22 -msgid "Current directory:" -msgstr "Aktuálny priečinok: " - -#: clipboard.php:26 templates/manager.html.php:65 -msgid "Cut" -msgstr "Vystrihnúť" - -#: config/prefs.php:60 -msgid "Default sorting criteria:" -msgstr "Prednastavený spôsob triedenia:" - -#: config/prefs.php:71 -msgid "Default sorting direction:" -msgstr "Prednastavený smer triedenia:" - -#: templates/manager.html.php:69 -msgid "Delete" -msgstr "Vymazať" - -#: config/prefs.php:100 -msgid "Delete folders recursively?" -msgstr "Vymazať priečinky a ich obsah?" - -#: config/prefs.php:69 -msgid "Descending" -msgstr "Zostupne" - -#: templates/selectlist.html.php:29 -msgid "Done" -msgstr "Vykonané" - -#: manager.php:463 -#, php-format -msgid "Download %s" -msgstr "Stiahnuť %s" - -#: templates/quota.html.php:7 -msgid "ERROR:" -msgstr "CHYBA:" - -#: templates/edit.html.php:8 -#, php-format -msgid "Edit %s" -msgstr "Upraviť %s" - -#: templates/manager.html.php:24 -msgid "Execute" -msgstr "Spustiť" - -#: manager.php:611 templates/manager.html.php:146 -msgid "File" -msgstr "Súbor" - -#: config/prefs.php:87 -msgid "File Actions" -msgstr "Operácie" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Zobrazenie súborov" - -#: config/prefs.php:57 -msgid "File Modification Time" -msgstr "Čas modifikácie súborov" - -#: config/prefs.php:56 -msgid "File Name" -msgstr "Meno súboru" - -#: config/prefs.php:58 -msgid "File Size" -msgstr "Veľkosť súboru" - -#: config/prefs.php:55 -msgid "File Type" -msgstr "Typ súboru" - -#: config/prefs.php:88 -msgid "File action settings." -msgstr "Nastavenie operácií súborov." - -#: manager.php:100 -msgid "File deleted: " -msgstr "Súbor vymazaný:" - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Nastavenie zobrazovania súborov." - -#: manager.php:121 -#, php-format -msgid "File received: %s" -msgstr "Súbor prijatý: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "Súbory musia byť zapisované v backende VFS." - -#: manager.php:341 -msgid "Filter" -msgstr "Filter" - -#: manager.php:92 -msgid "Folder removed: " -msgstr "Priečinok vymazaný:" - -#: lib/Api.php:157 lib/Api.php:190 -msgid "Folders must be created inside a VFS backend." -msgstr "Priečinky musia byť vytvárané v backende VFS." - -#: manager.php:568 templates/manager.html.php:8 -msgid "Group" -msgstr "Skupina" - -#: lib/Api.php:413 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Neplatný backend: %s" - -#: manager.php:147 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Položka skopírovaná do schránky: %s" - -#: manager.php:149 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Položka vystrihnutá do schránky: %s" - -#: config/prefs.php:78 -msgid "Items per page" -msgstr "Počet položiek na stránku" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Zobraziť najprv priečinky?" - -#: manager.php:540 -msgid "Modified" -msgstr "Zmenené" - -#: manager.php:514 -msgid "Name" -msgstr "Meno" - -#: manager.php:50 -msgid "New folder created: " -msgstr "Nový priečinok bol vytvorený: " - -#: config/prefs.php:96 -msgid "No" -msgstr "Nie" - -#: templates/quota.html.php:12 -msgid "No quota found." -msgstr "Žiadne kvóta neboli nájdené." - -#: manager.php:562 templates/manager.html.php:7 -msgid "Owner" -msgstr "Vlastník" - -#: clipboard.php:25 -msgid "Paste" -msgstr "Vložiť" - -#: manager.php:556 -msgid "Permission" -msgstr "Právo" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Prístup zamietnutý do %s: %s" - -#: manager.php:217 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Prístup zamietnutý do priečinka \"%s\": %s" - -#: lib/Api.php:421 -msgid "Permission denied to this backend." -msgstr "Prístup do tohto backendu bol odopretý." - -#: manager.php:612 -msgid "Permissions" -msgstr "Práva" - -#: manager.php:614 -msgid "Please select an item before this action." -msgstr "Prosím vyberte položku pred vykonaním tejto operácie." - -#: manager.php:615 -msgid "Please specify at least one file to upload." -msgstr "Prosím vyberte aspoň jeden súbor na nahranie." - -#: quota.php:58 templates/quota.html.php:2 -msgid "Quota Display" -msgstr "Zobrazenie kvót" - -#: templates/manager.html.php:12 -msgid "Read" -msgstr "Čítať" - -#: manager.php:287 -msgid "Refresh" -msgstr "Obnoviť" - -#: manager.php:613 templates/manager.html.php:72 -msgid "Rename" -msgstr "Premenovať" - -#: lib/Api.php:206 -msgid "Renaming across backends is not supported." -msgstr "Premenovanie medzi backendami nie je podporované." - -#: lib/Api.php:198 -msgid "Renaming of backends is not allowed." -msgstr "Premenovanie backendov nie je povolené." - -#: templates/edit.html.php:14 -msgid "Reset" -msgstr "Zrušiť" - -#: templates/edit.html.php:13 -msgid "Save" -msgstr "Uložiť" - -#: clipboard.php:46 templates/clipboard.html.php:32 -msgid "Select All" -msgstr "Vybrať všetko" - -#: clipboard.php:47 -msgid "Select None" -msgstr "Vybrať žiadne" - -#: lib/Prefs/Special/Columnselect.php:49 -msgid "Select a backend:" -msgstr "Prosím vyberte backend:" - -#: manager.php:301 manager.php:420 -msgid "Share Folder" -msgstr "Zdielať priečinok" - -#: manager.php:420 -msgid "Shared Folder" -msgstr "Zdielaný priečinok" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Zobraziť súbory začínajúce bodkou?" - -#: manager.php:548 -msgid "Size" -msgstr "Veľkosť" - -#: lib/Application.php:215 -msgid "Start Folder" -msgstr "Počiatočný priečinok" - -#: lib/Api.php:235 -msgid "The application folder can not be deleted." -msgstr "Priečinok aplikácií nemôže byť zmazaný." - -#: manager.php:609 -msgid "The following item(s) are folders:" -msgstr "Nasledujúce položky sú priečinky:" - -#: manager.php:607 -msgid "The following items will be permanently deleted:" -msgstr "Nasledujúce položky budú trvale vymazané:" - -#: selectlist.php:174 -msgid "The original opener window has been closed. Exiting." -msgstr "Pôvodné okno bolo zavreté. Koniec." - -#: templates/manager.html.php:80 templates/selectlist.html.php:15 -msgid "There are no files in this folder." -msgstr "V tomto priečinku nie sú žiadne súbory." - -#: lib/Prefs/Special/Columnselect.php:48 -msgid "These columns will display in this order:" -msgstr "Zobrazia sa tieto stĺpce v uvedenom poradí:" - -#: templates/clipboard.html.php:18 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Ak chcete odstrániť položky zo schránky, zaškrtnite štvorček vedľa súboru a " -"kliknite na "Odstrániť"." - -#: templates/clipboard.html.php:16 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Ak chcete vložiť položky zo schránky do aktuálneho priečinka, zaškrtnite " -"štvorček vedľa súboru a kliknite na "Vložiť"." - -#: manager.php:506 -msgid "Type" -msgstr "Typ" - -#: lib/Api.php:417 -msgid "Unable to create Gollem session" -msgstr "Nepodarilo sa vytvoriť sedenie Gollem" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Nepodarilo sa vytvoriť právo pre backend: %s" - -#: manager.php:102 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Nepodarilo sa vymazať súbor %s: %s" - -#: manager.php:94 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Nepodarilo sa vymazať priečinok %s: %s" - -#: lib/Gollem.php:687 lib/Gollem.php:697 -#, php-format -msgid "Up to %s" -msgstr "Vyššie na %s" - -#: manager.php:313 -msgid "Upload File(s)" -msgstr "Nahrať súbory" - -#: config/prefs.php:14 config/prefs.php:86 -msgid "User Interface" -msgstr "Používateľské rozhranie" - -#: templates/manager.html.php:18 -msgid "Write" -msgstr "Zapísať" - -#: config/prefs.php:97 -msgid "Yes" -msgstr "Áno" - -#: share.php:29 -msgid "You are not allowed to share this folder" -msgstr "Nemáte právo na zdielanie tohto priečinku." - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "Musíte mať nastavený aspoň jeden backend na nastavenie práv." - -#: lib/Application.php:251 -msgid "_Permissions" -msgstr "_Práva" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/sl/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/sl/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/sl/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/sl/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/sl/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/sl/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,641 +0,0 @@ -# Slovenian translations for Gollem packaga -# Slovenski prevod Gollem paketa -# Copyright 2006-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the horde package. -# Automatically generated, 2006. -# -msgid "" -msgstr "" -"Project-Id-Version: gollem\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2006-07-25 11:30+0200\n" -"PO-Revision-Date: 2006-04-30 10:32+0100\n" -"Last-Translator: duck@obala.net\n" -"Language-Team: sl_SI \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: manager.php:52 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "'%s' je bil preimenovan v '%s'" - -#: quota.php:59 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:267 -#, php-format -msgid "%d items" -msgstr "%d datotek" - -#: manager.php:429 -#, php-format -msgid "%s Folders and %s Files (%s Kb)" -msgstr "%s Imenikov in %s Datotek (%s Kb)" - -#: manager.php:427 -#, php-format -msgid "%s Folders and 1 File (%s Kb)" -msgstr "%s Imenikov in 1 Datoteka (%s Kb)" - -#: login.php:143 -#, php-format -msgid "%s Login" -msgstr "%s se Prijavlja" - -#: edit.php:33 -#, fuzzy, php-format -msgid "%s successfully saved." -msgstr "%s je bil uspeno prilepljen." - -#: manager.php:159 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s je bil uspeno prilepljen." - -#: manager.php:424 -#, php-format -msgid "1 Folder and %s Files (%s Kb)" -msgstr "1 Imenik in %s Datotek (%s Kb)" - -#: manager.php:422 -#, php-format -msgid "1 Folder and 1 File (%s Kb)" -msgstr "1 Imenik in 1 Datoteka (%s Kb)" - -#: manager.php:267 -msgid "1 item" -msgstr "1 datoteka" - -#: templates/javascript/src/popup.js:58 -msgid "" -"A popup window could not be opened. Perhaps you have set your browser to " -"block popup windows?" -msgstr "" - -#: templates/javascript/popup.js:9 -msgid "" -"A popup window could not be opened.Perhaps you have set your browser to " -"block popup windows?" -msgstr "" - -#: edit.php:31 edit.php:41 view.php:31 -#, php-format -msgid "Access denied to %s" -msgstr "Dostop do %s je bil zavrnjen" - -#: lib/Gollem.php:116 lib/Gollem.php:390 lib/Gollem.php:452 lib/Gollem.php:473 -#: lib/Gollem.php:490 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Dostop do %s je bil zavrnjen." - -#: templates/manager/manager.html:102 -msgid "Actions:" -msgstr "Akcije:" - -#: selectlist.php:100 -msgid "Add" -msgstr "Dodaj" - -#: templates/prefs/columnselect.inc:42 -msgid "Add column" -msgstr "Dodaj stolpec" - -#: templates/manager/manager.html:11 -msgid "All" -msgstr "Vse" - -#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:209 -msgid "Are you sure you wish to continue?" -msgstr "Ste sigurni?" - -#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:205 -msgid "Are you sure?" -msgstr "Ali ste preprieani?" - -#: config/prefs.php.dist:69 -msgid "Ascending" -msgstr "Vzpenjajoe" - -#: config/prefs.php.dist:93 -msgid "Ask" -msgstr "Vpraaj" - -#: templates/manager/manager.html:5 -msgid "Attributes" -msgstr "Lastnosti" - -#: templates/prefs/columnselect.html:20 -msgid "Available Columns:" -msgstr "Na razpolago so stolpci:" - -#: lib/api.php:46 -msgid "Backends" -msgstr "Viri podatkov" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "Spodaj je navedena vsebina vašega pomnilnika (clipboard)." - -#: manager.php:261 selectlist.php:102 clipboard.php:37 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "Razveljavi" - -#: manager.php:72 -#, php-format -msgid "Cannot chmod %s" -msgstr "Ne morem spremeniti dovoljenja za dostop v datoteko %s " - -#: manager.php:133 -msgid "Cannot copy items onto clipboard." -msgstr "Ne morem kopirati datotek na tablico." - -#: manager.php:192 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Ne morem ustvariti imenika: %s" - -#: manager.php:135 -msgid "Cannot cut items onto clipboard." -msgstr "Ne morem izrezati datotek na tablici." - -#: manager.php:80 -#, php-format -msgid "Cannot delete \"%s\": %s" -msgstr "Ne morem zbrisati '%s': %s" - -#: manager.php:157 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "Ne morem prilepiti '%s' (pomnilnik je bil počiščen): %s" - -#: lib/Gollem.php:777 templates/manager/manager.html:70 -msgid "Change Folder" -msgstr "Sprenenite imenik" - -#: selectlist.php:110 lib/Gollem.php:821 -msgid "Change Server" -msgstr "Sprenenite strežnik" - -#: config/prefs.php.dist:21 -msgid "Change file and folder handling settings." -msgstr "Spremite datotekine in mapine nastavitve." - -#: config/prefs.php.dist:14 -msgid "Change your file sorting options." -msgstr "Spremenite vae monosti za zbiranje datotek." - -#: lib/Gollem.php:795 -msgid "Check Quota" -msgstr "Prevezi zasedenost" - -#: manager.php:513 -msgid "Check _All/None" -msgstr "Izberite Vse/Nobene" - -#: templates/manager/manager.html:104 -msgid "Chmod" -msgstr "Dovljenja" - -#: manager.php:70 -msgid "Chmod done: " -msgstr "Spremenjeno je dovoljenje za dostop v datoteko: " - -#: templates/prefs/columnselect.html:12 -msgid "Choose the columns to display in the file manager." -msgstr "Izberite stolpec, ki elite, da se prikae v manager datoteki." - -#: clipboard.php:38 -msgid "Clear" -msgstr "Počisti" - -#: clipboard.php:17 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "Vmesni pomnilnik" - -#: quota.php:31 -msgid "Close" -msgstr "Zapri" - -#: login.php:256 -#, php-format -msgid "Connect to: %s" -msgstr "Povei se na: %s " - -#: clipboard.php:41 templates/manager/manager.html:107 -msgid "Copy" -msgstr "Kopiraj" - -#: lib/Gollem.php:774 templates/manager/manager.html:58 -msgid "Create Folder" -msgstr "Ustvari Imenik" - -#: permissions.php:47 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"Tvorjenje pravice za \"%s\". Sedaj morate resnično dodeliti pravice dostop " -"do tega podatkovnega vira." - -#: templates/clipboard/clipboard.html:17 -msgid "Current directory:" -msgstr "Trenutni imenik: %s" - -#: clipboard.php:40 templates/manager/manager.html:108 -msgid "Cut" -msgstr "Odreži" - -#: config/prefs.php.dist:59 -msgid "Default sorting criteria:" -msgstr "Privzeta razvreevalna merila" - -#: config/prefs.php.dist:72 -msgid "Default sorting direction:" -msgstr "Privzeta razvreevalna smer:" - -#: templates/manager/manager.html:111 -msgid "Delete" -msgstr "Zbriši" - -#: config/prefs.php.dist:95 -msgid "Delete folders recursively?" -msgstr "PObrišem imenik in njegovo vsebino?" - -#: config/prefs.php.dist:70 -msgid "Descending" -msgstr "Padajoče" - -#: selectlist.php:101 -msgid "Done" -msgstr "Končano" - -#: manager.php:217 -msgid "Download" -msgstr "Nalagam" - -#: manager.php:396 -#, php-format -msgid "Download %s" -msgstr "Shrani %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "NAPAKA:" - -#: manager.php:216 -msgid "Edit" -msgstr "" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "" - -#: config/credentials.php.dist:28 -msgid "Email" -msgstr "Elektronski naslov" - -#: templates/manager/manager.html:26 -msgid "Execute" -msgstr "Izvedi" - -#: templates/javascript/manager.js:96 templates/javascript/src/manager.js:492 -#: templates/manager/manager.html:179 -msgid "File" -msgstr "Datoteke" - -#: config/prefs.php.dist:13 -msgid "File Display" -msgstr "Prikazujem Ddtoteko" - -#: config/prefs.php.dist:56 -msgid "File Modification Time" -msgstr "Datoteka Spreminjanje Easa" - -#: config/prefs.php.dist:55 -msgid "File Name" -msgstr "Ime datoteke" - -#: config/prefs.php.dist:57 -msgid "File Size" -msgstr "Velikost Datoteke" - -#: config/prefs.php.dist:54 -msgid "File Type" -msgstr "Vrsta Datoteke" - -#: manager.php:76 -msgid "File deleted: " -msgstr "Zbrisana Datoteka: " - -#: manager.php:101 -#, php-format -msgid "File received: %s" -msgstr "Sprejeta datoteka: %s" - -#: manager.php:78 -msgid "Folder removed: " -msgstr "Imenik pobrisan: " - -#: templates/manager/manager.html:72 -msgid "Go to:" -msgstr "Pojdi:" - -#: permissions.php:21 -msgid "Gollem Backend Permissions Administration" -msgstr "Gollem Pravice dostopa do podatkovnega vira" - -#: manager.php:492 templates/manager/manager.html:10 -msgid "Group" -msgstr "Skupina" - -#: lib/Gollem.php:770 -msgid "Home" -msgstr "Domov" - -#: manager.php:56 -msgid "Incorrect number of items." -msgstr "Nepravilno tevilo datotek." - -#: manager.php:126 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Enota je bila kopirna na tablico: %s" - -#: manager.php:128 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Enota je bila izrezana za tablico: %s" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "Jezik" - -#: config/prefs.php.dist:81 -msgid "List folders first?" -msgstr "Izpiši najprej imenike?" - -#: login.php:305 -msgid "Login" -msgstr "Prijavi se" - -#: quota.php:62 -msgid "MB free" -msgstr "MB prosto " - -#: quota.php:62 -msgid "MB used" -msgstr "MB zasedeno" - -#: lib/Block/tree_menu.php:3 -msgid "Menu List" -msgstr "Meni" - -#: manager.php:466 -msgid "Modified" -msgstr "Spremenjen" - -#: templates/prefs/columnselect.inc:44 -msgid "Move left" -msgstr "Premakni v levo" - -#: templates/prefs/columnselect.inc:45 -msgid "Move right" -msgstr "Premakni v desno" - -#: manager.php:447 -msgid "Name" -msgstr "Ime" - -#: templates/manager/manager.html:46 templates/manager/manager.html:60 -msgid "Name:" -msgstr "Ime:" - -#: manager.php:35 -msgid "New folder created: " -msgstr "Ustvarjen nov imenik: " - -#: config/prefs.php.dist:91 -msgid "No" -msgstr "Ne" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "Ni omejitev prostora" - -#: manager.php:262 -msgid "OK" -msgstr "OK" - -#: manager.php:486 templates/manager/manager.html:9 -msgid "Owner" -msgstr "Lastnik" - -#: config/credentials.php.dist:23 -msgid "Password" -msgstr "Geslo" - -#: clipboard.php:39 -msgid "Paste" -msgstr "Prilepi" - -#: manager.php:480 -msgid "Permission" -msgstr "Dovoljenje" - -#: selectlist.php:63 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Dovoljenje za %s: %s je bilo zavrnjeno." - -#: manager.php:200 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Dovoljenje za %s je bilo zavrnjeno: %s." - -#: lib/Gollem.php:784 -msgid "Permissions" -msgstr "Dovoljenja" - -#: templates/javascript/login.js:6 templates/javascript/src/login.js:43 -msgid "Please provide your password." -msgstr "Prosim, izberite si vae geslo." - -#: templates/javascript/login.js:6 templates/javascript/src/login.js:38 -msgid "Please provide your username." -msgstr "Prosim, izberite si vae uporabniko ime." - -#: templates/prefs/columnselect.html:5 -msgid "Please select a backend:" -msgstr "Prosim, izberite backend:" - -#: templates/javascript/manager.js:28 templates/javascript/src/manager.js:139 -msgid "Please select an item before this action." -msgstr "Prosim, izberite datoteko preden zaenete s tem dejanjem." - -#: templates/javascript/manager.js:93 templates/javascript/src/manager.js:463 -msgid "Please specify at least one file to upload." -msgstr "Prosim, doloeite vsaj eno datoteko, ki jo elite posodobiti." - -#: quota.php:18 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "Razpoložljiv prostor" - -#: quota.php:61 -msgid "Quota Usage" -msgstr "Porabljen prostor" - -#: templates/manager/manager.html:14 -msgid "Read" -msgstr "Breanje" - -#: manager.php:269 -msgid "Refresh" -msgstr "Osveži" - -#: templates/prefs/columnselect.inc:43 -msgid "Remove column" -msgstr "Odstrani stolpec" - -#: templates/manager/manager.html:44 templates/manager/manager.html:114 -msgid "Rename" -msgstr "Preimenuj" - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "" - -#: lib/Gollem.php:734 lib/Gollem.php:739 -msgid "Root" -msgstr "Koren" - -#: manager.php:260 templates/edit/edit.inc:11 -msgid "Save" -msgstr "Shrani" - -#: templates/prefs/columnselect.html:30 -msgid "Selected Columns:" -msgstr "Izbrani stolpci:" - -#: templates/login/login.html:31 -msgid "Server" -msgstr "Strenik" - -#: config/prefs.php.dist:20 -msgid "Settings" -msgstr "Nastavitve" - -#: config/prefs.php.dist:30 -msgid "Show dotfiles?" -msgstr "Ali pokaem dotdatoteke?" - -#: manager.php:473 -msgid "Size" -msgstr "Velikost" - -#: manager.php:499 -msgid "Sort Direction" -msgstr "Izberi Smer" - -#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:209 -msgid "The following item(s) are folders: " -msgstr "Sledeče datoteke so direktoriji: " - -#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:205 -msgid "The following items will be permanently deleted: " -msgstr "Naslednje datoteke bodo zbrisane za vedno: " - -#: templates/javascript/selectlist.js:2 -#: templates/javascript/src/selectlist.js:16 -msgid "The original opener window has been closed. Exiting." -msgstr "Izvorno okno je bilo zaprto. Zapiram." - -#: login.php:150 -msgid "There are no backends available for the current user." -msgstr "Ni podatkovnih virov za trenutnega uporabnika." - -#: selectlist.php:193 templates/manager/manager.html:125 -msgid "There are no files in this folder." -msgstr "V tem imeniku ni datotek." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "Za izbrisanje s pomnilika izberite daoteke in klinite 'Počisti'." - -#: templates/clipboard/clipboard.html:13 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "Za prilepiti datoteke jih izberite in kliknite 'Prilepi'" - -#: manager.php:440 -msgid "Type" -msgstr "Vrsta" - -#: permissions.php:42 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Nimate priavice dostopa do podatkovnega vira: %s." - -#: lib/Gollem.php:739 lib/Gollem.php:749 -#, php-format -msgid "Up to %s" -msgstr "Nazaj na %s " - -#: manager.php:282 -msgid "Upload File(s)" -msgstr "Naloži datoteke" - -#: config/prefs.php.dist:12 config/prefs.php.dist:19 -msgid "User Interface" -msgstr "Uporabniki vmesnik" - -#: config/credentials.php.dist:18 -msgid "Username" -msgstr "Uporabniko ime" - -#: manager.php:277 -msgid "View Clipboard" -msgstr "Preglej predpomnilnik" - -#: login.php:195 -#, php-format -msgid "Welcome to %s" -msgstr "Pozdravleni v %s " - -#: templates/manager/manager.html:20 -msgid "Write" -msgstr "Pisanje" - -#: config/prefs.php.dist:92 -msgid "Yes" -msgstr "Da" - -#: permissions.php:25 -msgid "You need at least one backend defined to set permissions." -msgstr "Morate navesti vsaj en podatkovni vir za spreminjat pravice dostpa." - -#: lib/MIME/Viewer/images.php:35 -msgid "Your browser does not support inline display of this image type" -msgstr "Vaš brskalnik ne podpira prikaza te vrste slike." - -#: lib/Gollem.php:819 lib/Gollem.php:822 -msgid "_Change Server" -msgstr "Sprenenite strenik" - -#: manager.php:218 selectlist.php:74 -msgid "folder" -msgstr "imenik" - -#: manager.php:219 selectlist.php:75 -msgid "symlink" -msgstr "blinica" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/sv/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/sv/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/sv/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/sv/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/sv/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/sv/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,593 +0,0 @@ -# Gollem Swedish translation -# Copyright 2002-2005 Andreas Dahlén. -# Andreas Dahlén , 2005. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem 0.0.1-cvs\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2005-06-14 22:08+0200\n" -"PO-Revision-Date: 2005-06-16 08:48+0100\n" -"Last-Translator: Andreas Dahlén \n" -"Language-Team: Swedish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: templates/manager/header.inc:639 -#, php-format -msgid "%d items" -msgstr "%d poster" - -#: templates/manager/file_headers.inc:22 -#, php-format -msgid "%s Folders and %s Files (%s Kb)" -msgstr "%s mappar och %s filer (%s Kb)" - -#: templates/manager/file_headers.inc:20 -#, php-format -msgid "%s Folders and 1 File (%s Kb)" -msgstr "%s mappar och 1 fil (%s Kb)" - -#: templates/login/login.inc:72 templates/xppublish/backend.inc:10 -#, php-format -msgid "%s Login" -msgstr "%s inloggning" - -#: manager.php:171 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s klistrades in." - -#: manager.php:67 -#, php-format -msgid "'%s' renamed to '%s'" -msgstr "namet på '%s' byttes till '%s'" - -#: templates/manager/file_headers.inc:17 -#, php-format -msgid "1 Folder and %s Files (%s Kb)" -msgstr "1 mapp och %s fil (%s Kb)" - -#: templates/manager/file_headers.inc:15 -#, php-format -msgid "1 Folder and 1 File (%s Kb)" -msgstr "1 mapp och 1 fil (%s Kb)" - -#: templates/manager/header.inc:639 -msgid "1 item" -msgstr "1 post" - -#: view.php:23 -#, php-format -msgid "Access denied to %s" -msgstr "Access nekades till %s" - -#: lib/Gollem.php:119 lib/Gollem.php:413 lib/Gollem.php:448 lib/Gollem.php:471 -#: lib/Gollem.php:490 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Access nekades till mapp '%s'." - -#: templates/manager/header.inc:660 -msgid "Actions" -msgstr "Åtgärder" - -#: templates/selectlist/footer.inc:3 -msgid "Add" -msgstr "Lägg till" - -#: templates/prefs/columnselect.inc:234 -msgid "Add column" -msgstr "Lägg till kolumn" - -#: templates/manager/header.inc:499 -msgid "All" -msgstr "Alla" - -#: templates/manager/header.inc:180 -msgid "Are you sure you wish to continue?" -msgstr "Är det säkert att du vill fortsätta?" - -#: templates/manager/header.inc:176 -msgid "Are you sure?" -msgstr "Är du säker?" - -#: config/prefs.php.dist:69 -msgid "Ascending" -msgstr "Stigande" - -#: config/prefs.php.dist:94 -msgid "Ask" -msgstr "Fråga" - -#: templates/manager/header.inc:493 -msgid "Attributes" -msgstr "Attribut" - -#: templates/prefs/columnselect.inc:230 -msgid "Available Columns:" -msgstr "Tillgängliga kolumner:" - -#: lib/api.php:46 -msgid "Backends" -msgstr "Backends" - -#: templates/xppublish/browse.inc:7 -msgid "Browse to the folder to upload files to" -msgstr "Bläddra till den mapp som filer skall laddas upp till" - -#: templates/manager/header.inc:521 templates/manager/header.inc:554 -#: templates/manager/header.inc:586 templates/manager/header.inc:618 -#: templates/selectlist/footer.inc:5 -msgid "Cancel" -msgstr "Avbryt" - -#: manager.php:89 -#, php-format -msgid "Cannot chmod %s" -msgstr "Kan inte chmod %s" - -#: manager.php:147 -msgid "Cannot copy items onto clipboard." -msgstr "Kan inte kopiera poster till klippbord." - -#: manager.php:194 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Kan inte skapa hemmamapp: %s" - -#: manager.php:149 -msgid "Cannot cut items onto clipboard." -msgstr "Kan inte klippa ut poster till klippbord." - -#: manager.php:97 -#, php-format -msgid "Cannot delete '%s': %s" -msgstr "Kan inte radera '%s': %s" - -#: manager.php:169 -#, php-format -msgid "Cannot paste '%s' (clipboard cleared): %s" -msgstr "Kan inte klistra in '%s' (urklippshanteraren rensad): %s" - -#: lib/Gollem.php:751 templates/manager/header.inc:599 -#: templates/manager/header.inc:662 -msgid "Change Folder" -msgstr "Ändra mapp" - -#: templates/menu.inc:8 templates/selectlist/header.inc:17 -msgid "Change Server" -msgstr "_Ändra server" - -#: config/prefs.php.dist:21 -msgid "Change file and folder handling settings." -msgstr "Ändra inställningar för hantering av mappar och filer." - -#: config/prefs.php.dist:14 -msgid "Change your file sorting options." -msgstr "Ändra inställningar för sortering av filer." - -#: templates/manager/file_headers.inc:28 -msgid "Check _All/None" -msgstr "Markera _Alla/Ingen" - -#: templates/manager/header.inc:675 -msgid "Chmod Items" -msgstr "Chmod poster" - -#: manager.php:87 -msgid "Chmod done: " -msgstr "Chmod klar: " - -#: templates/prefs/columnselect.inc:224 -msgid "Choose the columns to display in the file manager." -msgstr "Välj kolumner som visas i filhanteraren." - -#: templates/login/login.inc:95 templates/xppublish/backend.inc:33 -#, php-format -msgid "Connect to: %s" -msgstr "Anslut till: %s" - -#: templates/manager/header.inc:678 -msgid "Copy Items" -msgstr "Kopiera poster" - -#: lib/Gollem.php:748 templates/manager/header.inc:567 -#: templates/manager/header.inc:665 -msgid "Create Folder" -msgstr "Skapa mapp" - -#: templates/manager/header.inc:677 -msgid "Cut Items" -msgstr "Klipp ut poster" - -#: config/prefs.php.dist:59 -msgid "Default sorting criteria:" -msgstr "Förvald sorteringsordning:" - -#: config/prefs.php.dist:72 -msgid "Default sorting direction:" -msgstr "Förvald sorteringsriktning:" - -#: templates/manager/header.inc:672 -msgid "Delete Items" -msgstr "Radera post" - -#: config/prefs.php.dist:96 -msgid "Delete folders recursively?" -msgstr "Radera mappar rekursivt?" - -#: config/prefs.php.dist:70 -msgid "Descending" -msgstr "Fallande" - -#: templates/selectlist/footer.inc:4 -msgid "Done" -msgstr "Klar" - -#: manager.php:222 templates/manager/file_headers.inc:42 -msgid "Download" -msgstr "Hämta" - -#: xppublish.php:138 -#, php-format -msgid "ERROR: %s" -msgstr "Fel: %s" - -#: config/credentials.php.dist:28 -msgid "Email" -msgstr "E-post" - -#: templates/manager/header.inc:514 -msgid "Execute" -msgstr "Kör" - -#: templates/manager/header.inc:464 templates/manager/header.inc:649 -msgid "File" -msgstr "Fil" - -#: config/prefs.php.dist:13 -msgid "File Display" -msgstr "Visa fil" - -#: config/prefs.php.dist:56 -msgid "File Modification Time" -msgstr "Ändringstid" - -#: config/prefs.php.dist:55 -msgid "File Name" -msgstr "Filnamn" - -#: config/prefs.php.dist:57 -msgid "File Size" -msgstr "Filstorlek" - -#: config/prefs.php.dist:54 -msgid "File Type" -msgstr "Filtyp" - -#: templates/xppublish/javascript.inc:63 -msgid "File Upload" -msgstr "Ladda upp" - -#: manager.php:93 -msgid "File deleted: " -msgstr "Fil raderad: " - -#: manager.php:120 -#, php-format -msgid "File received: %s" -msgstr "Fil mottagen: %s" - -#: manager.php:95 -msgid "Folder removed: " -msgstr "Mapp raderad: " - -#: templates/manager/header.inc:607 -msgid "Go to:" -msgstr "Gå till:" - -#: templates/manager/header.inc:498 templates/manager/file_headers.inc:64 -msgid "Group" -msgstr "Grupp" - -#: lib/Gollem.php:744 -msgid "Home" -msgstr "Hem" - -#: manager.php:71 -msgid "Incorrect number of items." -msgstr "Felaktigt antal poster." - -#: manager.php:140 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Poster kopierade till klippbord: %s" - -#: manager.php:142 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Poster urklippta till klippbord: %s" - -#: config/prefs.php.dist:81 -msgid "List folders first?" -msgstr "Visa mappar först?" - -#: templates/login/login.inc:119 -msgid "Log in" -msgstr "Logga in" - -#: templates/xppublish/login.inc:2 -#, php-format -msgid "Login to %s" -msgstr "Logga in på %s" - -#: lib/Block/tree_menu.php:3 -msgid "Menu List" -msgstr "Menylista" - -#: templates/manager/file_headers.inc:47 -msgid "Modified" -msgstr "Ändrad" - -#: templates/prefs/columnselect.inc:244 -msgid "Move left" -msgstr "Flytta vänster" - -#: templates/prefs/columnselect.inc:246 -msgid "Move right" -msgstr "Flytta höger" - -#: templates/manager/file_headers.inc:38 -msgid "Name" -msgstr "Namn" - -#: templates/manager/header.inc:543 templates/manager/header.inc:575 -msgid "Name:" -msgstr "Namn:" - -#: manager.php:48 -msgid "New folder created: " -msgstr "Ny mapp skapades: " - -#: config/prefs.php.dist:92 -msgid "No" -msgstr "Nej" - -#: templates/manager/header.inc:553 templates/manager/header.inc:585 -#: templates/manager/header.inc:617 -msgid "OK" -msgstr "OK" - -#: templates/manager/header.inc:497 templates/manager/file_headers.inc:60 -msgid "Owner" -msgstr "Ägare" - -#: templates/xppublish/login.inc:14 config/credentials.php.dist:23 -msgid "Password" -msgstr "Lösenord" - -#: templates/manager/header.inc:684 -msgid "Paste Items" -msgstr "Klistra in post" - -#: templates/manager/file_headers.inc:56 -msgid "Permission" -msgstr "Behörighet" - -#: selectlist.php:65 templates/xppublish/browse.inc:28 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Behörighet nekades till %s: %s" - -#: manager.php:202 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Behörighet nekades till mapp '%s': %s" - -#: xppublish.php:55 -msgid "Please enter your Username and Password." -msgstr "Ange ditt användarnamn och lösenord." - -#: templates/login/login.inc:36 -msgid "Please provide your password." -msgstr "Ange ditt lösenord." - -#: templates/login/login.inc:31 -msgid "Please provide your username." -msgstr "Ange ditt användarnamn." - -#: templates/prefs/columnselect.inc:215 -msgid "Please select a backend:" -msgstr "Völj backend:" - -#: templates/manager/header.inc:109 -msgid "Please select an item before this action." -msgstr "Välj en post först." - -#: templates/manager/header.inc:435 -msgid "Please specify at least one file to upload." -msgstr "Ange minst en fil att ladda upp." - -#: templates/manager/header.inc:502 -msgid "Read" -msgstr "Läs" - -#: templates/manager/header.inc:642 -msgid "Refresh" -msgstr "Förnya" - -#: templates/prefs/columnselect.inc:236 -msgid "Remove column" -msgstr "Ta bort kolumn" - -#: templates/manager/header.inc:535 -msgid "Rename" -msgstr "Byt namn" - -#: templates/manager/header.inc:669 -msgid "Rename Items" -msgstr "Byt namn på poster" - -#: lib/Gollem.php:710 lib/Gollem.php:715 -msgid "Root" -msgstr "Root" - -#: templates/manager/header.inc:520 -msgid "Save" -msgstr "Spara" - -#: templates/xppublish/backend.inc:27 -msgid "Select" -msgstr "Välj" - -#: templates/prefs/columnselect.inc:240 -msgid "Selected Columns:" -msgstr "Valda kolumner:" - -#: templates/login/login.inc:85 templates/xppublish/backend.inc:22 -msgid "Server" -msgstr "Server" - -#: config/prefs.php.dist:20 -msgid "Settings" -msgstr "Inställningar" - -#: config/prefs.php.dist:30 -msgid "Show dotfiles?" -msgstr "Visa punktfiler?" - -#: templates/manager/file_headers.inc:52 -msgid "Size" -msgstr "Storlek" - -#: templates/manager/file_headers.inc:32 templates/manager/file_headers.inc:37 -#: templates/manager/file_headers.inc:46 templates/manager/file_headers.inc:51 -msgid "Sort Direction" -msgstr "Sorteringsriktning" - -#: templates/manager/header.inc:180 -msgid "The following item(s) are folders: " -msgstr "Följande post(er) är mappar: " - -#: templates/manager/header.inc:176 -msgid "The following items will be permanently deleted: " -msgstr "Följande post(er) kommer att raderas: " - -#: templates/manager/empty_dir.inc:1 templates/selectlist/empty_dir.inc:2 -msgid "There are no files in this folder." -msgstr "Det finns inga filer i aktuell mapp." - -#: templates/xppublish/browse.inc:74 -msgid "" -"There are no folders in the current folder; click 'Next' if you want to " -"upload files to this folder." -msgstr "" -"Det finns inga mappar i aktuell mapp; klicka 'Nästa' om du vill ladda upp " -"filer till aktuell mapp." - -#: templates/manager/file_headers.inc:33 -msgid "Type" -msgstr "Typ" - -#: lib/Gollem.php:715 lib/Gollem.php:725 -#, php-format -msgid "Up to %s" -msgstr "Upp till %s" - -#: templates/manager/header.inc:654 -msgid "Upload File(s)" -msgstr "Ladda upp fil(er)" - -#: templates/xppublish/javascript.inc:63 -#, php-format -msgid "Upload Files to %s" -msgstr "Ladda upp filer till %s" - -#: xppublish.php:37 -#, php-format -msgid "Upload to %s" -msgstr "Ladda upp till %s" - -#: xppublish.php:25 -#, php-format -msgid "Upload your files to %s on %s." -msgstr "Ladda upp filer till %s på %s." - -#: config/prefs.php.dist:12 config/prefs.php.dist:19 -msgid "User Interface" -msgstr "Användargränssnitt" - -#: templates/xppublish/login.inc:11 config/credentials.php.dist:18 -msgid "Username" -msgstr "Användarnamn" - -#: xppublish.php:51 -msgid "Username and Password are incorrect." -msgstr "Felaktigt användarnamn och/eller lösenord." - -#: login.php:167 -#, php-format -msgid "Welcome to %s" -msgstr "Välkommen till %s" - -#: templates/xppublish/browse.inc:10 -msgid "" -"When you are inside the folder you wish to upload to, click the 'Next' " -"button to upload files." -msgstr "" -"När du är i den mapp som du vill ladda upp till, klicka på 'Nästa' för att " -"ladda upp filer." - -#: templates/manager/header.inc:508 -msgid "Write" -msgstr "Skriv" - -#: config/prefs.php.dist:93 -msgid "Yes" -msgstr "Ja" - -#: manager.php:52 -msgid "You do not have permission to create this folder." -msgstr "Behörighet saknas för att skapa mapp." - -#: manager.php:153 -msgid "You do not have permission to cut/copy items." -msgstr "Behörighet saknas för att kopiera/klippa ut poster." - -#: manager.php:103 -msgid "You do not have permission to delete or change permissions on items." -msgstr "Behörighet saknas för att radera eller ändra behörigheter på poster." - -#: manager.php:179 -msgid "You do not have permission to paste items." -msgstr "Behörighet saknas för att klistra in poster." - -#: manager.php:74 -msgid "You do not have permission to rename items." -msgstr "Börighet saknas för att byta namn på poster." - -#: manager.php:125 -msgid "You do not have permission to upload items." -msgstr "Behörighet saknas för att ladda upp poster." - -#: lib/MIME/Viewer/images.php:39 -msgid "Your browser does not support inline display of this image type" -msgstr "Din webläsare stödjer inte inline-visning av den här bildtypen" - -#: lib/Gollem.php:183 lib/Gollem.php:194 -msgid "[home]" -msgstr "[hem]" - -#: templates/menu.inc:6 templates/menu.inc:19 -msgid "_Change Server" -msgstr "_Ändra server" - -#: manager.php:223 selectlist.php:76 -msgid "folder" -msgstr "mapp" - -#: manager.php:224 selectlist.php:77 -msgid "symlink" -msgstr "symlink" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/tr/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/tr/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/tr/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/tr/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/tr/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/tr/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,578 +0,0 @@ -# Turkish language for Horde 4 -# Horde 4 için türkçe dili -# Copyright 2008-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Core package. -# İstanbul Technical University - Office of Information Technologies - System Support Group sistemdestek [at] itu.edu.tr -# İstanbul Teknik Üniversitesi - Bilgi İşleml Daire Başkanlığı - Sistem Destek Grubu - sistemdestek [at] itu.edu.tr -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H4 (2.0.1)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-05-13 11:20+0100\n" -"PO-Revision-Date: 2012-06-15 13:15+0200\n" -"Last-Translator: ITU-BIDB\n" -"Language-Team: i18n@lists.horde.org\n" -"Language: Turkish\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: manager.php:62 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\", \"%s\" olarak yeniden isimlendirilmiştir" - -#: quota.php:50 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:556 -#, php-format -msgid "%d item" -msgstr "%d madde" - -#: manager.php:556 -#, php-format -msgid "%d items" -msgstr "%d madde" - -#: edit.php:33 -#, php-format -msgid "%s successfully saved." -msgstr "%s başarılı olarak kaydedildi." - -#: manager.php:177 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s başarılı olarak yapıştırıldı." - -#: edit.php:35 edit.php:49 -#, php-format -msgid "Access denied to %s" -msgstr "%s için erişim engellendi" - -#: lib/Gollem.php:48 lib/Gollem.php:299 lib/Gollem.php:348 lib/Gollem.php:370 -#: lib/Gollem.php:390 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "\"%s\" dizinine erişim engellendi." - -#: templates/manager/manager.html:110 -msgid "Actions:" -msgstr "Eylemler:" - -#: selectlist.php:79 -msgid "Add" -msgstr "Ekle" - -#: templates/manager/manager.html:11 -msgid "All" -msgstr "Tümü" - -#: templates/javascript_defs.php:20 -msgid "Are you sure you wish to continue?" -msgstr "Devam etmek istediğinize emin misiniz?" - -#: templates/javascript_defs.php:18 -msgid "Are you sure?" -msgstr "Emin misiniz?" - -#: config/prefs.php:67 -msgid "Ascending" -msgstr "Artan" - -#: config/prefs.php:97 -msgid "Ask" -msgstr "Sor" - -#: templates/manager/manager.html:5 -msgid "Attributes" -msgstr "Özellikler" - -#: lib/Application.php:124 -msgid "Backend" -msgstr "Öz Yapılandırma" - -#: lib/Application.php:86 -msgid "Backends" -msgstr "Öz Yapılandırma" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "Panodaki içerik aşağıda listelenmiştir." - -#: clipboard.php:24 manager.php:281 selectlist.php:81 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "İptal" - -#: manager.php:82 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "%s için izin %s yapılamadı." - -#: manager.php:152 -msgid "Cannot copy items onto clipboard." -msgstr "Maddeler, panoya kopyalanamadı." - -#: manager.php:223 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Ev dizini %s yaratılamadı." - -#: manager.php:154 -msgid "Cannot cut items onto clipboard." -msgstr "Maddeler kesilip, panoya aktarilamadı." - -#: manager.php:179 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "\"%s\" yapıştırılamadı (dosya panodan kaldırıldı): %s" - -#: manager.php:307 templates/manager/manager.html:70 -msgid "Change Folder" -msgstr "Dizini Değiştir" - -#: templates/manager/manager.html:112 -msgid "Change Permissions" -msgstr "İzinleri Değiştir" - -#: lib/Gollem.php:592 -msgid "Change Server" -msgstr "Sunucu Değiştir" - -#: lib/Application.php:286 -msgid "Check Quota" -msgstr "Kotayı Kontrol Et" - -#: manager.php:552 -msgid "Check _All/None" -msgstr "_Hepsini/Hiçbirini Seç" - -#: manager.php:80 -msgid "Chmod done: " -msgstr "İzin değişimi yapıldı:" - -#: lib/Application.php:256 -msgid "Choose which columns to display, and in what order:" -msgstr "Gösterilecek sütunları ve sırasını seçin:" - -#: clipboard.php:25 templates/manager/manager.html:131 -msgid "Clear" -msgstr "Temizle" - -#: clipboard.php:44 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "Pano" - -#: quota.php:26 -msgid "Close" -msgstr "Kapat" - -#: lib/Application.php:260 -msgid "Columns that will not be displayed:" -msgstr "Gösterilmeyecek sütunlar:" - -#: clipboard.php:28 templates/manager/manager.html:115 -msgid "Copy" -msgstr "Kopyala" - -#: manager.php:300 templates/manager/manager.html:58 -msgid "Create Folder" -msgstr "Dizin Yarat" - -#: permissions.php:45 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" -"\"%s\" için boş izin yaratıldı. Şimdi bu yapılandırma için açıkca izin " -"vermelisiniz." - -#: templates/clipboard/clipboard.html:21 -msgid "Current directory:" -msgstr "Geçerli olan dizin:" - -#: clipboard.php:27 templates/manager/manager.html:116 -msgid "Cut" -msgstr "Kes" - -#: config/prefs.php:59 -msgid "Default sorting criteria:" -msgstr "Varsayılan sıralama ölçütü:" - -#: config/prefs.php:70 -msgid "Default sorting direction:" -msgstr "Varsayılan sıralama yönü:" - -#: templates/manager/manager.html:119 -msgid "Delete" -msgstr "Sil" - -#: config/prefs.php:99 -msgid "Delete folders recursively?" -msgstr "Dizinler özyineli olarak silinsin mi?" - -#: config/prefs.php:68 -msgid "Descending" -msgstr "Azalan" - -#: selectlist.php:80 -msgid "Done" -msgstr "Tamam" - -#: manager.php:427 -#, php-format -msgid "Download %s" -msgstr "%s indir" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "HATA:" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "Düzenle %s" - -#: templates/manager/manager.html:26 -msgid "Execute" -msgstr "Çalıştır" - -#: templates/javascript_defs.php:22 templates/manager/manager.html:201 -msgid "File" -msgstr "Dosya" - -#: config/prefs.php:86 -msgid "File Actions" -msgstr "Dosya Eylemleri" - -#: config/prefs.php:15 -msgid "File Display" -msgstr "Dosya Görüntüle" - -#: config/prefs.php:56 -msgid "File Modification Time" -msgstr "Dosya Değişim Saati" - -#: config/prefs.php:55 -msgid "File Name" -msgstr "Dosya Adı" - -#: config/prefs.php:57 -msgid "File Size" -msgstr "Dosya Boyutu" - -#: config/prefs.php:54 -msgid "File Type" -msgstr "Dosya Tipi" - -#: config/prefs.php:87 -msgid "File action settings." -msgstr "Dosya eylem ayarları." - -#: manager.php:97 -msgid "File deleted: " -msgstr "Dosya silindi: " - -#: config/prefs.php:16 -msgid "File display preferences." -msgstr "Dosya görüntüleme seçenekleri." - -#: manager.php:118 -#, php-format -msgid "File received: %s" -msgstr "Dosya alındı: %s" - -#: lib/Api.php:124 -msgid "Files must be written inside a VFS backend." -msgstr "" -"Dizinler, bir VFS (sanal dosya sistemi) yapılandırması içerisine " -"yazılmalıdır." - -#: templates/manager/manager.html:129 -msgid "Filter" -msgstr "Süzgeç" - -#: templates/manager/manager.html:128 -msgid "Filter:" -msgstr "Süzgeç:" - -#: manager.php:89 -msgid "Folder removed: " -msgstr "Dizin silindi: " - -#: lib/Api.php:155 lib/Api.php:186 -msgid "Folders must be created inside a VFS backend." -msgstr "" -"Dizinler, bir VFS (sanal dosya sistemi) yapılandırması içerisine " -"yazılmalıdır." - -#: templates/manager/manager.html:72 -msgid "Go to:" -msgstr "Git:" - -#: manager.php:531 templates/manager/manager.html:10 -msgid "Group" -msgstr "Grup" - -#: lib/Api.php:405 -#, php-format -msgid "Invalid backend requested: %s" -msgstr "Geçersiz yapılandırma istemi: %s" - -#: manager.php:146 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "Madde, panoya kopyalandı: %s" - -#: manager.php:148 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "Madde, kesildi ve panoya yerleştirildi: %s" - -#: config/prefs.php:77 -msgid "Items per page" -msgstr "Sayfa başına madde" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "Dil" - -#: config/prefs.php:34 -msgid "List folders first?" -msgstr "Dizinler önce listelensin mi?" - -#: manager.php:501 -msgid "Modified" -msgstr "Değiştirildi" - -#: manager.php:479 -msgid "Name" -msgstr "Ad" - -#: templates/manager/manager.html:46 templates/manager/manager.html:60 -msgid "Name:" -msgstr "Ad:" - -#: manager.php:47 -msgid "New folder created: " -msgstr "Yeni dizin yaratıldı: " - -#: config/prefs.php:95 -msgid "No" -msgstr "Hayır" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "Kota bulunamadı." - -#: manager.php:282 -msgid "OK" -msgstr "Tamam" - -#: manager.php:524 templates/manager/manager.html:9 -msgid "Owner" -msgstr "Sahip" - -#: clipboard.php:26 -msgid "Paste" -msgstr "Yapıştır" - -#: manager.php:517 -msgid "Permission" -msgstr "İzin" - -#: selectlist.php:65 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "%s için izin yok: %s" - -#: manager.php:216 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "\"%s\" dizini için izin yok: %s" - -#: lib/Api.php:413 -msgid "Permission denied to this backend." -msgstr "Bu arka araç için izin yok." - -#: templates/javascript_defs.php:13 -msgid "Please provide your password." -msgstr "Lütfen şifrenizi giriniz." - -#: templates/javascript_defs.php:12 -msgid "Please provide your username." -msgstr "Lütfen kullanıcı adınızı giriniz." - -#: templates/javascript_defs.php:16 -msgid "Please select an item before this action." -msgstr "Lütfen bu eylem için bir madde seçiniz." - -#: templates/javascript_defs.php:21 -msgid "Please specify at least one file to upload." -msgstr "Lütfen yüklemek için en az bir dosya belirtiniz." - -#: quota.php:57 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "Kota Görüntüle" - -#: templates/manager/manager.html:14 -msgid "Read" -msgstr "Okuma" - -#: manager.php:287 -msgid "Refresh" -msgstr "Tazale" - -#: templates/manager/manager.html:44 templates/manager/manager.html:122 -msgid "Rename" -msgstr "İsim değiştir" - -#: lib/Api.php:200 -msgid "Renaming across backends is not supported." -msgstr "Yapılandırmalar arası isim değişimi desteklenmemektedir." - -#: lib/Api.php:194 -msgid "Renaming of backends is not allowed." -msgstr "Yapılandırmaların isimleri değiştirilemez." - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "Sıfırla" - -#: manager.php:280 templates/edit/edit.inc:11 -msgid "Save" -msgstr "Kaydet" - -#: clipboard.php:48 templates/clipboard/clipboard.html:28 -msgid "Select All" -msgstr "Hepsini Seç" - -#: clipboard.php:49 -msgid "Select None" -msgstr "Seçimi sıfırla" - -#: lib/Application.php:258 -msgid "Select a backend:" -msgstr "Yapılandırma seç:" - -#: templates/login/login.html:31 -msgid "Server" -msgstr "Sunucu" - -#: config/prefs.php:27 -msgid "Show dotfiles?" -msgstr "Nokta ile başlayan dosyalar görüntülensin mi?" - -#: manager.php:509 -msgid "Size" -msgstr "Boyut" - -#: lib/Api.php:229 -msgid "The application folder can not be deleted." -msgstr "Uygulama dizini silinemez." - -#: templates/javascript_defs.php:19 -msgid "The following item(s) are folders:" -msgstr "Bu maddeler dizindir:" - -#: templates/javascript_defs.php:17 -msgid "The following items will be permanently deleted:" -msgstr "Bu maddeler kalıcı olarak silinecektir:" - -#: templates/javascript_defs.php:25 -msgid "The original opener window has been closed. Exiting." -msgstr "Kaynak pencere kapatıldı. Çıkılıyor." - -#: selectlist.php:176 templates/manager/manager.html:140 -msgid "There are no files in this folder." -msgstr "Bu dizinde hiç dosya yok." - -#: lib/Application.php:257 -msgid "These columns will display in this order:" -msgstr "Sütunlar şu sırada gösterilecek:" - -#: templates/clipboard/clipboard.html:17 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" -"Panodan maddeleri silmek için, yanındaki kutucuğu işaretleyip, "" -"Temizle" ye tıklayınız." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" -"Panodaki maddeleri geçerli dizine yapıştırmak için, yanındaki kutucuğu " -"işaretleyip, "Yapıştır" a tıklayınız." - -#: manager.php:471 -msgid "Type" -msgstr "Tip" - -#: lib/Api.php:409 -msgid "Unable to create Gollem session" -msgstr "Gollem oturumu açılamadı" - -#: permissions.php:40 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "Yapılandırma izni yaratılamadı: %s" - -#: manager.php:99 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "\"%s\" dosyası silinemedi: %s" - -#: manager.php:91 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "\"%s\" dizini silinemedi: %s" - -#: lib/Gollem.php:556 lib/Gollem.php:566 -#, php-format -msgid "Up to %s" -msgstr "%s e kadar" - -#: manager.php:296 -msgid "Upload File(s)" -msgstr "Dosya Yükleme" - -#: config/prefs.php:14 config/prefs.php:85 -msgid "User Interface" -msgstr "Kullanıcı Arayüzü" - -#: manager.php:291 -msgid "View Clipboard" -msgstr "Panoyu Göster" - -#: templates/manager/manager.html:20 -msgid "Write" -msgstr "Yazma" - -#: config/prefs.php:96 -msgid "Yes" -msgstr "Evet" - -#: permissions.php:20 -msgid "You need at least one backend defined to set permissions." -msgstr "" -"İzinleri belirleyebilmek için en az bir arka araç tanımlanmış olmalıdır." - -#: lib/Gollem.php:590 lib/Gollem.php:593 -msgid "_Change Server" -msgstr "_Sunucu Değiştir" - -#: lib/Application.php:273 -msgid "_My Home" -msgstr "_Evim" - -#: lib/Application.php:276 -msgid "_Permissions" -msgstr "İ_zinler" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/uk/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/uk/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/uk/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/uk/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/uk/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/uk/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,634 +0,0 @@ -# Ukrainian translations for Gollem package. -# Copyright 2007-2016 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Gollem package. -# Automatically generated, 2007. -# -msgid "" -msgstr "" -"Project-Id-Version: Gollem H3 (1.1-cvs)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2007-06-18 13:25+0300\n" -"PO-Revision-Date: 2007-06-19 12:05+0300\n" -"Last-Translator: Andriy Kopystyansky \n" -"Language-Team: Ukrainian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\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" - -#: manager.php:52 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" перейменовано на \"%s\"" - -#: quota.php:56 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:271 -#, php-format -msgid "%d items" -msgstr "%d items" - -#: manager.php:437 -#, php-format -msgid "%s Folders and %s Files (%s Kb)" -msgstr "%s папок і %s файлів (%s Кб)" - -#: manager.php:435 -#, php-format -msgid "%s Folders and 1 File (%s Kb)" -msgstr "%s папок і 1 файл (%s Кб)" - -#: login.php:144 -#, php-format -msgid "%s Login" -msgstr "" - -#: edit.php:35 -#, php-format -msgid "%s successfully saved." -msgstr "%s успішно збережено." - -#: manager.php:167 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s успішно вставлено." - -#: manager.php:432 -#, php-format -msgid "1 Folder and %s Files (%s Kb)" -msgstr "1 папка і %s файлів (%s Кб)" - -#: manager.php:430 -#, php-format -msgid "1 Folder and 1 File (%s Kb)" -msgstr "1 папка і 1 файл (%s Кб)" - -#: manager.php:271 -msgid "1 item" -msgstr "" - -#: gollem.js.php:44 -msgid "" -"A popup window could not be opened. Perhaps you have set your browser to " -"block popup windows?" -msgstr "" - -#: edit.php:33 edit.php:43 view.php:33 -#, php-format -msgid "Access denied to %s" -msgstr "Доступ до %s заборонено" - -#: lib/Gollem.php:109 lib/Gollem.php:383 lib/Gollem.php:445 lib/Gollem.php:466 -#: lib/Gollem.php:483 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "Доступ до папки \"%s\" заборонений." - -#: templates/manager/manager.html:124 -msgid "Actions:" -msgstr "Дії:" - -#: selectlist.php:99 -msgid "Add" -msgstr "Додати" - -#: templates/prefs/columnselect.inc:43 -msgid "Add column" -msgstr "Додати колонку" - -#: templates/manager/manager.html:11 -msgid "All" -msgstr "Всі" - -#: gollem.js.php:55 -msgid "Are you sure you wish to continue?" -msgstr " Впевнені, що хочете продовжити?" - -#: gollem.js.php:53 -msgid "Are you sure?" -msgstr "Ви впевнені?" - -#: config/prefs.php.dist:69 -msgid "Ascending" -msgstr "По зростанню" - -#: config/prefs.php.dist:93 -msgid "Ask" -msgstr "Питати" - -#: templates/manager/manager.html:5 -msgid "Attributes" -msgstr "Атрибути" - -#: templates/prefs/columnselect.html:20 -msgid "Available Columns:" -msgstr "Доступні колонки:" - -#: lib/api.php:50 -msgid "Backends" -msgstr "" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "" - -#: clipboard.php:38 manager.php:266 selectlist.php:101 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "Відмінити" - -#: manager.php:72 -#, php-format -msgid "Cannot chmod %s: %s" -msgstr "" - -#: manager.php:141 -msgid "Cannot copy items onto clipboard." -msgstr "" - -#: manager.php:200 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "Не можу створити домашню папку: %s" - -#: manager.php:143 -msgid "Cannot cut items onto clipboard." -msgstr "" - -#: manager.php:165 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "" - -#: templates/manager/manager.html:70 -msgid "Change Folder" -msgstr "Змінити папку" - -#: templates/manager/manager.html:126 -msgid "Change Permissions" -msgstr "Змінити права" - -#: selectlist.php:109 lib/Gollem.php:813 -msgid "Change Server" -msgstr "Змінити сервер" - -#: lib/Gollem.php:770 -msgid "Change _Folder" -msgstr "Змінити папку" - -#: config/prefs.php.dist:21 -msgid "Change file and folder handling settings." -msgstr "" - -#: config/prefs.php.dist:14 -msgid "Change your file sorting options." -msgstr "Змініть опції сортування файлів." - -#: lib/Gollem.php:788 -msgid "Check Quota" -msgstr "" - -#: manager.php:528 -msgid "Check _All/None" -msgstr "Вибрати всі/жодного" - -#: manager.php:70 -msgid "Chmod done: " -msgstr "" - -#: templates/prefs/columnselect.html:12 -msgid "Choose the columns to display in the file manager." -msgstr "" - -#: clipboard.php:39 -msgid "Clear" -msgstr "Ясно" - -#: clipboard.php:18 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "" - -#: quota.php:32 -msgid "Close" -msgstr "Закрити" - -#: login.php:258 -#, php-format -msgid "Connect to: %s" -msgstr "З'єднання з: %s" - -#: clipboard.php:42 templates/manager/manager.html:129 -msgid "Copy" -msgstr "Копіювати" - -#: lib/Template.php:235 -#, php-format -msgid "Could not save the compiled template file '%s'." -msgstr "Не можу зберегти скомпільований файл шаблону '%s'." - -#: templates/manager/manager.html:58 -msgid "Create Folder" -msgstr "Створити папку" - -#: permissions.php:47 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "" - -#: templates/clipboard/clipboard.html:17 -msgid "Current directory:" -msgstr "Поточна папка:" - -#: clipboard.php:41 templates/manager/manager.html:130 -msgid "Cut" -msgstr "" - -#: config/prefs.php.dist:59 -msgid "Default sorting criteria:" -msgstr "Типовий критерій сортування:" - -#: config/prefs.php.dist:72 -msgid "Default sorting direction:" -msgstr "Типовий напрям сортування:" - -#: templates/manager/manager.html:133 -msgid "Delete" -msgstr "Витерти" - -#: config/prefs.php.dist:95 -msgid "Delete folders recursively?" -msgstr "" - -#: config/prefs.php.dist:70 -msgid "Descending" -msgstr "По спаданню" - -#: selectlist.php:100 -msgid "Done" -msgstr "" - -#: manager.php:226 -msgid "Download" -msgstr "Скачати" - -#: manager.php:404 -#, php-format -msgid "Download %s" -msgstr "Скачати %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "" - -#: manager.php:225 -msgid "Edit" -msgstr "Редагувати" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "Редагувати %s" - -#: config/credentials.php.dist:28 -msgid "Email" -msgstr "Е-пошта" - -#: templates/manager/manager.html:26 -msgid "Execute" -msgstr "Виконати" - -#: gollem.js.php:57 templates/manager/manager.html:203 -msgid "File" -msgstr "Файл" - -#: config/prefs.php.dist:13 -msgid "File Display" -msgstr "" - -#: config/prefs.php.dist:56 -msgid "File Modification Time" -msgstr "Час зміни файлу" - -#: config/prefs.php.dist:55 -msgid "File Name" -msgstr "Назва файлу" - -#: config/prefs.php.dist:57 -msgid "File Size" -msgstr "Об'єм файлу" - -#: config/prefs.php.dist:54 -msgid "File Type" -msgstr "Тип файлу" - -#: manager.php:87 -msgid "File deleted: " -msgstr "Файл витерто: " - -#: manager.php:109 -#, php-format -msgid "File received: %s" -msgstr "Файл отримано: %s" - -#: manager.php:80 -msgid "Folder removed: " -msgstr "" - -#: templates/manager/manager.html:72 -msgid "Go to:" -msgstr "" - -#: permissions.php:21 -msgid "Gollem Backend Permissions Administration" -msgstr "" - -#: manager.php:508 templates/manager/manager.html:10 -msgid "Group" -msgstr "Група" - -#: manager.php:56 -msgid "Incorrect number of items." -msgstr "" - -#: manager.php:134 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "" - -#: manager.php:136 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "" - -#: templates/login/login.html:68 -msgid "Language" -msgstr "Мова" - -#: config/prefs.php.dist:81 -msgid "List folders first?" -msgstr "" - -#: login.php:307 -msgid "Login" -msgstr "Вхід" - -#: lib/Block/tree_menu.php:3 -msgid "Menu List" -msgstr "Список меню" - -#: manager.php:478 -msgid "Modified" -msgstr "" - -#: templates/prefs/columnselect.inc:45 -msgid "Move left" -msgstr "Посунути вліво" - -#: templates/prefs/columnselect.inc:46 -msgid "Move right" -msgstr "Посунути вправо" - -#: manager.php:456 -msgid "Name" -msgstr "Ім'я" - -#: templates/manager/manager.html:46 templates/manager/manager.html:60 -msgid "Name:" -msgstr "" - -#: manager.php:35 -msgid "New folder created: " -msgstr "Нову папку створено: " - -#: config/prefs.php.dist:91 -msgid "No" -msgstr "Ні" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "Квоту не знайдено." - -#: manager.php:267 -msgid "OK" -msgstr "ОК" - -#: manager.php:501 templates/manager/manager.html:9 -msgid "Owner" -msgstr "Власник" - -#: config/credentials.php.dist:23 -msgid "Password" -msgstr "Пароль" - -#: clipboard.php:40 -msgid "Paste" -msgstr "Вставити" - -#: manager.php:494 -msgid "Permission" -msgstr "Права" - -#: selectlist.php:64 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "Доступ до %s заборонено: %s" - -#: manager.php:208 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "Доступ до папки \"%s\" заборонено: %s" - -#: gollem.js.php:48 -msgid "Please provide your password." -msgstr "Будь-ласка, введіть пароль." - -#: gollem.js.php:47 -msgid "Please provide your username." -msgstr "Будь-ласка, вкажіть назву користувача." - -#: templates/prefs/columnselect.html:5 -msgid "Please select a backend:" -msgstr "" - -#: gollem.js.php:51 -msgid "Please select an item before this action." -msgstr "" - -#: gollem.js.php:56 -msgid "Please specify at least one file to upload." -msgstr "Будь-ласка, вкажіть хоча б один файл для підвантаження." - -#: quota.php:19 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "" - -#: templates/manager/manager.html:14 -msgid "Read" -msgstr "Читати" - -#: manager.php:273 -msgid "Refresh" -msgstr "Оновити" - -#: templates/prefs/columnselect.inc:44 -msgid "Remove column" -msgstr "Видалити колонку" - -#: templates/manager/manager.html:44 templates/manager/manager.html:136 -msgid "Rename" -msgstr "Перейменувати" - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "Очистити" - -#: lib/Gollem.php:727 lib/Gollem.php:732 -msgid "Root" -msgstr "" - -#: manager.php:265 templates/edit/edit.inc:11 -msgid "Save" -msgstr "Зберегти" - -#: templates/prefs/columnselect.html:30 -msgid "Selected Columns:" -msgstr "Вибрані колонки:" - -#: templates/login/login.html:32 -msgid "Server" -msgstr "Сервер" - -#: config/prefs.php.dist:20 -msgid "Settings" -msgstr "Налаштування" - -#: config/prefs.php.dist:30 -msgid "Show dotfiles?" -msgstr "" - -#: manager.php:486 -msgid "Size" -msgstr "Об'єм" - -#: gollem.js.php:54 -msgid "The following item(s) are folders:" -msgstr "" - -#: gollem.js.php:52 -msgid "The following items will be permanently deleted:" -msgstr "" - -#: gollem.js.php:60 -msgid "The original opener window has been closed. Exiting." -msgstr "" - -#: login.php:151 -msgid "There are no backends available for the current user." -msgstr "" - -#: selectlist.php:199 templates/manager/manager.html:147 -msgid "There are no files in this folder." -msgstr "В цій папці нема файлів." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "" - -#: templates/clipboard/clipboard.html:13 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "" - -#: manager.php:448 -msgid "Type" -msgstr "Тип" - -#: permissions.php:42 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "" - -#: manager.php:85 -#, php-format -msgid "Unable to delete file %s: %s" -msgstr "Не можу витерти файл %s: %s" - -#: manager.php:78 -#, php-format -msgid "Unable to delete folder %s: %s" -msgstr "Не можу витерти папку %s: %s" - -#: lib/Gollem.php:732 lib/Gollem.php:742 -#, php-format -msgid "Up to %s" -msgstr "" - -#: manager.php:286 -msgid "Upload File(s)" -msgstr "" - -#: config/prefs.php.dist:12 config/prefs.php.dist:19 -msgid "User Interface" -msgstr "Інтерфейс користувача" - -#: config/credentials.php.dist:18 -msgid "Username" -msgstr "Назва користувача" - -#: manager.php:281 -msgid "View Clipboard" -msgstr "" - -#: login.php:201 -#, php-format -msgid "Welcome to %s" -msgstr "Вас вітає %s" - -#: templates/manager/manager.html:20 -msgid "Write" -msgstr "" - -#: config/prefs.php.dist:92 -msgid "Yes" -msgstr "Так" - -#: permissions.php:25 -msgid "You need at least one backend defined to set permissions." -msgstr "" - -#: lib/MIME/Viewer/images.php:35 -msgid "Your browser does not support inline display of this image type" -msgstr "Ваш броузер не підтримує відображення по тексту зображень цього типу" - -#: lib/Gollem.php:811 lib/Gollem.php:814 -msgid "_Change Server" -msgstr "" - -#: lib/Gollem.php:767 -msgid "_Create Folder" -msgstr "Створити папку" - -#: lib/Gollem.php:763 -msgid "_My Home" -msgstr "" - -#: lib/Gollem.php:777 -msgid "_Permissions" -msgstr "Права" - -#: manager.php:227 selectlist.php:75 -msgid "folder" -msgstr "папка" - -#: manager.php:228 selectlist.php:76 -msgid "symlink" -msgstr "" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/zh_TW/help.xml php-horde-gollem-3.0.9/gollem-3.0.8/locale/zh_TW/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/zh_TW/help.xml 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/zh_TW/help.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,204 +0,0 @@ - - - - 檔案總管: 作用方式 - 作用方式 - - 再現行目錄下建立一個目錄, 你只要從作用方式功能表中選擇建立目錄即可. 其他的作用方式再執行前必須先選擇至少一個項目. 如果你想刪除目錄,請確定目錄是空的否則無 -法刪除. 或者你可以由"選項->設定->如果要刪除的目錄中還有子目錄,是否一併 -刪除 ?"勾選是. 以遞迴的方式刪除目錄. - - - - 檔案總管: 上傳檔案 - 上傳檔案 - - 點選瀏覽按鈕後選取檔案最後再點選上傳檔案, 可將檔案上傳到現行目錄中. 你可以 -一次附加數個檔案. - - - - 排列項目 - 排列項目 - - 藉由點選欄位標題名稱, 可自動依該欄位排列方便你檢視檔案清單. 若要變更排列方向請點選欄位名稱旁邊的箭頭圖示. - - - Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/locale/zh_TW/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/locale/zh_TW/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/locale/zh_TW/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.8/locale/zh_TW/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.8/locale/zh_TW/LC_MESSAGES/gollem.po 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/locale/zh_TW/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,629 +0,0 @@ -# GOLLEM Traditional Chinese Translation -# Copyright 2001 David Chang. 張良文,台灣 -# David Chang , 2001. -# -msgid "" -msgstr "" -"Project-Id-Version: gollem H3 (1.1-cvs)\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2007-01-25 15:09+0800\n" -"PO-Revision-Date: 2003-01-08 10:53+0100\n" -"Last-Translator: David Chang \n" -"Language-Team: Chinese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8-bit\n" - -#: manager.php:52 -#, php-format -msgid "\"%s\" renamed to \"%s\"" -msgstr "\"%s\" 已更名為 \"%s\"" - -#: quota.php:56 -#, php-format -msgid "%.2fMB / %.2fMB (%.2f%%)" -msgstr "%.2fMB / %.2fMB (%.2f%%)" - -#: manager.php:271 -#, php-format -msgid "%d items" -msgstr "%d 個項目" - -#: manager.php:437 -#, php-format -msgid "%s Folders and %s Files (%s Kb)" -msgstr "%s 個目錄及 %s 個檔案 (%s 千位元組)" - -#: manager.php:435 -#, php-format -msgid "%s Folders and 1 File (%s Kb)" -msgstr "%s 個目錄及 1 個檔案 (%s 千位元組)" - -#: login.php:144 -#, php-format -msgid "%s Login" -msgstr "%s 登入" - -#: edit.php:35 -#, php-format -msgid "%s successfully saved." -msgstr "%s 已儲存完成." - -#: manager.php:167 -#, php-format -msgid "%s was successfully pasted." -msgstr "%s 已張貼完成." - -#: manager.php:432 -#, php-format -msgid "1 Folder and %s Files (%s Kb)" -msgstr "1 個目錄及 %s 個檔案 (%s 千位元組)" - -#: manager.php:430 -#, php-format -msgid "1 Folder and 1 File (%s Kb)" -msgstr "1 個目錄及 1 個檔案 (%s 千位元組)" - -#: manager.php:271 -msgid "1 item" -msgstr "1 個項目" - -#: js/gollem.js.php:3 js/src/gollem.js.php:45 -msgid "" -"A popup window could not be opened. Perhaps you have set your browser to " -"block popup windows?" -msgstr "無法開啟一個蹦彈視窗. 有可能你的瀏覽器已設定要封鎖蹦彈視窗?" - -#: edit.php:33 edit.php:43 view.php:33 -#, php-format -msgid "Access denied to %s" -msgstr "存取 %s 遭拒" - -#: lib/Gollem.php:118 lib/Gollem.php:392 lib/Gollem.php:454 lib/Gollem.php:475 -#: lib/Gollem.php:492 -#, php-format -msgid "Access denied to folder \"%s\"." -msgstr "存取目錄 \"%s\" 遭拒." - -#: templates/manager/manager.html:124 -msgid "Actions:" -msgstr "作用方式:" - -#: selectlist.php:99 -msgid "Add" -msgstr "新增" - -#: templates/prefs/columnselect.inc:43 -msgid "Add column" -msgstr "新增欄位" - -#: templates/manager/manager.html:11 -msgid "All" -msgstr "全部" - -#: js/gollem.js.php:3 js/src/gollem.js.php:56 -msgid "Are you sure you wish to continue?" -msgstr "你確定繼續嗎?" - -#: js/gollem.js.php:3 js/src/gollem.js.php:54 -msgid "Are you sure?" -msgstr "你確定?" - -#: config/prefs.php.dist:69 -msgid "Ascending" -msgstr "上升" - -#: config/prefs.php.dist:93 -msgid "Ask" -msgstr "詢問" - -#: templates/manager/manager.html:5 -msgid "Attributes" -msgstr "屬性" - -#: templates/prefs/columnselect.html:20 -msgid "Available Columns:" -msgstr "可用的欄位:" - -#: lib/api.php:46 -msgid "Backends" -msgstr "伺服端" - -#: templates/clipboard/clipboard.html:11 -msgid "Below is the current contents of your clipboard." -msgstr "以下是你目前剪貼簿的內容." - -#: clipboard.php:38 manager.php:266 selectlist.php:101 -#: templates/edit/edit.inc:13 -msgid "Cancel" -msgstr "取消" - -#: manager.php:72 -msgid "Cannot chmod %s: %s" -msgstr "無法變更存取模式 %s: %s" - -#: manager.php:141 -msgid "Cannot copy items onto clipboard." -msgstr "無法複製項目到剪貼簿上." - -#: manager.php:200 -#, php-format -msgid "Cannot create home directory: %s" -msgstr "無法建立家目錄: %s" - -#: manager.php:143 -msgid "Cannot cut items onto clipboard." -msgstr "無法剪下項目到剪貼簿上." - -#: manager.php:165 -#, php-format -msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" -msgstr "無法貼上 \"%s\" (剪貼簿的檔案已清除): %s" - -#: templates/manager/manager.html:70 -msgid "Change Folder" -msgstr "切換路徑" - -#: templates/manager/manager.html:126 -msgid "Change Permissions" -msgstr "變更存取模式" - -#: selectlist.php:109 lib/Gollem.php:822 -msgid "Change Server" -msgstr "變更伺服器" - -#: lib/Gollem.php:779 -msgid "Change _Folder" -msgstr "切換路徑_F" - -#: config/prefs.php.dist:21 -msgid "Change file and folder handling settings." -msgstr "變更檔案及目錄控制設定." - -#: config/prefs.php.dist:14 -msgid "Change your file sorting options." -msgstr "變更檔案排列方式." - -#: lib/Gollem.php:797 -msgid "Check Quota" -msgstr "磁碟配置" - -#: manager.php:528 -msgid "Check _All/None" -msgstr "檢查 全部/無_A" - -#: manager.php:70 -msgid "Chmod done: " -msgstr "存取模式變更完成: " - -#: templates/prefs/columnselect.html:12 -msgid "Choose the columns to display in the file manager." -msgstr "選擇要顯示於檔案總管的欄位名稱." - -#: clipboard.php:39 -msgid "Clear" -msgstr "清除" - -#: clipboard.php:18 templates/clipboard/clipboard.html:7 -msgid "Clipboard" -msgstr "剪貼簿" - -#: quota.php:32 -msgid "Close" -msgstr "關閉" - -#: login.php:256 -#, php-format -msgid "Connect to: %s" -msgstr "無法連結至: %s" - -#: clipboard.php:42 templates/manager/manager.html:129 -msgid "Copy" -msgstr "複製" - -#: lib/Template.php:235 -#, php-format -msgid "Could not save the compiled template file '%s'." -msgstr "無法儲存已編譯的樣本檔案 '%s'." - -#: templates/manager/manager.html:58 -msgid "Create Folder" -msgstr "建立目錄" - -#: permissions.php:47 -#, php-format -msgid "" -"Created empty permissions for \"%s\". You must explicitly grant access to " -"this backend now." -msgstr "\"%s\"的空白權限已建妥. 你現在必須為此伺服端精確定義權限以保安全." - -#: templates/clipboard/clipboard.html:17 -msgid "Current directory:" -msgstr "現行目錄:" - -#: clipboard.php:41 templates/manager/manager.html:130 -msgid "Cut" -msgstr "剪下" - -#: config/prefs.php.dist:59 -msgid "Default sorting criteria:" -msgstr "內定排列的準則:" - -#: config/prefs.php.dist:72 -msgid "Default sorting direction:" -msgstr "內定的排列方向:" - -#: templates/manager/manager.html:133 -msgid "Delete" -msgstr "刪除" - -#: config/prefs.php.dist:95 -msgid "Delete folders recursively?" -msgstr "如果要刪除的目錄中還有子目錄,是否一併刪除?" - -#: config/prefs.php.dist:70 -msgid "Descending" -msgstr "下降" - -#: selectlist.php:100 -msgid "Done" -msgstr "完成" - -#: manager.php:226 -msgid "Download" -msgstr "下載" - -#: manager.php:404 -#, php-format -msgid "Download %s" -msgstr "下載 %s" - -#: templates/quota/quota.html:7 -msgid "ERROR:" -msgstr "錯誤:" - -#: manager.php:225 -msgid "Edit" -msgstr "編輯" - -#: templates/edit/edit.inc:8 -#, php-format -msgid "Edit %s" -msgstr "編輯 %s" - -#: config/credentials.php.dist:28 -msgid "Email" -msgstr "電子郵件" - -#: templates/manager/manager.html:26 -msgid "Execute" -msgstr "執行" - -#: js/gollem.js.php:3 js/src/gollem.js.php:58 -#: templates/manager/manager.html:203 -msgid "File" -msgstr "附件" - -#: config/prefs.php.dist:13 -msgid "File Display" -msgstr "檔案顯示" - -#: config/prefs.php.dist:56 -msgid "File Modification Time" -msgstr "檔案修改時間" - -#: config/prefs.php.dist:55 -msgid "File Name" -msgstr "檔案名稱" - -#: config/prefs.php.dist:57 -msgid "File Size" -msgstr "檔案大小" - -#: config/prefs.php.dist:54 -msgid "File Type" -msgstr "檔案型態" - -#: manager.php:87 -msgid "File deleted: " -msgstr "檔案已刪除: " - -#: manager.php:109 -#, php-format -msgid "File received: %s" -msgstr "已接收到檔案: %s" - -#: manager.php:80 -msgid "Folder removed: " -msgstr "目錄已刪除: " - -#: templates/manager/manager.html:72 -msgid "Go to:" -msgstr "到:" - -#: permissions.php:21 -msgid "Gollem Backend Permissions Administration" -msgstr "Gollem 伺服端權限管理" - -#: manager.php:508 templates/manager/manager.html:10 -msgid "Group" -msgstr "群組" - -#: manager.php:56 -msgid "Incorrect number of items." -msgstr "項目的號碼不正確." - -#: manager.php:134 -#, php-format -msgid "Item copied to clipboard: %s" -msgstr "項目已被複製到剪貼簿: %s" - -#: manager.php:136 -#, php-format -msgid "Item cut to clipboard: %s" -msgstr "項目已被剪下並送到剪貼簿: %s" - -#: templates/login/login.html:67 -msgid "Language" -msgstr "語言" - -#: config/prefs.php.dist:81 -msgid "List folders first?" -msgstr "先列出目錄?" - -#: login.php:305 -msgid "Login" -msgstr "登入" - -#: lib/Block/tree_menu.php:3 -msgid "Menu List" -msgstr "功能表" - -#: manager.php:478 -msgid "Modified" -msgstr "最近更新" - -#: templates/prefs/columnselect.inc:45 -msgid "Move left" -msgstr "調昇" - -#: templates/prefs/columnselect.inc:46 -msgid "Move right" -msgstr "調降" - -#: manager.php:456 -msgid "Name" -msgstr "檔名" - -#: templates/manager/manager.html:46 templates/manager/manager.html:60 -msgid "Name:" -msgstr "檔名:" - -#: manager.php:35 -msgid "New folder created: " -msgstr "新目錄已建妥: " - -#: config/prefs.php.dist:91 -msgid "No" -msgstr "否" - -#: templates/quota/quota.html:12 -msgid "No quota found." -msgstr "找不到磁碟配額." - -#: manager.php:267 -msgid "OK" -msgstr "確定" - -#: manager.php:501 templates/manager/manager.html:9 -msgid "Owner" -msgstr "擁有者" - -#: config/credentials.php.dist:23 -msgid "Password" -msgstr "密碼" - -#: clipboard.php:40 -msgid "Paste" -msgstr "貼上" - -#: manager.php:494 -msgid "Permission" -msgstr "權限" - -#: selectlist.php:64 -#, php-format -msgid "Permission denied to %s: %s" -msgstr "存取遭拒 %s: %s" - -#: manager.php:208 -#, php-format -msgid "Permission denied to folder \"%s\": %s" -msgstr "存取目錄 \"%s\": %s 遭拒" - -#: js/gollem.js.php:3 js/src/gollem.js.php:49 -msgid "Please provide your password." -msgstr "請輸入你的密碼." - -#: js/gollem.js.php:3 js/src/gollem.js.php:48 -msgid "Please provide your username." -msgstr "請輸入你的使用者名稱." - -#: templates/prefs/columnselect.html:5 -msgid "Please select a backend:" -msgstr "請選擇一個伺服端:" - -#: js/gollem.js.php:3 js/src/gollem.js.php:52 -msgid "Please select an item before this action." -msgstr "在執行此一動作前請選擇一個項目." - -#: js/gollem.js.php:3 js/src/gollem.js.php:57 -msgid "Please specify at least one file to upload." -msgstr "請至少選擇一個上傳檔案." - -#: quota.php:19 templates/quota/quota.html:2 -msgid "Quota Display" -msgstr "磁碟配置狀況" - -#: templates/manager/manager.html:14 -msgid "Read" -msgstr "讀取" - -#: manager.php:273 -msgid "Refresh" -msgstr "重新整理" - -#: templates/prefs/columnselect.inc:44 -msgid "Remove column" -msgstr "移除欄位" - -#: templates/manager/manager.html:44 templates/manager/manager.html:136 -msgid "Rename" -msgstr "更名" - -#: templates/edit/edit.inc:12 -msgid "Reset" -msgstr "重設" - -#: lib/Gollem.php:736 lib/Gollem.php:741 -msgid "Root" -msgstr "根目錄" - -#: manager.php:265 templates/edit/edit.inc:11 -msgid "Save" -msgstr "儲存" - -#: templates/prefs/columnselect.html:30 -msgid "Selected Columns:" -msgstr "已選擇的欄位:" - -#: templates/login/login.html:31 -msgid "Server" -msgstr "伺服器" - -#: config/prefs.php.dist:20 -msgid "Settings" -msgstr "設定" - -#: config/prefs.php.dist:30 -msgid "Show dotfiles?" -msgstr "顯示隱藏檔案?" - -#: manager.php:486 -msgid "Size" -msgstr "大小" - -#: js/gollem.js.php:3 js/src/gollem.js.php:55 -msgid "The following item(s) are folders:" -msgstr "下列項目屬於目錄: " - -#: js/gollem.js.php:3 js/src/gollem.js.php:53 -msgid "The following items will be permanently deleted:" -msgstr "下列項目將永遠刪除:" - -#: js/gollem.js.php:3 js/src/gollem.js.php:61 -msgid "The original opener window has been closed. Exiting." -msgstr "原開啟視窗已被關閉. 結束中." - -#: login.php:151 -msgid "There are no backends available for the current user." -msgstr "無任何伺服端可供目前的使用者操作." - -#: selectlist.php:199 templates/manager/manager.html:147 -msgid "There are no files in this folder." -msgstr "此目錄目前沒有任何檔案." - -#: templates/clipboard/clipboard.html:15 -msgid "" -"To clear items from the clipboard, check the box next to the filename and " -"click on "Clear"." -msgstr "欲清除剪貼簿上的項目, 勾選檔案然後點選"清除"." - -#: templates/clipboard/clipboard.html:13 -msgid "" -"To paste items from the clipboard to the current directory, check the box " -"next to the filename and click on "Paste"." -msgstr "欲將剪貼簿上的項目貼到現行目錄中, 勾選檔案然後點選"貼上"." - -#: manager.php:448 -msgid "Type" -msgstr "型態" - -#: permissions.php:42 -#, php-format -msgid "Unable to create backend permission: %s" -msgstr "無法建立伺服端權限: %s" - -#: manager.php:85 -msgid "Unable to delete file %s: %s" -msgstr "無法刪除檔案 %s: %s" - -#: manager.php:78 -msgid "Unable to delete folder %s: %s" -msgstr "無法刪除目錄 %s: %s" - -#: lib/Gollem.php:741 lib/Gollem.php:751 -#, php-format -msgid "Up to %s" -msgstr "回到 %s" - -#: manager.php:286 -msgid "Upload File(s)" -msgstr "上傳檔案" - -#: config/prefs.php.dist:12 config/prefs.php.dist:19 -msgid "User Interface" -msgstr "使用者介面" - -#: config/credentials.php.dist:18 -msgid "Username" -msgstr "使用者名稱" - -#: manager.php:281 -msgid "View Clipboard" -msgstr "檢視剪貼簿" - -#: login.php:200 -#, php-format -msgid "Welcome to %s" -msgstr "歡迎到 %s" - -#: templates/manager/manager.html:20 -msgid "Write" -msgstr "寫入" - -#: config/prefs.php.dist:92 -msgid "Yes" -msgstr "是" - -#: permissions.php:25 -msgid "You need at least one backend defined to set permissions." -msgstr "你必須定義至少一個伺服端以設定權限." - -#: lib/MIME/Viewer/images.php:35 -msgid "Your browser does not support inline display of this image type" -msgstr "你的瀏覽器並未支援這類型的影像檔做直接開啟的動作" - -#: lib/Gollem.php:820 lib/Gollem.php:823 -msgid "_Change Server" -msgstr "變更伺服器_C" - -#: lib/Gollem.php:776 -msgid "_Create Folder" -msgstr "建立目錄_C" - -#: lib/Gollem.php:772 -msgid "_My Home" -msgstr "我的家目錄_M" - -#: lib/Gollem.php:786 -msgid "_Permissions" -msgstr "權限_P" - -#: manager.php:227 selectlist.php:75 -msgid "folder" -msgstr "目錄" - -#: manager.php:228 selectlist.php:76 -msgid "symlink" -msgstr "符號連結" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/manager.php php-horde-gollem-3.0.9/gollem-3.0.8/manager.php --- php-horde-gollem-3.0.8/gollem-3.0.8/manager.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/manager.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,624 +0,0 @@ - - * @author Chuck Hagenbuch - * @author Michael Slusarz - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem'); - -$backkey = $session->get('gollem', 'backend_key'); -$clipboard = $session->get('gollem', 'clipboard', Horde_Session::TYPE_ARRAY); -$vars = Horde_Variables::getDefaultVariables(); - -/* Set directory. */ -try { - Gollem::changeDir(); -} catch (Gollem_Exception $e) { - $notification->push($e); -} -$old_dir = Gollem::$backend['dir']; - -/* Get permissions. */ -$delete_perms = Gollem::checkPermissions('backend', Horde_Perms::DELETE) && - Gollem::checkPermissions('directory', Horde_Perms::DELETE, Gollem::$backend['dir']); -$edit_perms = Gollem::checkPermissions('backend', Horde_Perms::EDIT) && - Gollem::checkPermissions('directory', Horde_Perms::EDIT, Gollem::$backend['dir']); -$read_perms = Gollem::checkPermissions('backend', Horde_Perms::READ) && - Gollem::checkPermissions('directory', Horde_Perms::READ, Gollem::$backend['dir']); - -/* Get VFS object. */ -$gollem_vfs = $injector->getInstance('Gollem_Vfs'); - -/* Run through the action handlers. */ -switch ($vars->actionID) { -case 'create_folder': - if ($edit_perms && isset($vars->new_folder)) { - try { - Gollem::createFolder($old_dir, $vars->new_folder); - $notification->push(_("New folder created: ") . $vars->new_folder, 'horde.success'); - } catch (Gollem_Exception $e) { - $notification->push($e, 'horde.error'); - } - } - break; - -case 'rename_items': - if ($edit_perms && isset($vars->new_names) && isset($vars->old_names)) { - $new = explode('|', $vars->new_names); - $old = explode('|', $vars->old_names); - if (count($new) == count($old)) { - for ($i = 0, $iMax = count($new); $i < $iMax; ++$i) { - try { - Gollem::renameItem($old_dir, $old[$i], $old_dir, $new[$i]); - $notification->push(sprintf(_("\"%s\" renamed to \"%s\""), $old[$i], $new[$i]), 'horde.success'); - } catch (Gollem_Exception $e) { - $notification->push($e, 'horde.error'); - } - } - Gollem::expireCache($old_dir); - } - } - break; - -case 'chmod_modify': -case 'delete_items': - if ($delete_perms && is_array($vars->items) && count($vars->items)) { - foreach ($vars->items as $item) { - if (($vars->actionID == 'chmod_modify') && $vars->chmod) { - try { - Gollem::changePermissions(Gollem::$backend['dir'], $item, $vars->chmod); - Gollem::expireCache($old_dir); - $notification->push(_("Chmod done: ") . $item, 'horde.success'); - } catch (Gollem_Exception $e) { - $notification->push(sprintf(_("Cannot chmod %s: %s"), $item, $e->getMessage()), 'horde.error'); - } - } elseif ($vars->actionID == 'delete_items') { - if ($gollem_vfs->isFolder($old_dir, $item)) { - try { - Gollem::deleteFolder($old_dir, $item); - Gollem::expireCache($old_dir); - $notification->push(_("Folder removed: ") . $item, 'horde.success'); - } catch (Gollem_Exception $e) { - $notification->push(sprintf(_("Unable to delete folder %s: %s"), $item, $e->getMessage()), 'horde.error'); - } - } else { - try { - Gollem::deleteFile($old_dir, $item); - Gollem::expireCache($old_dir); - $notification->push(_("File deleted: ") . $item, 'horde.success'); - } catch (Gollem_Exception $e) { - $notification->push(sprintf(_("Unable to delete file %s: %s"), $item, $e->getMessage()), 'horde.error'); - } - } - } - } - } - break; - -case 'upload_file': - if ($edit_perms) { - for ($i = 1, $l = count($_FILES); $i <= $l; ++$i) { - $val = 'file_upload_' . $i; - if (isset($_FILES[$val]) && ($_FILES[$val]['error'] != 4)) { - try { - $browser->wasFileUploaded($val); - $filename = Horde_Util::dispelMagicQuotes($_FILES[$val]['name']); - - Gollem::writeFile($old_dir, $filename, $_FILES[$val]['tmp_name']); - Gollem::expireCache($old_dir); - $notification->push(sprintf(_("File received: %s"), $filename), 'horde.success'); - } catch (Gollem_Exception $e) { - $notification->push($e, 'horde.error'); - } - } - } - } - break; - -case 'copy_items': -case 'cut_items': - if ($edit_perms) { - $action = ($vars->actionID == 'copy_items') ? 'copy' : 'cut'; - - if (is_array($vars->items) && count($vars->items)) { - foreach ($vars->items as $item) { - $file = array( - 'action' => $action, - 'backend' => $backkey, - 'display' => Gollem::getDisplayPath($old_dir . '/' . $item), - 'name' => $item, - 'path' => $old_dir - ); - $clipboard[] = $file; - $session->set('gollem', 'clipboard', $clipboard); - if ($action == 'copy') { - $notification->push(sprintf(_("Item copied to clipboard: %s"), $item), 'horde.success'); - } else { - $notification->push(sprintf(_("Item cut to clipboard: %s"), $item), 'horde.success'); - } - } - } elseif ($action == 'copy') { - $notification->push(_("Cannot copy items onto clipboard."), 'horde.error'); - } else { - $notification->push(_("Cannot cut items onto clipboard."), 'horde.error'); - } - } - break; - -case 'clear_items': -case 'paste_items': - if ($edit_perms && is_array($vars->items) && count($vars->items)) { - foreach ($vars->items as $val) { - if (isset($clipboard[$val])) { - $file = $clipboard[$val]; - if ($vars->actionID == 'paste_items') { - try { - if ($file['action'] == 'cut') { - Gollem::moveFile($file['backend'], $file['path'], $file['name'], $backkey, $old_dir); - } else { - Gollem::copyFile($file['backend'], $file['path'], $file['name'], $backkey, $old_dir); - } - - Gollem::expireCache($old_dir); - if ($file['action'] == 'cut') { - Gollem::expireCache($file['path']); - } - $notification->push(sprintf(_("%s was successfully pasted."), $file['name'], $old_dir), 'horde.success'); - } catch (Horde_Vfs_Exception $e) { - $notification->push(sprintf(_("Cannot paste \"%s\" (file cleared from clipboard): %s"), $file['name'], $e->getMessage()), 'horde.error'); - } - } - unset($clipboard[$val]); - } - } - $session->set('gollem', 'clipboard', array_values($clipboard)); - } - break; - -case 'change_sortby': - if (isset($vars->sortby)) { - $prefs->setValue('sortby', $vars->sortby); - } - break; - -case 'change_sortdir': - if (isset($vars->sortdir)) { - $prefs->setValue('sortdir', $vars->sortdir); - } - break; -} - -/* First loop through getting folder lists, setting the directory, - * etc., to make sure we can catch any errors. */ -try { - $list = Gollem::listFolder(Gollem::$backend['dir']); -} catch (Horde_Exception $e) { - /* If this is a user's home directory, try autocreating it. */ - if (Gollem::$backend['dir'] == Gollem::$backend['home']) { - try { - Gollem::createFolder('', Gollem::$backend['dir']); - try { - $list = Gollem::listFolder(Gollem::$backend['dir']); - } catch (Horde_Exception $e) { - /* If that didn't work, fall back to the parent or the home - * directory. */ - $notification->push(sprintf(_("Permission denied to folder \"%s\": %s"), Gollem::$backend['dir'], $e->getMessage()), 'horde.error'); - - $loc = strrpos(Gollem::$backend['dir'], '/'); - Gollem::setDir(($loc !== false) ? substr(Gollem::$backend['dir'], 0, $loc) : Gollem::$backend['home']); - $list = Gollem::listFolder(Gollem::$backend['dir']); - } - } catch (Gollem_Exception $e) { - $notification->push(sprintf(_("Cannot create home directory: %s"), $e->getMessage()), 'horde.error'); - } - } -} - -$numitem = count($list); -$title = Gollem::$backend['name']; - -/* Commonly used URLs. */ -$view_url = Horde::url('view.php'); -$edit_url = Horde::url('edit.php'); -$manager_url = Horde::url('manager.php'); - -$refresh_url = Horde::selfUrl(true, true); - -/* Init some form vars. */ -if ($session->get('gollem', 'filter') != $vars->searchfield) { - if (strlen($vars->searchfield)) { - $refresh_url->add('searchfield', $vars->searchfield); - } else { - $refresh_url->remove('searchfield'); - } - $page = 0; -} else { - $page = $vars->get('page', 0); -} -$session->set('gollem', 'filter', strval($vars->searchfield)); - -/* Get the list of copy/cut files in this directory. */ -$clipboard_files = array(); -foreach ($clipboard as $val) { - if (($backkey == $val['backend']) && - ($val['path'] == Gollem::$backend['dir'])) { - $clipboard_files[$val['name']] = 1; - } -} - -/* Read the columns to display from the preferences. */ -$columns = Gollem::getColumns($backkey); - -/* Prepare the template. */ -$template = $injector->createInstance('Horde_View'); - -$attrib = $gollem_vfs->getModifiablePermissions(); -foreach (array('owner', 'group', 'all') as $val) { - foreach (array('read', 'write', 'execute') as $val2) { - if (isset($attrib[$val][$val2])) { - $template->{$val . '_' . $val2} = !$attrib[$val][$val2]; - } - } -} - -$all_columns = array('type', 'name', 'share', 'edit', 'download', 'modified', 'size', 'permission', 'owner', 'group'); -foreach ($all_columns as $column) { - $template->{'columns_' . $column} = in_array($column, $columns); -} - -$template->action = $refresh_url; -$template->forminput = Horde_Util::formInput(); -$template->dir = Gollem::$backend['dir']; -$template->navlink = Gollem::directoryNavLink(Gollem::$backend['dir'], $manager_url); -$template->refresh = Horde::widget(array( - 'url' => $refresh_url, - 'title' => _("Refresh"), - 'id' => 'gollem-refresh' -)); - -$template->hasclipboard = $edit_perms; - -$shares_enabled = !empty(Gollem::$backend['shares']) && - strpos(Gollem::$backend['dir'], Gollem::$backend['home']) === 0; -if ($shares_enabled) { - $shares = $injector->getInstance('Gollem_Shares'); - $perms_url_base = Horde::url('share.php', true)->add('app', 'gollem'); - $share_name = $backkey . '|' . Gollem::$backend['dir']; - $template->share_folder = Horde::widget(array( - 'url' => $perms_url_base->add('share', $share_name), - 'title' => _("Share Folder"), - 'target' => '_blank', - 'class' => 'gollem-sharefolder', - 'onclick' => Horde::popupJs( - $perms_url_base, - array('params' => array('share' => $share_name), - 'urlencode' => true)) . 'return false;' - )); -} - -if ($edit_perms) { - $template->perms_edit = true; - $template->upload_file = _("Upload File(s)"); - $template->upload_identifier = session_id(); - $template->upload_help = Horde_Help::link('gollem', 'file-upload'); - $template->perms_chmod = in_array('permission', $columns); - $injector->getInstance('Horde_View_Sidebar')->addNewButton( - _("Create Folder"), - Horde::url('#'), - array('id' => 'gollem-createfolder') - ); -} else { - $template->perms_edit = false; - $template->perms_chmod = false; -} - -if ($read_perms) { - $template->change_folder = Horde::widget(array( - 'url' => Horde::url('#'), - 'title' => _("Change Folder"), - 'id' => 'gollem-changefolder' - )); -} - -if ($numitem) { - $template->list_count = true; - $template->perms_delete = $delete_perms; - $topbar = $injector->getInstance('Horde_View_Topbar'); - $topbar->search = true; - $topbar->searchAction = $refresh_url; - $topbar->searchLabel = $session->get('gollem', 'filter') ?: _("Filter"); - $topbar->searchIcon = Horde_Themes::img('filter-topbar.png'); -} else { - $template->list_count = false; -} - -$icon_cache = array(); -$total = 0; - -if (is_array($list) && $numitem && $read_perms) { - $entry = array(); - $page_caption = ''; - - $template->empty_dir = false; - - /* Set list min/max values */ - $perpage = $prefs->getValue('perpage'); - $min = $page * $perpage; - while ($min > $numitem) { - --$page; - $min = $page * $perpage; - } - $max = $min + $perpage; - - foreach ($list as $key => $val) { - /* Check if a filter is not empty and filter matches filename. */ - if (strlen($vars->searchfield) && - !preg_match('/' . preg_quote($vars->searchfield, '/') . '/', $val['name'])) { - continue; - } - - /* Continue if item not in min/max range. */ - if (($total++ < $min) || ($total > $max)) { - continue; - } - - $item = array( - 'date' => htmlspecialchars(strftime($prefs->getValue('date_format_mini'), $val['date'])), - 'dl' => false, - 'edit' => false, - 'group' => empty($val['group']) ? '-' : htmlspecialchars($val['group']), - 'name' => htmlspecialchars($val['name']), - 'on_clipboard' => false, - 'owner' => empty($val['owner']) ? '-' : htmlspecialchars($val['owner']), - 'perms' => empty($val['perms']) ? '-' : htmlspecialchars($val['perms']), - 'size' => ($val['type'] == '**dir') ? '-' : number_format($val['size'], 0, '.', ','), - 'type' => htmlspecialchars($val['type']) - ); - - $name = str_replace(' ', ' ', $item['name']); - - /* Is this file on the clipboard? */ - if (isset($clipboard_files[$val['name']])) { - $item['on_clipboard'] = true; - } - - /* Determine graphic to use. */ - if (!empty($val['link'])) { - $item['graphic'] = ''; - } elseif ($val['type'] == '**dir') { - $item['graphic'] = ''; - } else { - if (empty($icon_cache[$val['type']])) { - $icon_cache[$val['type']] = Horde::img($injector->getInstance('Horde_Core_Factory_MimeViewer')->getIcon(Horde_Mime_Magic::extToMime($val['type'])), '', '', ''); - } - $item['graphic'] = $icon_cache[$val['type']]; - } - - /* Create proper link. */ - switch ($val['type']) { - case '**dir': - $subdir = Gollem::subdirectory(Gollem::$backend['dir'], $val['name']); - if (!Gollem::checkPermissions('directory', Horde_Perms::SHOW, $subdir)) { - continue 2; - } - $item['link'] = $manager_url->copy()->add('dir', $subdir)->link() - . $name . ''; - if ($shares_enabled) { - $share = $backkey . '|' . $subdir; - $item['share'] = $perms_url_base->add('share', $share)->link(array('title' => $shares->exists($share) ? _("Shared Folder") : _("Share Folder"), 'target' => '_blank', 'onclick' => Horde::popupJs($perms_url_base, array('params' => array('share' => $share), 'urlencode' => true)) . 'return false;')); - $item['share_disabled'] = !$shares->exists($share); - } - break; - - case '**broken': - $item['link'] = $name; - break; - - case '**sym': - if ($val['linktype'] === '**dir') { - if (substr($val['link'], 0, 1) == '/') { - $parts = explode('/', $val['link']); - $name = array_pop($parts); - $dir = implode('/', $parts); - } else { - $name = $val['link']; - $dir = Gollem::$backend['dir']; - } - - $url = $manager_url->copy()->add('dir', Gollem::subdirectory($dir, $name)); - $item['link'] = $item['name'] . ' -> ' . $url->link() . $val['link'] . ''; - } else { - $item['link'] = $item['name'] . ' -> ' . $val['link']; - } - break; - - default: - $mime_type = Horde_Mime_Magic::extToMime($val['type']); - - // Edit link if possible. - if (strpos($mime_type, 'text/') === 0) { - $url = $edit_url->copy()->add(array( - 'actionID' => 'edit_file', - 'type' => $val['type'], - 'file' => $val['name'], - 'dir' => Gollem::$backend['dir'], - 'driver' => Gollem::$backend['driver'] - )); - $item['edit'] = Horde::link('#', '', '', '_blank', Horde::popupJs($url)); - } - - // We can always download files. - $item['dl'] = $registry->downloadUrl($val['name'], array('dir' => Gollem::$backend['dir'], 'backend' => $GLOBALS['session']->get('gollem', 'backend_key')))->link(array('title' => sprintf(_("Download %s"), $val['name']))); - - // Try a view link. - $url = $view_url->copy()->add(array( - 'type' => $val['type'], - 'file' => $val['name'], - 'dir' => Gollem::$backend['dir'], - 'driver' => Gollem::$backend['driver'] - )); - $item['link'] = Horde::link('#', '', '', '_blank', Horde::popupJs($url)) . $name . ''; - break; - } - - $entry[] = $item; - } - - /* Set up the variables needed for the header row. */ - $sortby = $prefs->getValue('sortby'); - $sortdir = $prefs->getValue('sortdir'); - - if ($total) { - // Set start/end items (according to current page) - $start = ($page * $perpage) + 1; - $end = min($total, $start + $perpage - 1); - - $vars->set('page', $page); - $pager = new Horde_Core_Ui_Pager('page', $vars, array( - 'num' => $total, - 'url' => $refresh_url, - 'page_count' => 10, - 'perpage' => $perpage - )); - $page_caption = $pager->render(); - } - - $headers = array(); - foreach ($columns as $head) { - $hdr = array('class' => ''); - $sort = null; - - switch ($head) { - case 'type': - $hdr['width'] = '3%'; - $hdr['label'] = _("Type"); - $hdr['align'] = 'right'; - $hdr['id'] = 's' . Gollem::SORT_TYPE; - $sort = Gollem::SORT_TYPE; - break; - - case 'name': - $hdr['width'] = '57%'; - $hdr['label'] = _("Name"); - $hdr['align'] = 'left'; - $hdr['id'] = 's' . Gollem::SORT_NAME; - $sort = Gollem::SORT_NAME; - break; - - case 'share': - $hdr['width'] = '1%'; - $hdr['label'] = ' '; - $hdr['align'] = 'center'; - break; - - case 'edit': - $hdr['width'] = '1%'; - $hdr['label'] = ' '; - $hdr['align'] = 'center'; - break; - - case 'download': - $hdr['width'] = '1%'; - $hdr['label'] = ' '; - $hdr['align'] = 'center'; - break; - - case 'modified': - $hdr['width'] = '7%'; - $hdr['label'] = _("Modified"); - $hdr['align'] = 'left'; - $hdr['id'] = 's' . Gollem::SORT_DATE; - $sort = Gollem::SORT_DATE; - break; - - case 'size': - $hdr['width'] = '7%'; - $hdr['label'] = _("Size"); - $hdr['align'] = 'right'; - $hdr['id'] = 's' . Gollem::SORT_SIZE; - $sort = Gollem::SORT_SIZE; - break; - - case 'permission': - $hdr['width'] = '7%'; - $hdr['label'] = _("Permission"); - $hdr['align'] = 'right'; - break; - - case 'owner': - $hdr['width'] = '7%'; - $hdr['label'] = _("Owner"); - $hdr['align'] = 'right'; - break; - - case 'group': - $hdr['width'] = '7%'; - $hdr['label'] = _("Group"); - $hdr['align'] = 'right'; - break; - } - - if ($sort !== null) { - if ($sortby == $sort) { - $hdr['class'] = ($sortdir ? 'sortup' : 'sortdown'); - $params = array('actionID' => 'change_sortdir', 'sortdir' => 1 - $sortdir); - } else { - $params = array('actionID' => 'change_sortby', 'sortby' => $sort); - } - $hdr['label'] = '' . htmlspecialchars($hdr['label']) . ''; - } - - $headers[] = $hdr; - } - - /* Set up the template tags. */ - $template->headers = $headers; - $template->entries = $entry; - $template->page_caption = $page_caption; - $template->checkall = Horde::getAccessKeyAndTitle(_("Check _All/None")); -} else { - $template->empty_dir = true; -} -$template->itemcount = sprintf(ngettext(_("%d item"), _("%d items"), $total), $total); - -$page_output->addScriptFile('manager.js'); -$page_output->addScriptPackage('Horde_Core_Script_Package_Dialog'); -$page_output->addInlineJsVars(array( - 'var GollemVar' => array( - 'actionUrl' => strval(Horde::url('manager.php')), - 'empty_input' => intval($GLOBALS['browser']->hasQuirk('empty_file_input_value')), - 'warn_recursive' => intval($prefs->getValue('recursive_deletes') == 'warn') - ), - 'var GollemText' => array( - 'change_directory' => _("Change Folder"), - 'create_folder' => _("Create Folder"), - 'delete_confirm_1' => _("The following items will be permanently deleted:"), - 'delete_confirm_2' => _("Are you sure?"), - 'delete_recurs_1' => _("The following item(s) are folders:"), - 'delete_recurs_2' => _("Are you sure you wish to continue?"), - 'file' => _("File"), - 'permissions' => _("Permissions"), - 'rename' => _("Rename"), - 'select_item' => _("Please select an item before this action."), - 'specify_upload' => _("Please specify at least one file to upload."), - ) -)); - -$page_output->header(array( - 'title' => $title -)); -$notification->notify(array('listeners' => 'status')); -echo $template->render('manager'); -$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/migration/1_gollem_base_tables.php php-horde-gollem-3.0.9/gollem-3.0.8/migration/1_gollem_base_tables.php --- php-horde-gollem-3.0.8/gollem-3.0.8/migration/1_gollem_base_tables.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/migration/1_gollem_base_tables.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,140 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class GollemBaseTables extends Horde_Db_Migration_Base -{ - /** - * Upgrade. - */ - public function up() - { - $t = $this->createTable('gollem_shares', array('autoincrementKey' => false)); - $t->column('share_id', 'integer', array('null' => false)); - $t->column('share_name', 'string', array('limit' => 255, 'null' => false)); - $t->column('share_owner', 'string', array('limit' => 255, 'null' => false)); - $t->column('share_flags', 'integer', array('default' => 0, 'null' => false)); - $t->column('share_parents', 'text'); - $t->column('perm_creator', 'integer', array('default' => 0, 'null' => false)); - $t->column('perm_default', 'integer', array('default' => 0, 'null' => false)); - $t->column('perm_guest', 'integer', array('default' => 0, 'null' => false)); - $t->column('attribute_name', 'string', array('limit' => 255, 'null' => false)); - $t->primaryKey(array('share_id')); - $t->end(); - $this->addIndex('gollem_shares', array('share_name')); - $this->addIndex('gollem_shares', array('share_owner')); - $this->addIndex('gollem_shares', array('perm_creator')); - $this->addIndex('gollem_shares', array('perm_default')); - $this->addIndex('gollem_shares', array('perm_guest')); - - $t = $this->createTable('gollem_shares_groups'); - $t->column('share_id', 'integer', array('null' => false)); - $t->column('group_uid', 'string', array('limit' => 255, 'null' => false)); - $t->column('perm', 'integer', array('null' => false)); - $t->end(); - - $this->addIndex('gollem_shares_groups', array('share_id')); - $this->addIndex('gollem_shares_groups', array('group_uid')); - $this->addIndex('gollem_shares_groups', array('perm')); - - $t = $this->createTable('gollem_shares_users'); - $t->column('share_id', 'integer', array('null' => false)); - $t->column('user_uid', 'string', array('limit' => 255, 'null' => false)); - $t->column('perm', 'integer', array('null' => false)); - $t->end(); - - $this->addIndex('gollem_shares_users', array('share_id')); - $this->addIndex('gollem_shares_users', array('user_uid')); - $this->addIndex('gollem_shares_users', array('perm')); - - $t = $this->createTable('gollem_sharesng', array('autoincrementKey' => 'share_id')); - $t->column('share_name', 'string', array('limit' => 255, 'null' => false)); - $t->column('share_owner', 'string', array('limit' => 255)); - $t->column('share_flags', 'integer', array('default' => 0, 'null' => false)); - $t->column('share_parents', 'text'); - $t->column('perm_creator_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_creator_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_creator_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_creator_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_default_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_default_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_default_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_default_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_guest_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_guest_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_guest_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_guest_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); - $t->column('attribute_name', 'string', array('limit' => 255, 'null' => false)); - $t->end(); - - $this->addIndex('gollem_sharesng', array('share_name')); - $this->addIndex('gollem_sharesng', array('share_owner')); - $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::SHOW)); - $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::READ)); - $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::EDIT)); - $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::DELETE)); - $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::SHOW)); - $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::READ)); - $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::EDIT)); - $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::DELETE)); - $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::SHOW)); - $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::READ)); - $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::EDIT)); - $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::DELETE)); - - $t = $this->createTable('gollem_sharesng_groups', array('autoincrementKey' => false)); - $t->column('share_id', 'integer', array('null' => false)); - $t->column('group_uid', 'string', array('limit' => 255, 'null' => false)); - $t->column('perm_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); - $t->end(); - - $this->addIndex('gollem_sharesng_groups', array('share_id')); - $this->addIndex('gollem_sharesng_groups', array('group_uid')); - $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::SHOW)); - $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::READ)); - $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::EDIT)); - $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::DELETE)); - - $t = $this->createTable('gollem_sharesng_users', array('autoincrementKey' => false)); - $t->column('share_id', 'integer', array('null' => false)); - $t->column('user_uid', 'string', array('limit' => 255, 'null' => false)); - $t->column('perm_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); - $t->column('perm_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); - $t->end(); - - $this->addIndex('gollem_sharesng_users', array('share_id')); - $this->addIndex('gollem_sharesng_users', array('user_uid')); - $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::SHOW)); - $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::READ)); - $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::EDIT)); - $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::DELETE)); - } - - /** - * Downgrade - */ - public function down() - { - $this->dropTable('gollem_shares'); - $this->dropTable('gollem_shares_users'); - $this->dropTable('gollem_shares_groups'); - $this->dropTable('gollem_sharesng'); - $this->dropTable('gollem_sharesng_groups'); - $this->dropTable('gollem_sharesng_users'); - } -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/migration/2_gollem_upgrade_autoincrement.php php-horde-gollem-3.0.9/gollem-3.0.8/migration/2_gollem_upgrade_autoincrement.php --- php-horde-gollem-3.0.8/gollem-3.0.8/migration/2_gollem_upgrade_autoincrement.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/migration/2_gollem_upgrade_autoincrement.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class GollemUpgradeAutoIncrement extends Horde_Db_Migration_Base -{ - /** - * Upgrade. - */ - public function up() - { - $this->changeColumn('gollem_shares', 'share_id', 'autoincrementKey'); - try { - $this->dropTable('gollem_shares_seq'); - } catch (Horde_Db_Exception $e) { - } - } - - /** - * Downgrade - */ - public function down() - { - $this->changeColumn('gollem_shares', 'share_id', 'integer', array('null' => false)); - } - -} \ No newline at end of file diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/migration/3_gollem_upgrade_parents.php php-horde-gollem-3.0.9/gollem-3.0.8/migration/3_gollem_upgrade_parents.php --- php-horde-gollem-3.0.8/gollem-3.0.8/migration/3_gollem_upgrade_parents.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/migration/3_gollem_upgrade_parents.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -/** - * Fixes the type of the parents column. - * - * @author Jan Schneider - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ -class GollemUpgradeParents extends Horde_Db_Migration_Base -{ - /** - * Upgrade. - */ - public function up() - { - $this->changeColumn('gollem_shares', 'share_parents', 'string', array('limit' => 4000)); - $this->changeColumn('gollem_sharesng', 'share_parents', 'string', array('limit' => 4000)); - } - - /** - * Downgrade - */ - public function down() - { - $this->changeColumn('gollem_shares', 'share_parents', 'text'); - $this->changeColumn('gollem_sharesng', 'share_parents', 'text'); - } -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/permissions.php php-horde-gollem-3.0.9/gollem-3.0.8/permissions.php --- php-horde-gollem-3.0.8/gollem-3.0.8/permissions.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/permissions.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ - - * - * See the enclosed file COPYING for license information (GPL). If you - * did not receive this file, see http://www.horde.org/licenses/gpl. - * - * @author Vijay Mahrra - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem', array('admin' => true)); - -if (!Gollem_Auth::getBackend()) { - $notification->push(_("You need at least one backend defined to set permissions."), 'horde.error'); - Horde::url('index.php', true)->redirect(); -} - -/* Edit permissions for the preferred backend if none is selected. */ -$key = Horde_Util::getFormData('backend', Gollem_Auth::getPreferredBackend()); -$app = $registry->getApp(); -$backendTag = $app . ':backends:' . $key; -$perms = $injector->getInstance('Horde_Perms'); - -if ($perms->exists($backendTag)) { - $permission = $perms->getPermission($backendTag); - $perm_id = $perms->getPermissionId($permission); -} else { - $permission = $injector - ->getInstance('Horde_Perms') - ->newPermission($backendTag); - try { - $perms->addPermission($permission, $app); - } catch (Horde_Perms_Exception $e) { - $notification->push(sprintf(_("Unable to create backend permission: %s"), $e->getMessage()), 'horde.error'); - Horde::url('index.php', true)->redirect(); - } - - $perm_id = $perms->getPermissionId($permission); - $notification->push(sprintf(_("Created empty permissions for \"%s\". You must explicitly grant access to this backend now."), $key), 'horde.warning'); -} - -/* Redirect to horde permissions administration interface. */ -Horde::url($registry->get('webroot', 'horde') . '/admin/perms/edit.php', true) - ->add('perm_id', $permission->getId()) - ->redirect(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/quota.php php-horde-gollem-3.0.9/gollem-3.0.8/quota.php --- php-horde-gollem-3.0.8/gollem-3.0.8/quota.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/quota.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem'); - -/* Is this a popup window? */ -$isPopup = $browser->hasFeature('javascript'); - -/* Set up the template object. */ -$template = $injector->createInstance('Horde_View'); -if ($isPopup) { - $template->closebutton = _("Close"); - $page_output->topbar = $page_output->sidebar = false; - $page_output->addInlineScript(array( - '$("closebutton").observe("click", function() { window.close(); })' - ), true); -} - -/* Get the quota information. */ -$template->noquota = true; -$template->quotaerror = false; -$template->quotadisplay = false; -$template->quotagraph = false; -if (!empty(Gollem::$backend['quota'])) { - $template->noquota = false; - try { - $quota_info = $injector->getInstance('Gollem_Vfs')->getQuota(); - $usage = $quota_info['usage'] / (1024 * 1024.0); - $limit = $quota_info['limit'] / (1024 * 1024.0); - - $percent = ($usage * 100) / $limit; - if ($percent >= 90) { - $template->quotastyle = '
'; - } else { - $template->quotastyle = '
'; - } - $template->quotadisplay = sprintf(_("%.2fMB / %.2fMB (%.2f%%)"), $usage, $limit, $percent); - } catch (Horde_Vfs_Exception $e) { - $template->quotaerror = true; - $template->quotaerrormsg = $e->getMessage(); - } -} - -$page_output->header(array( - 'title' => _("Quota Display") -)); -if (!$isPopup) { - $notification->notify(array('listeners' => 'status')); -} -echo $template->render('quota'); -$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/README php-horde-gollem-3.0.9/gollem-3.0.8/README --- php-horde-gollem-3.0.8/gollem-3.0.8/README 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/README 1970-01-01 00:00:00.000000000 +0000 @@ -1,85 +0,0 @@ -================= - What is Gollem? -================= - -:Contact: gollem@lists.horde.org - -.. contents:: Contents -.. section-numbering:: - -Gollem is a web-based file manager, providing the ability to fully manage a -hierarchical file system stored in a variety of backends such as a SQL -database, as part of a real filesystem, or on FTP, Samba or SSH servers. - -This software is OSI Certified Open Source Software. OSI Certified is a -certification mark of the `Open Source Initiative`_. - -.. _`Open Source Initiative`: http://www.opensource.org/ - - -Obtaining Gollem -================ - -Further information on Gollem and the latest version can be obtained at: - - http://www.horde.org/apps/gollem - - -Documentation -============= - -The following documentation is available in the Gollem distribution: - -:README_: This file -:COPYING_: Copyright and license information -:`docs/CHANGES`_: Changes by release -:`docs/CREDITS`_: Project developers -:`docs/INSTALL`_: Installation instructions and notes -:`docs/TODO`_: Development TODO list - - -Installation -============ - -Instructions for installing Gollem can be found in the file INSTALL_ in the -``docs/`` directory of the Gollem distribution. - - -Assistance -========== - -If you encounter problems with Gollem, help is available! - -The Horde Frequently Asked Questions List (FAQ), available on the Web at - - http://wiki.horde.org/FAQ - -Horde LLC runs a number of mailing lists, for individual applications -and for issues relating to the project as a whole. Information, archives, and -subscription information can be found at - - http://www.horde.org/community/mail - -Lastly, Horde developers, contributors and users also make occasional -appearances on IRC, on the channel #horde on the Freenode Network -(irc.freenode.net). - - -Licensing -========= - -For licensing and copyright information, please see the file COPYING_ in the -Gollem distribution. - -Thanks, - -The Gollem Team - - -.. _README: README -.. _COPYING: http://www.horde.org/licenses/gpl -.. _docs/CHANGES: CHANGES -.. _docs/CREDITS: CREDITS -.. _INSTALL: -.. _docs/INSTALL: INSTALL -.. _docs/TODO: TODO diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/selectlist.php php-horde-gollem-3.0.9/gollem-3.0.8/selectlist.php --- php-horde-gollem-3.0.8/gollem-3.0.8/selectlist.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/selectlist.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,184 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem', array( - 'authentication' => 'selectlist' -)); - -$vars = Horde_Variables::getDefaultVariables(); - -/* Set directory. */ -try { - Gollem::changeDir(); -} catch (Gollem_Exception $e) { - $notification->push($e); -} - -/* Create a new cache ID if one does not already exist. */ -$cacheid = $vars->get('cacheid', strval(new Horde_Support_Randomid())); - -$selectlist = $session->get('gollem', 'selectlist/' . $cacheid, Horde_Session::TYPE_ARRAY); - -/* Run through the action handlers. */ -switch ($vars->actionID) { -case 'select': - if (is_array($vars->items) && count($vars->items)) { - foreach ($vars->items as $item) { - $item_value = Gollem::$backend['dir'] . '|' . $item; - if (empty($selectlist['files'])) { - $selectlist['files'] = array($item_value); - } else { - $item_key = array_search($item_value, $selectlist['files']); - if ($item_key !== false) { - unset($selectlist['files'][$item_key]); - sort($selectlist['files']); - } else { - $selectlist['files'][] = $item_value; - } - } - } - - $session->set('gollem', 'selectlist/' . $cacheid, $selectlist); - - $filelist = array_keys(array_flip($selectlist['files'])); - } - break; -} - -try { - $info = array('list' => Gollem::listFolder(Gollem::$backend['dir'])); -} catch (Gollem_Exception $e) { - /* If that didn't work, fall back to the parent or the home directory. */ - $notification->push(sprintf(_("Permission denied to %s: %s"), Gollem::$backend['dir'], $e->getMessage()), 'horde.error'); - - $loc = strrpos(Gollem::$backend['dir'], '/'); - Gollem::setDir(($loc !== false) ? substr(Gollem::$backend['dir'], 0, $loc) : Gollem::$backend['home']); - $info = array('list' => Gollem::listFolder(Gollem::$backend['dir'])); -} - -$info['title'] = htmlspecialchars(Gollem::$backend['label']); - -/* Commonly used URLs. */ -$self_url = Horde::url('selectlist.php'); - -/* Set up the template object. */ -$view = $injector->createInstance('Horde_View'); -$view->self_url = $self_url; -$view->forminput = Horde_Util::formInput(); -$view->cacheid = $cacheid; -$view->currdir = htmlspecialchars(Gollem::$backend['dir']); -$view->formid = htmlspecialchars($vars->formid); -$view->navlink = Gollem::directoryNavLink(Gollem::$backend['dir'], $self_url->copy()->add(array('cacheid' => $cacheid, 'formid' => $vars->formid))); -if ($GLOBALS['conf']['backend']['backend_list'] == 'shown') { - // TODO - //$view->changeserver = Horde::link(htmlspecialchars(Horde_Auth::addLogoutParameters(Horde::url('login.php')->add(array('url' => Horde::url('selectlist.php')->add(array('formid' => $vars->formid)))), Horde_Auth::REASON_LOGOUT)), _("Change Server")) . Horde::img('logout.png', _("Change Server")) . '', true; -} - -if (is_array($info['list']) && - count($info['list']) && - Gollem::checkPermissions('backend', Horde_Perms::READ)) { - - $entry = $icon_cache = array(); - $rowct = 0; - - foreach ($info['list'] as $key => $val) { - $item = array( - 'dir' => false, - 'name' => htmlspecialchars($val['name']), - 'selected' => false, - 'type' => $val['type'] - ); - - $name = str_replace(' ', ' ', $item['name']); - - /* Determine graphic to use. */ - if (!empty($val['link'])) { - $item['graphic'] = ''; - } elseif ($val['type'] == '**dir') { - $item['graphic'] = ''; - } else { - if (empty($icon_cache[$val['type']])) { - $icon_cache[$val['type']] = Horde::img($injector->getInstance('Horde_Core_Factory_MimeViewer')->getIcon($val['type'])); - } - $item['graphic'] = $icon_cache[$val['type']]; - } - - /* Create proper link. */ - switch ($val['type']) { - case '**dir': - $url = $self_url->copy()->add(array( - 'cacheid' => $cacheid, - 'dir' => Gollem::subdirectory(Gollem::$backend['dir'], $val['name']), - 'formid' => $vars->formid - )); - $item['link'] = $url->link() . '' . $name . ''; - $item['dir'] = true; - break; - - case '**sym': - if ($val['linktype'] === '**dir') { - if (substr($val['link'], 0, 1) == '/') { - $parts = explode('/', $val['link']); - $name = array_pop($parts); - $dir = implode('/', $parts); - } else { - $name = $val['link']; - $dir = Gollem::$backend['dir']; - } - - $url = $self_url->copy()->add(array( - 'cacheid' => $cacheid, - 'dir' => Gollem::subdirectory(Gollem::$backend['dir'], $val['name']), - 'formid' => $vars->formid - )); - $item['link'] = $item['name'] . ' -> ' . $url->link() . $val['link'] . ''; - } else { - $item['link'] = $item['name'] . ' -> ' . $val['link']; - } - break; - - default: - $item['link'] = $name; - break; - } - - if (!empty($selectlist['files']) && - in_array(Gollem::$backend['dir'] . '|' . $val['name'], $selectlist['files'])) { - $item['selected'] = true; - } - - $item['item'] = (++$rowct % 2) ? 'rowEven' : 'rowOdd'; - - $entry[] = $item; - } - - $view->entries = $entry; -} - -$page_output->addScriptFile('selectlist.js'); -$page_output->addInlineJsVars(array( - 'var GollemText' => array( - 'opener_window' => _("The original opener window has been closed. Exiting."), - ), -)); -$page_output->topbar = $page_output->sidebar = false; - -$page_output->header(array( - 'title' => $info['title'] -)); -$notification->notify(array('listeners' => 'status')); -echo $view->render('selectlist'); -$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/share.php php-horde-gollem-3.0.9/gollem-3.0.8/share.php --- php-horde-gollem-3.0.8/gollem-3.0.8/share.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/share.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem'); - -/* Check if the user has permissions to create shares here. */ -$share = Horde_Util::getFormData('share'); -@list($backend_key, $dir) = explode('|', $share); -$backend = Gollem_Auth::getBackend($backend_key); - -if (!$backend || empty($backend['shares']) || - strpos($dir, $backend['home']) !== 0) { - throw new Gollem_Excception(_("You are not allowed to share this folder")); -} - -/* Create a folder share if it doesn't exist yet. */ -$shares = $injector->getInstance('Gollem_Shares'); -if (!$shares->exists($share)) { - $shareOb = $shares->newShare($registry->getAuth(), $share, basename($dir)); - $shares->addShare($shareOb); -} - -/* Proceed with the regular share editing. */ -Horde::url('services/shares/edit.php', true, array('app' => 'horde')) - ->add(array('app' => 'gollem', 'share' => $share)) - ->redirect(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/templates/clipboard.html.php php-horde-gollem-3.0.9/gollem-3.0.8/templates/clipboard.html.php --- php-horde-gollem-3.0.8/gollem-3.0.8/templates/clipboard.html.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/templates/clipboard.html.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -
-forminput ?> - - - -

- -

- -
-

- -

- -

- -
- -

- -

- currdir ?> -

-
- - - - - - - - -entries as $entry): ?> - - - - - -
- -
- -
- -

- - - -

- -
diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/templates/edit.html.php php-horde-gollem-3.0.9/gollem-3.0.8/templates/edit.html.php --- php-horde-gollem-3.0.8/gollem-3.0.8/templates/edit.html.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/templates/edit.html.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -
- forminput ?> - - - - - -

vars->file) ?>

- - - -

- " /> - " /> - " /> -

-
diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/templates/.htaccess php-horde-gollem-3.0.9/gollem-3.0.8/templates/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.8/templates/.htaccess 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/templates/.htaccess 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ - - Require all denied - - - Deny from all - diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/templates/manager.html.php php-horde-gollem-3.0.9/gollem-3.0.8/templates/manager.html.php --- php-horde-gollem-3.0.8/gollem-3.0.8/templates/manager.html.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/templates/manager.html.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,155 +0,0 @@ -list_count): ?> -perms_chmod): ?> - - - - -
-forminput ?> - - - - - - - - - -
- itemcount ?> - navlink ?> -
-
-
    -
  • refresh ?>
  • -share_folder): ?> -
  • share_folder ?>
  • - -change_folder): ?> -
  • change_folder ?>
  • - -list_count): ?> -perms_chmod): ?> -
  • '#', 'title' => _("Change Permissions"), 'id' => 'gollem-chmod')) ?>
  • - -hasclipboard): ?> -
  • '#', 'title' => _("Copy"), 'id' => 'gollem-copy')) ?>
  • -perms_delete): ?> -
  • '#', 'title' => _("Cut"), 'id' => 'gollem-cut')) ?>
  • - - -perms_delete): ?> -
  • '#', 'title' => _("Delete"), 'id' => 'gollem-delete')) ?>
  • - -perms_edit): ?> -
  • '#', 'title' => _("Rename"), 'id' => 'gollem-rename')) ?>
  • - - -
-
- -empty_dir): ?> -

- -

- - - - - -headers as $header): ?> - id="" class="horde-split-left" style="text-align:" width=""> - - - - -entries as $entry): ?> - - -columns_type): ?> - - -columns_name): ?> - - -columns_share): ?> - - -columns_edit): ?> - - -columns_download): ?> - - -columns_modified): ?> - - -columns_size): ?> - - -columns_permission): ?> - - -columns_owner): ?> - - -columns_group): ?> - - - - - -
checkall ?> />
  - - - - - -   
- - -page_caption ?> - -perms_edit): ?> -
- - - - - -
-
- 1:  -
-
- upload_help ?> -
- -
diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/templates/quota.html.php php-horde-gollem-3.0.9/gollem-3.0.8/templates/quota.html.php --- php-horde-gollem-3.0.8/gollem-3.0.8/templates/quota.html.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/templates/quota.html.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -

- -

- -quotaerror): ?> -
- quotaerrormsg ?> -
- -noquota): ?> -
- -
- -quotadisplay): ?> - quotastyle ?> -
quotadisplay ?>
-
- - -closebutton): ?> -
- -
- diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/templates/selectlist.html.php php-horde-gollem-3.0.9/gollem-3.0.8/templates/selectlist.html.php --- php-horde-gollem-3.0.8/gollem-3.0.8/templates/selectlist.html.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/templates/selectlist.html.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -
-forminput ?> - - - - - -

- navlink ?> - changeserver): ?>changeserver ?> -

- -entries): ?> -
- -
- -entries as $entry): ?> -
- -
- - - -
- " /> - " /> - " /> -
-
Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/az.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/az.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/clipboard.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/clipboard.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/copy.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/copy.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/cut.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/cut.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/download.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/download.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/edit.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/edit.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/favicon.ico and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/favicon.ico differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/filter-topbar.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/filter-topbar.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/folder_create.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/folder_create.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/folder_goto.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/folder_goto.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/folder_home.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/folder_home.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/folder.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/folder.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/folder_symlink.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/folder_symlink.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/gollem.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/gollem.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/perms_disabled.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/perms_disabled.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/perms.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/perms.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/quota.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/quota.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/reload.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/reload.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/graphics/za.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/graphics/za.png differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/screen.css php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/screen.css --- php-horde-gollem-3.0.8/gollem-3.0.8/themes/default/screen.css 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/themes/default/screen.css 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -#gollem-attributes table.horde-table th { - text-align: center; -} - -.gollem-selectall { - font-weight: bold; - margin-left: 22px; -} - -#gollem-edit { - width: 99%; -} - -.header a:hover { - text-decoration: underline; -} - -/* Images. */ -.gollem-home { - background-image: url("graphics/folder_home.png"); -} -.gollem-quota { - background-image: url("graphics/quota.png"); -} -.gollem-clipboard { - background-image: url("graphics/clipboard.png"); -} -.gollem-download { - background-image: url("graphics/download.png"); -} -.gollem-edit { - background-image: url("graphics/edit.png"); -} -.gollem-folder { - background-image: url("graphics/folder.png"); -} -.gollem-sharefolder { - background-image: url("graphics/perms.png"); -} -.gollem-sharefolder-disabled { - background-image: url("graphics/perms_disabled.png"); -} -#gollem-changefolder { - background-image: url("graphics/folder_goto.png"); -} -#gollem-refresh { - background-image: url("graphics/reload.png"); -} -.gollem-symlink { - background-image: url("graphics/folder_symlink.png"); -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.8/view.php php-horde-gollem-3.0.9/gollem-3.0.8/view.php --- php-horde-gollem-3.0.8/gollem-3.0.8/view.php 2016-03-21 19:45:15.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.8/view.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,88 +0,0 @@ - - * @author Chuck Hagenbuch - * @category Horde - * @license http://www.horde.org/licenses/gpl GPL - * @package Gollem - */ - -require_once __DIR__ . '/lib/Application.php'; -Horde_Registry::appInit('gollem', array( - 'session_control' => 'readonly' -)); - -$vars = Horde_Variables::getDefaultVariables(); - -if ($vars->driver != Gollem::$backend['driver']) { - Horde::url('login.php')->add(array( - 'backend_key' => $vars->driver, - 'url' => Horde::selfUrl(true) - ))->redirect(); -} - -try { - Gollem::changeDir(); -} catch (Horde_Vfs_Exception $e) { - $notification->push($e); -} - -$gollem_vfs = $injector->getInstance('Gollem_Vfs'); -$stream = null; -$data = ''; -try { - if (is_callable(array($gollem_vfs, 'readStream'))) { - $stream = $gollem_vfs->readStream($vars->dir, $vars->file); - } else { - $data = $gollem_vfs->read($vars->dir, $vars->file); - } -} catch (Horde_Vfs_Exception $e) { - Horde::log($e, 'NOTICE'); - throw $e; -} - -$mime_part = new Horde_Mime_Part(); -$mime_part->setType(Horde_Mime_Magic::extToMime($vars->type)); -$mime_part->setContents(is_resource($stream) ? $stream : $data); -$mime_part->setName($vars->file); -// We don't know better. -$mime_part->setCharset('US-ASCII'); - -$ret = $injector - ->getInstance('Horde_Core_Factory_MimeViewer') - ->create($mime_part) - ->render('full'); -reset($ret); -$key = key($ret); -try { - $size = $gollem_vfs->size($vars->dir, $vars->file); -} catch (Horde_Vfs_Exception $e) { - $size = null; -} - -if (empty($ret)) { - $browser->downloadHeaders($vars->file, null, false, $size); - if (is_resource($stream)) { - fseek($stream, 0); - while ($buffer = fread($stream, 8192)) { - echo $buffer; - } - } else { - echo $data; - } -} elseif (strpos($ret[$key]['type'], 'text/html') !== false) { - $page_output->topbar = $page_output->sidebar = false; - $page_output->header(); - echo $ret[$key]['data']; - $page_output->footer(); -} else { - $browser->downloadHeaders($vars->file, $ret[$key]['type'], true, strlen($ret[$key]['data'])); - echo $ret[$key]['data']; -} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/clipboard.php php-horde-gollem-3.0.9/gollem-3.0.9/clipboard.php --- php-horde-gollem-3.0.8/gollem-3.0.9/clipboard.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/clipboard.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,55 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem'); + +$vars = Horde_Variables::getDefaultVariables(); + +/* Set up the template object. */ +$template = $injector->createInstance('Horde_View'); +$template->cancelbutton = _("Cancel"); +$template->clearbutton = _("Clear"); +$template->pastebutton = _("Paste"); +$template->cutgraphic = Horde::img('cut.png', _("Cut")); +$template->copygraphic = Horde::img('copy.png', _("Copy")); +$template->currdir = Gollem::getDisplayPath($vars->dir); +$template->dir = $vars->dir; +$template->manager_url = Horde::url('manager.php'); + +$entry = array(); +foreach ($session->get('gollem', 'clipboard') as $key => $val) { + $entry[] = array( + 'copy' => ($val['action'] == 'copy'), + 'cut' => ($val['action'] == 'cut'), + 'id' => $key, + 'name' => $val['display'] + ); +} +$template->entries = $entry; + +$page_output->addScriptFile('clipboard.js'); +$page_output->addScriptFile('tables.js', 'horde'); +$page_output->addInlineJsVars(array( + 'GollemClipboard.selectall' => _("Select All"), + 'GollemClipboard.selectnone' => _("Select None") +)); + +$page_output->header(array( + 'title' => _("Clipboard") +)); +$notification->notify(array('listeners' => 'status')); +echo $template->render('clipboard'); +$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/config/backends.php php-horde-gollem-3.0.9/gollem-3.0.9/config/backends.php --- php-horde-gollem-3.0.8/gollem-3.0.9/config/backends.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/config/backends.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,424 @@ + false, + 'name' => 'FTP Server', + 'driver' => 'ftp', + 'hordeauth' => false, + 'params' => array( + // The hostname/IP Address of the FTP server + 'hostspec' => 'localhost', + // The port number of the FTP server + 'port' => 21, + // Use passive mode? + 'pasv' => false, + // The return formatting from the 'ls' command. Possible Values: 'aix', + // 'standard'. + // 'lsformat' => 'standard', + // If true and the POSIX extension is available the driver will map + // the user and group IDs returned from the FTP server with the local + // IDs from the local password file. This is useful only if the FTP + // server is running on localhost or if the local user/group + // IDs are identical to the remote FTP server. + // 'maplocalids' => true, + // The default permissions to set for newly created folders and files. + // 'permissions' => '750', + // If true, and PHP had been compiled with OpenSSL support, TLS + // transport-level encryption will be negotiated with the server. + // 'ssl' => false, + // Set timeout (in seconds) for the FTP server. Default: 90 seconds + // 'timeout' => 90, + // The type of the remote FTP server. Possible values: 'unix', 'win', + // 'netware'. By default, we attempt to auto-detect type. + // 'type' => 'unix', + ), + 'loginparams' => array( + // Allow the user to change the FTP server + // 'hostspec' => 'Hostname', + // Allow the user to change the FTP port + // 'port' => 'Port' + ), + // 'root' => '', + // 'home' => '', + // 'createhome' => false, + // 'filter' => '^regex$', + // 'quota' => false, + 'attributes' => array( + 'type', + 'name', + 'edit', + 'download', + 'modified', + 'size', + 'permission', + 'owner', + 'group' + ) +); + +// This backend uses Horde credentials to automatically log in. +$backends['hordeftp'] = array( + // Disabled by default + 'disabled' => true, + 'name' => 'FTP Server', + 'driver' => 'ftp', + 'hordeauth' => true, + 'params' => array( + // The hostname/IP Address of the FTP server. + 'hostspec' => 'localhost', + // The port number of the FTP server. + 'port' => 21, + // Use passive mode? + 'pasv' => false, + // The return formatting from the 'ls' command. Possible Values: 'aix', + // 'standard'. + // 'lsformat' => 'standard', + // If true and the POSIX extension is available the driver will map + // the user and group IDs returned from the FTP server with the local + // IDs from the local password file. This is useful only if the FTP + // server is running on localhost or if the local user/group + // IDs are identical to the remote FTP server. + // 'maplocalids' => true, + // The default permissions to set for newly created folders and files. + // 'permissions' => '750', + // If true, and PHP had been compiled with OpenSSL support, TLS + // transport-level encryption will be negotiated with the server. + // 'ssl' => false, + // Set timeout (in seconds) for the FTP server. Default: 90 seconds + // 'timeout' => 90, + // The type of the remote FTP server. Possible values: 'unix', 'win', + // 'netware'. By default, we attempt to auto-detect type. + // 'type' => 'unix', + ), + 'loginparams' => array( + // Allow the user to change the FTP server. + // 'hostspec' => 'Hostname', + // Allow the user to change the FTP port. + // 'port' => 'Port' + ), + // 'root' => '', + // 'home' => '', + // 'createhome' => false, + // 'filter' => '^regex$', + // 'quota' => false, + 'attributes' => array( + 'type', + 'name', + 'edit', + 'download', + 'modified', + 'size', + 'permission', + 'owner', + 'group' + ) +); + +// SQL Example. +$backends['sql'] = array( + // Disabled by default + 'disabled' => true, + 'name' => 'SQL Server', + 'driver' => 'sql', + 'hordeauth' => true, + + // The default connection details are pulled from the Horde-wide SQL + // connection configuration. + 'params' => array_merge($GLOBALS['conf']['sql'], + array('table' => 'horde_vfs')), + + // If you need different connection details than from the Horde-wide SQL + // connection configuration, uncomment and set the following lines. + // 'params' => array( + // // The SQL connection parameters. See horde/config/conf.php for + // // descriptions of each parameter. + // 'phptype' => 'mysql', + // 'hostspec' => 'localhost', + // 'database' => 'horde', + // 'username' => 'horde', + // 'password' => 'horde', + // + // // The SQL table containing the VFS. See the horde/scripts/db + // // directory for examples. + // 'table' => 'horde_vfs' + // ), + 'loginparams' => array(), + // 'root' => '', + // 'home' => '', + // 'createhome' => false, + // 'filter' => '^regex$', + // 'quota' => false, + 'attributes' => array( + 'type', + 'name', + 'edit', + 'download', + 'modified', + 'size' + ) +); + +// This backend specifies a home directory and root directory in a SQL vfs. +$backends['sqlhome'] = array( + // Disabled by default + 'disabled' => true, + 'name' => 'SQL Server with home', + 'driver' => 'sql', + 'hordeauth' => true, + + // The default connection details are pulled from the Horde-wide SQL + // connection configuration. + 'params' => array_merge($GLOBALS['conf']['sql'], + array('table' => 'horde_vfs')), + + // If you need different connection details than from the Horde-wide SQL + // connection configuration, uncomment and set the following lines. + // 'params' => array( + // // The SQL connection parameters. See horde/config/conf.php for + // // descriptions of each parameter. + // 'phptype' => 'mysql', + // 'hostspec' => 'localhost', + // 'database' => 'horde', + // 'username' => 'horde', + // 'password' => 'horde', + // + // // The SQL table containing the VFS. See the horde/scripts/db + // // directory for examples. + // 'table' => 'horde_vfs' + // ), + 'loginparams' => array(), + 'root' => '/home', + 'home' => '/home/' . $GLOBALS['registry']->getAuth(), + // 'createhome' => false, + // 'filter' => '^regex$', + // 'quota' => false, + 'shares' => true, + 'attributes' => array( + 'type', + 'name', + 'share', + 'edit', + 'download', + 'modified', + 'size', + 'owner', + ) +); + +// NOTE: /exampledir/home and all subdirectories should be, for +// security reasons, owned by your web server user and mode 700 or you +// will need to use suexec or something else that can adjust the web +// server effective uid. +$backends['file'] = array( + // Disabled by default + 'disabled' => true, + 'name' => 'Virtual Home Directories', + 'driver' => 'file', + 'hordeauth' => true, + 'params' => array( + // The base location under which the user home directories live. + 'vfsroot' => '/exampledir/home/', + // The default permissions to set for newly created folders and files. + // 'permissions' => '750' + ), + 'loginparams' => array(), + 'root' => '/', + 'home' => $GLOBALS['registry']->getAuth(), + // 'createhome' => false, + // 'filter' => '^regex$', + // 'quota' => false, + 'shares' => true, + 'attributes' => array( + 'type', + 'name', + 'share', + 'edit', + 'download', + 'modified', + 'size', + ) +); + +// SMB Example +$backends['smb'] = array( + // Disabled by default + 'disabled' => true, + 'name' => 'SMB Server', + 'driver' => 'smb', + 'hordeauth' => false, + 'params' => array( + 'hostspec' => 'example', + 'port' => 139, + 'share' => 'homes', + // Path to the smbclient executable. + 'smbclient' => '/usr/bin/smbclient', + // IP address of server (only needed if hostname is different from + // NetBIOS name). + // 'ipaddress' => '127.0.0.1', + // The default permissions to set for newly created folders and + // files. + // 'permissions' => '750' + ), + 'loginparams' => array( + // Allow the user to change to Samba server. + // 'hostspec' => 'Hostname', + // Allow the user to change the Samba port. + // 'port' => 'Port', + // Allow the user to change the Samba share. + // 'share' => 'Share', + ), + // 'root' => '', + // 'home' => '', + // 'createhome' => false, + // 'filter' => '^regex$', + // 'quota' => false, + 'attributes' => array( + 'type', + 'name', + 'edit', + 'download', + 'modified', + 'size' + ) +); + +// SSH2 Example +$backends['ssh2'] = array( + // Disabled by default + 'disabled' => true, + 'name' => 'SSH2 Server', + 'driver' => 'ssh2', + 'hordeauth' => false, + 'params' => array( + // The hostname/IP Address of the SSH server + 'hostspec' => 'ssh2.example.com', + // The port number of the SSH server + 'port' => 22, + // Set timeout (in seconds) for the SSH server. Default: 90 seconds + // 'timeout' => 90, + // If true and the POSIX extension is available the driver will map + // the user and group IDs returned from the SSH server with the local + // IDs from the local password file. This is useful only if the SSH + // server is running on localhost or if the local user/group + // IDs are identical to the remote SSH server. + // 'maplocalids' => true, + // The default permissions to set for newly created folders and + // files. + // 'permissions' => '750' + ), + 'loginparams' => array( + // Allow the user to change the SSH server + // 'hostspec' => 'Hostname', + // Allow the user to change the SSH port + // 'port' => 'Port' + ), + // 'root' => '', + // 'home' => '', + // 'createhome' => false, + // 'filter' => '^regex$', + // 'quota' => false, + 'attributes' => array( + 'type', + 'name', + 'edit', + 'download', + 'modified', + 'size', + 'permission', + 'owner', + 'group' + ) +); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/config/conf.xml php-horde-gollem-3.0.9/gollem-3.0.9/config/conf.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/config/conf.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/config/conf.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,31 @@ + + + + + Backend Settings + none + + none + hidden + shown + + + + + Caching + false + + + 120 + + + + diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/config/.htaccess php-horde-gollem-3.0.9/gollem-3.0.9/config/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.9/config/.htaccess 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/config/.htaccess 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,6 @@ + + Require all denied + + + Deny from all + diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/config/menu.php.dist php-horde-gollem-3.0.9/gollem-3.0.9/config/menu.php.dist --- php-horde-gollem-3.0.8/gollem-3.0.9/config/menu.php.dist 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/config/menu.php.dist 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,41 @@ + 'http://www.example.com/', + * 'text' => 'Example, Inc.', + * 'icon' => 'example.png', + * 'icon_path' => 'http://www.example.com/images/', + * 'target' => '_blank', + * 'onclick' => '' + * ); + * + * You can also add a "separator" (a spacer) between menu items. To add a + * separator, simply add a new string to the $_menu array set to the text + * 'separator'. It should look like this: + * + * $_menu[] = 'separator'; + * + * $Id: a5fd5b93f046712e91a667cbb4554f3e435d0fc7 $ + */ + +$_menu = array(); + +/* Add your custom entries below this line. */ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/config/prefs.php php-horde-gollem-3.0.9/gollem-3.0.9/config/prefs.php --- php-horde-gollem-3.0.8/gollem-3.0.9/config/prefs.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/config/prefs.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,101 @@ + _("User Interface"), + 'label' => _("File Display"), + 'desc' => _("File display preferences."), + 'members' => array( + 'show_dotfiles', 'sortdirsfirst', 'columnselect', 'sortby', 'sortdir', + 'perpage' + ) +); + +// show dotfiles? +$_prefs['show_dotfiles'] = array( + 'value' => 0, + 'type' => 'checkbox', + 'desc' => _("Show dotfiles?") +); + +// always sort directories before files +$_prefs['sortdirsfirst'] = array( + 'value' => 1, + 'type' => 'checkbox', + 'desc' => _("List folders first?") +); + +// columns selection widget +$_prefs['columnselect'] = array( + 'type' => 'special', + 'handler' => 'Gollem_Prefs_Special_Columnselect' +); + +// columns to be displayed +$_prefs['columns'] = array( + // 'value' = json_encode(array(array('ftp', 'type', 'name', 'size'))) + 'value' => '[]' +); + + +// user preferred sorting column +$_prefs['sortby'] = array( + 'value' => Gollem::SORT_TYPE, + 'type' => 'enum', + 'enum' => array( + Gollem::SORT_TYPE => _("File Type"), + Gollem::SORT_DATE => _("File Name"), + Gollem::SORT_DATE => _("File Modification Time"), + Gollem::SORT_SIZE => _("File Size") + ), + 'desc' => _("Default sorting criteria:") +); + +// user preferred sorting direction +$_prefs['sortdir'] = array( + 'value' => 0, + 'type' => 'enum', + 'enum' => array( + Gollem::SORT_ASCEND => _("Ascending"), + Gollem::SORT_DESCEND => _("Descending") + ), + 'desc' => _("Default sorting direction:") +); + +// number of items per page +$_prefs['perpage'] = array( + 'value' => 30, + 'type' => 'number', + 'desc' => _("Items per page") +); + + + +// *** File Actions Preferences *** + +$prefGroups['settings'] = array( + 'column' => _("User Interface"), + 'label' => _("File Actions"), + 'desc' => _("File action settings."), + 'members' => array('recursive_deletes')); + +// user preferred recursive deletes +$_prefs['recursive_deletes'] = array( + 'value' => 'warn', + 'type' => 'enum', + 'enum' => array( + 'disabled' => _("No"), + 'enabled' => _("Yes"), + 'warn' => _("Ask") + ), + 'desc' => _("Delete folders recursively?") +); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/COPYING php-horde-gollem-3.0.9/gollem-3.0.9/COPYING --- php-horde-gollem-3.0.8/gollem-3.0.9/COPYING 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/COPYING 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,281 @@ + 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. + + END OF TERMS AND CONDITIONS + diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/docs/CHANGES php-horde-gollem-3.0.9/gollem-3.0.9/docs/CHANGES --- php-horde-gollem-3.0.8/gollem-3.0.9/docs/CHANGES 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/docs/CHANGES 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,501 @@ +------ +v3.0.9 +------ + +[jan] Update Portuguese translation. +[jan] Update Basque translation. + + +------ +v3.0.8 +------ + +[jan] Add Greek translation (Limperis Antonis ). + + +------ +v3.0.7 +------ + +[jan] Use access rules compatible with both Apache 2.2 and 2.4. +[jan] Fix fatal error when cutting and pasting files on the same backend. + + +------ +v3.0.6 +------ + +[jan] Update Italian translation. + + +------ +v3.0.5 +------ + +[mjr] SECURITY: Fix XSS vulnerability when viewing directory contents + (Discovered by http://www.beyondsecurity.com/ssd.html). + + +------ +v3.0.4 +------ + +[jan] Update Italian translation. +[jan] Update Catalan translation. +[jan] Update Czech translation (Michael Grafnetter + ). +[jan] Update German translation. +[jan] Update Hungarian translation. + + +------ +v3.0.3 +------ + +[jan] Update Polish translation (Maciej Uhlig ). +[jan] Make shares table compatible with Oracle. + + +------ +v3.0.2 +------ + +[jan] Update Danish translation (Erling Preben Hansen ). + + +------ +v3.0.1 +------ + +[jan] Fix saving columns preference if only one backend exists (Bug #12003). + + +------ +v3.0.0 +------ + +[jan] Update French translation (Paul De Vlieger + ). + + +--------- +v3.0.0RC2 +--------- + +[jan] Pass custom login parameters to VFS backend (Bug #11771). +[jan] Fix selecting display columns in preferences (Bug #11851). +[jan] Fix automatic login to other than the first backend. +[jan] Fix downloading if backend key doesn't match driver name (Bug #11746). +[jan] Update Basque translation (Ibon Igartua ). +[jan] Change recursive deletion preference to ask by default. +[jan] Fix share_id column if using old share backend (Bug #11833). +[jan] Show loading layer when changing backends on login form. + + +--------- +v3.0.0RC1 +--------- + +[jan] Don't show permissions link if permissions are disabled (Bug #11705). +[jan] Use short date format in file listing (Request #11722). +[jan] Update Dutch translation (Arjen de Korte ). + + +----------- +v3.0.0beta1 +----------- + +[jan] Convert templates to Horde_View. +[jan] Fix sorting if using a pager. +[jan] Use standard Horde dialogs. + + +---------- +v2.0.3-git +---------- + +[jan] Fix setting quota parameters to the VFS backend (Bug #11455). +[jan] Fix getViewLink() API method (Bug #11226). +[jan] Update Turkish translation (İstanbul Technical University). + + +------ +v2.0.2 +------ + +[jan] Don't show user name and password fields on login page if not required. +[jan] Display 'loginparams' on login screen (Bug #11088). +[jan] Fix removing filter (Bug #11043). +[jan] Update Japanese translation (Hiromi Kimura ). + + +------ +v2.0.1 +------ + +[mms] Fix selectlist widget when initial cacheID was not given (Bug #10781). +[mms] Fix icon display of files in selectlist widget. +[jan] Fix downloading of file types without a MIME viewer (Bug #10709). +[jan] Fix autocreating of home folders (Bug #10690). +[jan] Fix JavaScript for Actions drop down list (Bug #10695). + + +---- +v2.0 +---- + +[jan] Fix corruption of downloaded files (Bug #8481). +[jan] Catch if VFS backend doesn't support size() (Bug #10637). +[mms] Fix editing text files. + + +-------- +v2.0-RC1 +-------- + +[jan] Fix usage of createhome parameter (Bug #10592). +[mms] Fix display of 'columnselect' preference (Bug #10628). +[jan] Don't require login for login-less VFS backends. + + +----------- +v2.0-ALPHA2 +----------- + +[jan] Fix file viewing. +[jan] Add missing backends configuration. +[jan] Add missing sort icons. +[jan] Fix broken dependency. + + +----------- +v2.0-ALPHA1 +----------- + +[jan] Convert authentication infrastructure to H4. +[jan] Provide default configuration files instead of .dist versions. +[mms] Convert to use H4. + + +------ +v1.1.2 +------ + +[mms] SECURITY: Fix CSS vulnerability when viewing file data (found by + nightmare.lmw@anarchynet.org). +[jan] Add Japanese translation (Hiromi Kimura ). + + +------ +v1.1.1 +------ + +[jan] Add Croatian translation (Valentin Vidic ). +[mms] Upgrade prototype.js to v1.6.1. +[mms] Fix create folder dialog in IE (Bug #8216). +[jan] Don't redirect to browse view if viewing a file fails. + + +---- +v1.1 +---- + +[jan] Fix attachment dialog with only a single autologin backend (Bug #7096). +[jan] Start with first page again when filter string is changed (Bug #7935). +[mms] Navigation link now uses description from backends.php (Request #8037, + Thomas Reifferscheid ). +[mjr] Fix issue that was causing the wrong backend to be selected when being + redirected to login.php. +[mms] Fix autologin when switching backends on login page (Bug #7892, + horde@smartsector.hu). + + +-------- +v1.1-RC1 +-------- + +[mms] Add folder caching. +[mms] Add pager navigation and filtering (Request #7160, joel@scopserv.com). +[jan] Add Estonian translation (Alar Sing ). +[jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV + ). +[cjh] Use the Horde date_format preference (Bug #6683). +[cjh] Apply fix for http://dev.rubyonrails.org/ticket/11473 to prototype.js + (Request #6590). +[jan] Add Turkish translation (METU ). +[cjh] If the VFS backend supports streams, use them to avoid reading entire + files into memory when downloading (Request #5913). +[mms] Compress download data. +[jan] Add Ukrainian translation (Andriy Kopystyansky ). +[bak] Add browse API to allow browsing backends through WebDAV (Request #5337). +[cjh] Inline PHP-generated javascript to avoid cross-domain leaking + (Bug #5307). +[mms] Preserve URL anchor information when performing login. +[mms] All javascript now contained in static, cacheable files. +[cjh] Add javascript sortable tables to Gollem. +[cjh] Use optimized Horde_Template code as Gollem_Template. +[cjh] Fix javascript errors when filenames contain quotes (Bug #3824), + and make several links work without JavaScript. +[jan] Add editing of text files. +[mms] Add examples/checks for SSH2 VFS driver. + + +------ +v1.0.4 +------ + +[jan] Add Estonian translation (Alar Sing ). +[jan] Add Basque translation (Euskal Herriko Unibertsitatea EHU/UPV + ). +[jan] Add Slovak translation (Martin Matuška ). +[cjh] Fix uploading files to non-empty directories when deletion is disabled + (Bug #5349). + + +------ +v1.0.3 +------ + +[jan] Add Catalan translation (Jordi Giralt ). +[jan] Add Slovenian translation (Duck ). +[jan] Add Brazilian Portuguese translation (Fábio Gomes ). +[mms] Don't show quota link in menu if quota support for current backend is + disabled. + + +------ +v1.0.2 +------ + +[jan] Add Danish translation (Brian Truelsen ). +[mms] Allow admin to disable clipboard support in backends.php. +[mms] Allow direct autologin from login page if there are no additional login + parameters available (Bug #3299, jpolansky@lsit.ucsb.edu). +[mms] Fix displaying/loading wrong backend when changing backends via the + dropdown on login page (Bug #3298, jpolansky@lsit.ucsb.edu). + + +---------- +v1.0.2-RC1 +---------- + +[mms] Convert all page templates to Horde_Template. +[mms] Add row highlighting to manager page (Bug #2977). +[mms] Fix configtabs in configuration file (Bug #3119). + + +------ +v1.0.1 +------ + +[mms] Don't try to login using Horde auth credentials if hordeauth is off + (Bug #3078). +[mms] Can select default permissions for newly created files and directories + per backend. + + +---------- +v1.0.1-RC1 +---------- + +[mms] Indicate if no backends are available to a user. +[mms] Add quota status page (Bug #2685). +[mms] Add interface to facilitate admins in editing permissions on a + per-backend basis (Bug #2255, vijay.mahrra@es.easynet.net). +[mms] Add support for VFS quota checking (Bug #162). +[mms] Fix autocreation of home directories when home is also the root + directory (Bug #2603). +[mms] Add language selection to login screen if using gollem as the + authentication driver. +[mms] Add 'redirect_on_logout' and 'alternate_login' config parameters. +[mms] Work around bug in VFS's autocreatePath() occuring in Horde <= 3.0.4. +[jan] Add Polish translation (Krzysztof Kozlowski ). + + +---- +v1.0 +---- + +[mms] Move filter parameter in backends.php from the VFS 'params' array to + the driver's base level. +[mms] Home should default to root, not the base directory, if it is undefined. +[mms] Pass configuration error messages to the login screen on aborted login. + + +-------- +v1.0-RC2 +-------- + +[mms] Allow home directory to be autocreated on login if it doesn't exist. +[mms] Added ability to copy/cut between VFS backends. +[mms] Added clipboard screen. +[jan] Add Hungarian translation (Laszlo L. Tornoci ). + + +-------- +v1.0-RC1 +-------- + +[mms] Exit back to login screen if autologin attempt fails. +[mms] Fix logins when either 'home' or 'root' is a relative path. +[mms] Skip login screen if there are no loginparams required. +[mms] Add 'driver' and 'dir' parameters to download/view links so that these + links are not tied to the current session. +[jan] Add Finnish translation (Leena Heino ). + + +--------- +v1.0-BETA +--------- + +[mms] Consolidated template code to reduce the number of included files needed + per page load. +[mms] Added realPath() function to Gollem:: to lower minimum Horde requirement + from 3.0.5 to 3.0. + + +---------- +v1.0-ALPHA +---------- + +[mas] Change any output of and tags to and for better + accessibility support. +[mms] Remove 'change_server' and 'change_port' configuration parameters and + instead allow admin to choose which VFS parameters can be overriden + by the user at login time via the backend configuration. +[mms] Honor the Horde-wide 'redirect_on_logout' and 'alternate_login' + configuration parameters. +[jan] Add Latvian translation (Janis Eisaks ). +[mms] Tweaks to make sure 'root' isn't a required parameter (Bug #1663). +[mms] Allow changing folders using relative paths (Bug #1585). +[mms] Automatically generate new upload fields on demand. +[mms] Allow user to switch between multiple backends during a single session. +[mms] Add backend selection to the left tree sidebar. +[jan] Allow to switch backends in select file popup window. +[cjh] Consistently use Folder, not Directory + (Benoit St-Andre ). +[cjh] Fix loading of an extra frameset on login screen reloads. +[mms] Add API for other Horde applications to show a file dialog to select + and return files. +[jan] Add regular expression filters for directory listings (Peter Arien + ). +[cjh] Add recursive deletion of directories (Jeff Graves ). +[mms] Only support viewing one backend at a time now. +[mms] Encrypt passwords in session. +[mms] Moved all session creation code to Gollem_Session::. +[cjh] Enforce all permissions for backends if they are set + (Amith Varghese ). +[mms] Added test script. +[mms] Allow up to three files to be uploaded at once. +[cjh] View files in a new window, allowing viewing of types that we don't + allow inline display of. +[cjh] Copy/Paste files functionality (Michael Varghese + ). +[max] Fix 'hordeauth' is set to true, but the realm not getting + stripped from the username. +[cjh] Add preferences for which columns to display + (Liam Hoekenga ). +[jan] Add Romanian translation (Eugen Hoanca ). +[cjh] Display the total size of files in a directory + (Tero Matinlassi ). +[cjh] Add move/copy between different backends (j.huinink@wanadoo.nl). +[cjh] Add ability to view different backends side-by-side + (j.huinink@wanadoo.nl). +[cjh] Add Move/Copy functionality + (Michael Varghese ). +[cjh] Preference for showing/hiding .dotfiles + (Liam Hoekenga ). +[cjh] Put download links in a separate column. Having the filename sometimes + mean view and sometimes mean download was very confusing. +[cjh] Add support for 'home' parameter in backend configuration + (Liam Hoekenga ). +[cjh] Add Change Directory menu item (Liam Hoekenga ). +[jan] Add Bulgarian translation (Miroslav Pendev ). +[cjh] If 'hordeauth' is set to 'full', usernames will not be stripped + of anything after the first @ when doing Horde authentication. +[mac] Use MIME_Viewers to display filetypes we recognize. +[cjh] Make the server list more dynamic; automatically log users in when + they select a server that doesn't require any more credentials, and + reload the form when they change servers to make sure the fields are + accurate. +[mac] Allow users to select an FTP server (if the admin allows) and add a + server list again. +[mac] Add conf.xml. +[cjh] Gollem is now completely based on the VFS backend system. Thanks + to Michael Varghese . +[jan] Add Norwegian Nynorsk translation (Per-Stian Vatne ). +[cjh] Close a potential problem with register_globals On and $js_onLoad. +[cjh] Respect show_dotfiles settings in servers.php + (Marcus I. Ryan ). +[cjh] Use the new PrefsUI class. +[jon] Adapt to the new Horde::img() syntax. +[cjh] Use passive mode. +[cjh] Switch output compression to ob_gzhandler(). +[cjh] Prefix all application constants with GOLLEM_. +[cjh] Use the new Notification system. +[cjh] Use GOLLEM_TEMPLATES constant for all template paths. +[cjh] Use $registry->get() for all Registry information. +[jan] Add Swedish translation (Andreas Dahlén ). +[jan] Remove the standard value for the language preference. The language to + fall back to should be set Horde wide in lang.php instead. +[jan] Add Korean translation (J.I Kim ). +[cjh] Nuke forwards/vacation/password stuff; Gollem is a file manager. +[cjh] Remove server/port preferences. +[bjn] Change 'en' and 'en_EN' locales to 'en_US' (default). +[cjh] Add French translation (Remi@Cohen-Scali.com). +[cjh] Take framework updates into account. +[jan] Add Russian translation (Anton Nekhoroshih ). +[jan] Add German translation. +[jan] Add Italian translation (Giovanni Meneghetti ). +[cjh] Chmod now works (Anton Nekhoroshih ). +[cjh] Add Traditional Chinese translation (David Chang ). +[cjh] Add Czech translation (pchytil@asp.ogi.edu). +[avsm] Replace $conf['paths'] with the $registry equivalents. +[cjh] Add $conf['menu']['apps'] support. +[cjh] Add translation framework. +[cjh] Start to handle symlinks correctly. +[cjh] Fix problem going up to home directory. +[cjh] Use prefs.gif and generic prefs templates from Horde. +[jon] Merge doctype.inc into common-header.inc. +[jon] Allow the registry to handle Gollem's configuration values. +[jon] HORDE_BASE is now defined in lib/base.php instead of config/conf.php. +[max] Rename MOTD.html to motd.php, and move to a .dist file. +[max] Add the realm field to make logins unique on multi-server configurations + for preferences and authentication. +[max] Allow Gollem to be an authentication handler for Horde. +[cjh] Define the HORDE_BASE constant in config/conf.php, and use it when + referring to any of Horde's files. +[max] Remove connection tracking, made obsolete by redirect.php. +[jon] Retired config/menu.txt in favor of config/menu.php. This file follows + a new format based on native PHP data structures. +[jon] Use the Horde temporary file routines. +[cjh] Added a few new icons and tweaked some minor layout stuff. +[cjh] Moved IMP's poppassd script into lib/Password/poppassd.php. Doesn't work + yet, but this is where it belongs. +[max] Moved the status.php require from the menu to the individual pages. +[max] Finished updating preferences to the current Horde API. +[jon] Updated preferences functions to match the new Horde preferences API. +[max] Update to new Horde prefs system. +[max] Update to new Horde registry system. +[max] Fix file renaming. +[max] Make forwards, vacation, and password options server settings. +[max] Fix 1-off year error in file dates. +[max] Add file date format config entry. +[max] Move authentication and session creation from manager to redirect. +[max] Add Gollem::setLabel() to set the label for printing current directory. +[max] Dump the Gollem_util class in favor of Gollem. +[max] Add directory icons. +[max] Add file downloading by clicking on the file name. +[max] Allow creation of folders in empty directories. +[max] Add a GOLLEM_BASE constant to make Gollem location-independant. +[max] Login now submits to redirect.php. +[cjh] Add Gollem::subdirectory() for making subdirectory links correctly. +[cjh] In Gollem::getFileList(), default the dir to '' instead of '.'. +[max] Add Gollem::getFileList() to parse the ftp raw directory list +[max] Added preferences tracking (modified from IMP). +[max] Move directory tracking to Gollem:: and use session vars if not set in + POST or GET. +[max] Create folder, delete items, rename items, upload file on file manager. +[max] Added file manager actions. +[max] Added ftp file manager. +[max] Planning, beginning, modernizing. diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/docs/CREDITS php-horde-gollem-3.0.9/gollem-3.0.9/docs/CREDITS --- php-horde-gollem-3.0.8/gollem-3.0.9/docs/CREDITS 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/docs/CREDITS 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,76 @@ +========================= + Gollem Development Team +========================= + + +Core Developers +=============== + +- Michael Slusarz +- Jan Schneider + + +Localization +============ + +====================== =============================================== +Basque Edurne + Ibon Igartua +Brazilian Portuguese Fábio Gomes + Luis Felipe Marzagao + Eduardo de Carli +Bulgarian Miroslav Pendev +Catalan Jordi Giralt +Chinese (Traditional) David Chang +Croatian Valentin Vidic +Czech Pavel Chytil + Michael Grafnetter +Danish Brian Truelsen + Erling Preben Hansen +Dutch Jan Kuipers + Peter Arien + Arjen de Korte +Estonian Alar Sing +Finnish Leena Heino +French Remi Cohen-Scali + Benoit St-André + Pierre Lachance +German Jan Schneider +Greek Giorgos Strimpakos + Terpou Maria + Drakopoulos Takis +Hungarian Laszlo L. Tornoci + Andras Galos +Italian Giovanni Meneghetti + Fabio Pedretti + Marco Pirovano + Massimo Balestrieri +Japanese Hiromi Kimura +Korean J.I Kim + Josh Kim +Latvian Janis Eisaks +Norwegian Nynorsk Per-Stian Vatne +Polish Krzysztof Kozlowski + Tadeusz Lesiecki + Piotr Tarnowski + Maciej Uhlig +Romanian Eugen Hoanca +Russian Anton Nekhoroshih +Slovak Martin Matuška + Alexey Zakharov + Jozef Sudolský +Slovenian Duck +Spanish Raúl Alvarez Venegas + Manuel Perez Ayala + Juan C. Blanco +Swedish Andreas Dahlén +Turkish Middle East Technical University + İstanbul Technical University +Ukrainian Andriy Kopystyansky +====================== =============================================== + + +Inactive Developers +=================== + +- Max Kalika diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/docs/INSTALL php-horde-gollem-3.0.9/gollem-3.0.9/docs/INSTALL --- php-horde-gollem-3.0.8/gollem-3.0.9/docs/INSTALL 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/docs/INSTALL 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,148 @@ +====================== + Installing Gollem H5 +====================== + +:Contact: gollem@lists.horde.org + +.. contents:: Contents +.. section-numbering:: + +This document contains instructions for installing the Gollem File Manager on +your system. + +For information on the capabilities and features of Gollem, see the file +README_ in the top-level directory of the Gollem distribution. + + +Prerequisites +============= + +To function properly, Gollem **requires** the following: + +1. A working Horde installation. + + Gollem runs within the `Horde Application Framework`_, a set of common tools + for web applications written in PHP. You must install Horde before + installing Gollem. + + .. Important:: Gollem H5 requires version 5.0.2+ of the Horde Framework - + earlier versions of Horde will **not** work. + + .. Important:: Be sure to have completed all of the steps in the + `horde/docs/INSTALL`_ file for the Horde Framework before + installing Gollem. Many of Gollem's prerequisites are also + Horde prerequisites. Additionally, many of Gollem's optional + features are configured via the Horde install. + + .. _`Horde Application Framework`: http://www.horde.org/apps/horde + + +2. The following PHP capabilities: + + a. FTP support (--with-ftp) [OPTIONAL] + + If using the FTP VFS driver, the FTP PHP module is **required**. + + b. SQL support [OPTIONAL] + + If using an SQL VFS driver, then SQL PHP support is **required**. For + further information on how to set up SQL support in Horde, please + reference the Horde installation document (`horde/docs/INSTALL`_). + +3. If using a FTP backend, you **must** have at least one FTP server. + If using a SQL backend, you **must** have at least one SQL server. + + +Installing Gollem +================= + +The **RECOMMENDED** way to install Gollem is using the PEAR installer. +Alternatively, if you want to run the latest development code or get the +latest not yet released fixes, you can install Gollem from Git. + +Installing with PEAR +~~~~~~~~~~~~~~~~~~~~ + +First follow the instructions in `horde/docs/INSTALL`_ to prepare a PEAR +environment for Horde and install the Horde Framework. + +When installing Gollem through PEAR now, the installer will automatically +install any dependencies of Gollem too. If you want to install Gollem with all +optional dependencies, but without the binary PECL packages that need to be +compiled, specify both the ``-a`` and the ``-B`` flag:: + + pear install -a -B horde/gollem + +By default, only the required dependencies will be installed:: + + pear install horde/gollem + +If you want to install Gollem even with all binary dependencies, you need to +remove the ``-B`` flag. Please note that this might also try to install PHP +extensions through PECL that might need further configuration or activation in +your PHP configuration:: + + pear install -a horde/gollem + +Installing from Git +~~~~~~~~~~~~~~~~~~~ + +See http://www.horde.org/source/git.php + + +Configuring Gollem +================== + +1. Configuring Gollem + + You must login to Horde as a Horde Administrator to finish the + configuration of Gollem. Use the Horde ``Administration`` menu item to get + to the administration page, and then click on the ``Configuration`` icon to + get the configuration page. Select ``File Manager`` from the selection + list of applications. Fill in or change any configuration values as + needed. When done click on ``Generate File Manager Configuration`` to + generate Gollem configuration directory or file, it will not be able to + write the file. In this case, go back to ``Configuration`` and choose one + of the other methods to create the configuration file + ``gollem/config/conf.php``. + + Documentation on the format and purpose of the other configuration files in + the ``config/`` directory can be found in each file. You may create + ``*.local.php`` versions of these files if you wish to customize Gollem's + appearance and behavior. See the header of the configuration files for + details and examples. The defaults will be correct for most sites. + + +Obtaining Support +================= + +If you encounter problems with Gollem, help is available! + +The Horde Frequently Asked Questions List (FAQ), available on the Web at + + http://wiki.horde.org/FAQ + +The Horde Project runs a number of mailing lists, for individual applications +and for issues relating to the project as a whole. Information, archives, and +subscription information can be found at + + http://www.horde.org/community/mail + +Lastly, Horde developers, contributors and users may also be found on IRC, +on the channel #horde on the Freenode Network (irc.freenode.net). + +Please keep in mind that Gollem is free software written by volunteers. +For information on reasonable support expectations, please read + + http://www.horde.org/community/support + +Thanks for using Gollem! + +The Gollem Team + + +.. _README: README +.. _`horde/docs/INSTALL`: ../../horde/docs/INSTALL +.. _`horde/docs/TRANSLATIONS`: ../../horde/docs/TRANSLATIONS +.. _`horde/docs/SECURITY`: ../../horde/docs/SECURITY +.. _`horde/docs/PERFORMANCE`: ../../horde/docs/PERFORMANCE diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/docs/RELEASE_NOTES php-horde-gollem-3.0.9/gollem-3.0.9/docs/RELEASE_NOTES --- php-horde-gollem-3.0.8/gollem-3.0.9/docs/RELEASE_NOTES 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/docs/RELEASE_NOTES 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,28 @@ + Configuration and update anything that's highlighted as +outdated. + + +Upgrading Gollem From 2.x To 3.x +================================ + +This is a non-exhaustive, quick explanation of what has changed between a +Gollem 2.x installation to Gollem 3.x. + + +File sharing +------------ + +File sharing support has been added and is enabled by default for the "file" +and "sqlhome" backend configuration examples. + +File sharing allows more flexible sharing of folders between Horde users and +groups, independent from the backend's permission system. To correctly work it +actually **needs** a backend type that does not enforce per-user permissions. + +See the comments for the "shares" parameter in `backends.php` for details. + + +Upgrading Gollem From 1.x To 2.x +================================ + +This is a non-exhaustive, quick explanation of what has changed between a +Gollem 1.x installation to Gollem 2.x. + + +MIME Viewer Options (mime_drivers.php) +-------------------------------------- + +Gollem specific MIME configuration is no longer needed, so this configuration +file can be removed. + + +Server Options (backends.php) +----------------------------- + +The 'clipboard' option has been removed. The availability of the clipboard +is now entirely dependent on the user's edit permissions for the application. + + +.. _INSTALL: INSTALL diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/edit.php php-horde-gollem-3.0.9/gollem-3.0.9/edit.php --- php-horde-gollem-3.0.8/gollem-3.0.9/edit.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/edit.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,81 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem'); + +$vars = Horde_Variables::getDefaultVariables(); + +if ($vars->driver != Gollem::$backend['driver']) { + echo Horde::wrapInlineScript(array('window.close();')); + exit; +} + +/* Run through action handlers. */ +switch ($vars->actionID) { +case 'save_file': + try { + $injector + ->getInstance('Gollem_Vfs') + ->writeData($vars->dir, $vars->file, $vars->content); + $message = sprintf(_("%s successfully saved."), $vars->file); + } catch (Horde_Vfs_Exception $e) { + $message = sprintf(_("Access denied to %s"), $vars->file); + } + echo Horde::wrapInlineScript(array( + 'alert(' . Horde_Serialize::serialize($message, Horde_Serialize::JSON) . ')' + )); + break; + +case 'edit_file': + try { + $data = $injector + ->getInstance('Gollem_Vfs') + ->read($vars->dir, $vars->file); + } catch (Horde_Vfs_Exception $e) { + echo Horde::wrapInlineScript(array( + 'alert(' . Horde_Serialize::serialize(sprintf(_("Access denied to %s"), $vars->file), Horde_Serialize::JSON) . ')' + )); + break; + } + + $mime_type = Horde_Mime_Magic::extToMIME($vars->type); + if (strpos($mime_type, 'text/') !== 0) { + break; + } + + if ($mime_type == 'text/html') { + $injector->getInstance('Horde_Editor')->initialize(array('id' => 'content')); + } + + $view = $injector->createInstance('Horde_View'); + $view->self_url = Horde::url('edit.php'); + $view->forminput = Horde_Util::formInput(); + $view->vars = $vars; + $view->data = $data; + + $page_output->addScriptFile('edit.js'); + $page_output->topbar = $page_output->sidebar = false; + + $page_output->header(array( + 'title' => $title + )); + $notification->notify(array('listeners' => 'status')); + echo $view->render('edit'); + $page_output->footer(); + exit; +} + +echo Horde::wrapInlineScript(array('window.close()')); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/index.php php-horde-gollem-3.0.9/gollem-3.0.9/index.php --- php-horde-gollem-3.0.8/gollem-3.0.9/index.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/index.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,17 @@ + + * @author Chuck Hagenbuch + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require __DIR__ . '/manager.php'; diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/js/clipboard.js php-horde-gollem-3.0.9/gollem-3.0.9/js/clipboard.js --- php-horde-gollem-3.0.8/gollem-3.0.9/js/clipboard.js 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/js/clipboard.js 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,53 @@ +/** + * Provides the javascript for the clipboard.php script. + * + * See the enclosed file COPYING for license information (GPL). If you + * did not receive this file, see http://www.horde.org/licenses/gpl. + */ + +var GollemClipboard = { + + // Variables set by clipboard.php: + // selectall, selectnone + + clickHandler: function(e) + { + if (e.isRightClick()) { + return; + } + + var id, tmp, + elt = e.element(); + + while (Object.isElement(elt)) { + id = elt.readAttribute('id'); + + switch (id) { + case 'gollem-selectall': + tmp = elt.getValue(); + elt.next('SPAN').update(tmp ? this.selectnone : this.selectall); + $('gollem-clipboard').getInputs('checkbox').without(elt).invoke('setValue', tmp); + return; + + case 'gollem-pastebutton': + $('actionID').setValue('paste_items'); + $('gollem-clipboard').submit(); + return; + + case 'gollem-clearbutton': + $('actionID').setValue('clear_items'); + $('gollem-clipboard').submit(); + return; + + case 'gollem-cancelbutton': + $('gollem-clipboard').submit(); + return; + } + + elt = elt.up(); + } + } + +}; + +document.observe('click', GollemClipboard.clickHandler.bindAsEventListener(GollemClipboard)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/js/edit.js php-horde-gollem-3.0.9/gollem-3.0.9/js/edit.js --- php-horde-gollem-3.0.8/gollem-3.0.9/js/edit.js 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/js/edit.js 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,21 @@ +/** + * Provides the javascript for the edit.php script. + * + * See the enclosed file COPYING for license information (GPL). If you + * did not receive this file, see http://www.horde.org/licenses/gpl. + */ + +var GollemEdit = { + + onDomLoad: function() + { + $('cancelbutton').observe('click', function() { + window.close(); + }); + + $('gollem-edit').focus(); + } + +}; + +document.observe('dom:loaded', GollemEdit.onDomLoad.bind(GollemEdit)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/js/login.js php-horde-gollem-3.0.9/gollem-3.0.9/js/login.js --- php-horde-gollem-3.0.8/gollem-3.0.9/js/login.js 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/js/login.js 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,29 @@ +/** + * Provides the javascript for the login.php script. + * + * Copyright 2012-2016 Horde LLC (http://www.horde.org/) + * + * See the enclosed file COPYING for license information (GPL). If you + * did not receive this file, see http://www.horde.org/licenses/gpl. + * + * @author Jan Schneider + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +var GollemLogin = { + + changeHandler: function(e) + { + switch (e.element().readAttribute('id')) { + case 'backend_key': + RedBox.loading(); + $('horde_login').submit(); + break; + } + } + +} + +document.observe('change', GollemLogin.changeHandler); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/js/manager.js php-horde-gollem-3.0.9/gollem-3.0.9/js/manager.js --- php-horde-gollem-3.0.8/gollem-3.0.9/js/manager.js 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/js/manager.js 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,344 @@ +/** + * Provides the javascript for the manager.php script. + * + * See the enclosed file COPYING for license information (LGPL). If you + * did not receive this file, see http://www.horde.org/licenses/lgpl21. + */ + +var Gollem = { + + getChecked: function() + { + return this.getElements().findAll(function(e) { + return e.checked; + }); + }, + + getElements: function() + { + return $('manager').getInputs(null, 'items[]'); + }, + + getSelected: function() + { + return this.getChecked().pluck('value').join("\n"); + }, + + toggleSelection: function() + { + var e = this.getElements(), + checked = (this.getChecked().size() != e.length); + e.each(function(f) { + f.checked = checked; + }); + }, + + getItemsArray: function() + { + var i = 0, + it = $('manager').getInputs(null, 'itemTypes[]'); + + return this.getElements().collect(function(m) { + return { c: m.checked, v: m.value, t: it[i++].value }; + }); + }, + + getSelectedFoldersList: function() + { + return this.getItemsArray().collect(function(i) { + return (i.c && i.t == '**dir') ? i.v : null; + }).compact().join("\n"); + }, + + _clearChecks: function() + { + this.getChecked().each(function(e) { + e.checked = false; + }); + }, + + renameItems: function() + { + var c = this.getChecked(); + if (c.size()) { + c[0].checked = false; + $('renamefrm_oldname').setValue(c[0].value); + HordeDialog.display({ + form_id: 'renamefrm', + input_val: c[0].value, + text: GollemText.rename + }); + } + }, + + deleteItems: function() + { + var cont = true, sf; + + if (window.confirm(GollemText.delete_confirm_1 + '\n' + this.getSelected() + '\n' + GollemText.delete_confirm_2)) { + if (GollemVar.warn_recursive) { + sf = this.getSelectedFoldersList(); + if (!sf.empty() && + !window.confirm(GollemText.delete_recurs_1 + '\n' + sf + '\n' + GollemText.delete_recurs_2)) { + cont = false; + } + } + } else { + cont = false; + } + + if (cont) { + $('actionID').setValue('delete_items'); + $('manager').submit(); + } + }, + + createFolderOK: function() + { + if ($F('dialog_input')) { + $('new_folder').setValue($F('dialog_input')); + $('actionID').setValue('create_folder'); + $('manager').submit(); + } + }, + + chmodOK: function() + { + var all = group = owner = 0; + + $('chmodfrm').getElements().each(function(e) { + if (e.name == 'owner[]' && e.checked) { + owner |= e.value; + } else if (e.name == 'group[]' && e.checked) { + group |= e.value; + } else if (e.name == 'all[]' && e.checked) { + all |= e.value; + } + }); + + $('chmod').setValue('0' + owner + '' + group + '' + all); + $('actionID').setValue('chmod_modify'); + $('manager').submit(); + }, + + renameOK: function() + { + var c = this.getChecked(), + newname = $F('dialog_input'), + newNames = $F('new_names'), + oldname = $F('renamefrm_oldname'), + oldNames = $F('old_names'); + + if (newname && newname != oldname) { + newNames += '|' + newname; + oldNames += '|' + oldname; + } + + if (newNames.startsWith('|')) { + newNames = newNames.substring(1); + } + if (oldNames.startsWith('|')) { + oldNames = oldNames.substring(1); + } + + $('new_names').setValue(newNames); + $('old_names').setValue(oldNames); + + if (c.size()) { + this.renameItems.defer(); + } else { + $('actionID').setValue('rename_items'); + $('manager').submit(); + } + }, + + changeDirectoryOK: function() + { + if ($F('dialog_input')) { + $('dir').setValue($F('dialog_input')); + $('manager').submit(); + } + }, + + uploadFields: function() + { + return $('manager').getInputs('file').collect(function(m) { + return (m.name.substr(0, 12) == 'file_upload_') ? m : null; + }).compact(); + }, + + uploadFile: function() + { + if (this.uploadsExist()) { + $('actionID').setValue('upload_file'); + $('manager').submit(); + } + }, + + uploadsExist: function() + { + if (GollemVar.empty_input || + this.uploadFields().find(function(f) { return $F(f); })) { + return true; + } + alert(GollemText.specify_upload); + $('file_upload_1').focus(); + return false; + }, + + uploadChanged: function() + { + if (GollemVar.empty_input) { + return; + } + + var file, lastRow, + fields = this.uploadFields(), + usedFields = fields.findAll(function(f) { return $F(f).length; }).length; + + if (usedFields == fields.length) { + lastRow = $('upload_row_' + usedFields); + if (lastRow) { + file = new Element('INPUT', { type: 'file', name: 'file_upload_' + (usedFields + 1), size: 25 }); + lastRow.insert({ after: + new Element('DIV', { id: 'upload_row_' + (usedFields + 1) }).insert( + new Element('STRONG').insert(GollemText.file + ' ' + (usedFields + 1) + ':') + ).insert(' ').insert(file) + }); + file.observe('change', this.uploadChanged.bind(this)); + } + } + }, + + clickHandler: function(e) + { + if (e.isRightClick()) { + return; + } + + var id, tmp, + elt = e.element(); + + while (Object.isElement(elt)) { + id = elt.readAttribute('id'); + + switch (id) { + case 'gollem-changefolder': + this._clearChecks(); + HordeDialog.display({ + form_id: 'cdfrm', + text: GollemText.change_directory + }); + e.stop(); + return; + + case 'checkall': + this.toggleSelection(); + break; + + case 'gollem-createfolder': + this._clearChecks(); + HordeDialog.display({ + form_id: 'createfrm', + text: GollemText.create_folder + }); + e.stop(); + return; + + case 'uploadfile': + this.uploadFile(); + break; + + case 'gollem-rename': + if (!this.getChecked().size()) { + alert(GollemText.select_item); + break; + } + this.renameItems(); + break; + + case 'gollem-delete': + if (!this.getChecked().size()) { + alert(GollemText.select_item); + break; + } + this.deleteItems(); + break; + + case 'gollem-chmod': + if (!this.getChecked().size()) { + alert(GollemText.select_item); + break; + } + HordeDialog.display({ + form: $('gollem-attributes').clone(true).show(), + form_id: 'chmodfrm', + form_opts: { action: GollemVar.actionUrl }, + header: GollemText.permissions + }); + break; + + case 'gollem-cut': + if (!this.getChecked().size()) { + alert(GollemText.select_item); + break; + } + $('actionID').setValue('cut_items'); + $('manager').submit(); + break; + + case 'gollem-copy': + if (!this.getChecked().size()) { + alert(GollemText.select_item); + break; + } + $('actionID').setValue('copy_items'); + $('manager').submit(); + break; + } + + elt = elt.up(); + } + }, + + okHandler: function(e) + { + switch (e.element().identify()) { + case 'cdfrm': + Gollem.changeDirectoryOK(); + break; + + case 'chmodfrm': + Gollem.chmodOK(); + break; + + case 'createfrm': + Gollem.createFolderOK(); + break; + + case 'renamefrm': + Gollem.renameOK(); + break; + } + }, + + closeHandler: function(e) + { + $('new_names', 'old_names').invoke('setValue', ''); + }, + + onDomLoad: function() + { + var tmp; + + if (tmp = $('file_upload_1')) { + tmp.observe('change', this.uploadChanged.bind(this)); + } + } + +}; + +document.observe('dom:loaded', Gollem.onDomLoad.bind(Gollem)); +document.observe('click', Gollem.clickHandler.bindAsEventListener(Gollem)); +document.observe('HordeDialog:onClick', Gollem.okHandler.bindAsEventListener(Gollem)); +document.observe('HordeDialog:close', Gollem.closeHandler.bindAsEventListener(Gollem)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/js/selectlist.js php-horde-gollem-3.0.9/gollem-3.0.9/js/selectlist.js --- php-horde-gollem-3.0.8/gollem-3.0.9/js/selectlist.js 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/js/selectlist.js 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,67 @@ +/** + * Provides the javascript for the selectlist.php script. + * + * See the enclosed file COPYING for license information (LGPL). If you + * did not receive this file, see http://www.horde.org/licenses/lgpl21. + */ + +var Gollem_Selectlist = { + + returnID: function() + { + var formid = $F('formid'), + field = parent.opener.document[formid].selectlist_selectid, + field2 = parent.opener.document[formid].actionID; + + if (parent.opener.closed || !field || !field2) { + alert(GollemText.opener_window); + window.close(); + return; + } + + field.value = $F('cacheid'); + field2.value = 'selectlist_process'; + + parent.opener.document[formid].submit(); + window.close(); + }, + + clickHandler: function(e) + { + if (e.isRightClick()) { + return; + } + + var id, tmp, + elt = e.element(); + + while (Object.isElement(elt)) { + id = elt.readAttribute('id'); + + switch (id) { + case 'addbutton': + $('actionID').setValue('select'); + $('selectlist').submit(); + return; + + case 'cancelbutton': + window.close(); + return; + + case 'donebutton': + this.returnID(); + return; + } + + elt = elt.up(); + } + }, + + onDomLoad: function() + { + $('selectlist').observe('click', this.clickHandler.bindAsEventListener(this)); + } + +}; + +document.observe('dom:loaded', Gollem_Selectlist.onDomLoad.bind(Gollem_Selectlist)); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Api.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Api.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Api.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Api.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,427 @@ + + * @author Michael Slusarz + * @author Ben Klang + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem_Api extends Horde_Registry_Api +{ + /** + * Browses through the VFS tree. + * + * Each VFS backend is listed as a directory at the top level. No modify + * operations are allowed outside any VFS area. + * + * @param string $path The level of the tree to browse. + * @param array $properties The item properties to return. Defaults to + * 'name', 'icon', and 'browseable'. + * + * @return array The contents of $path. + * @throws Gollem_Exception + */ + public function browse($path = '', + $properties = array('name', 'icon' ,'browseable')) + { + $path = Gollem::stripAPIPath($path); + $results = array(); + + if ($path == '') { + // We are at the root of gollem. Return a set of folders, one for + // each backend available. + foreach (Gollem_Auth::getBackend() as $backend => $curBackend) { + $results['gollem/' . $backend]['name'] = $curBackend['name']; + $results['gollem/' . $backend]['browseable'] = true; + } + } else { + $backend_key = $this->_getBackend($path); + + throw new Gollem_Exception('Permssion checks not implemented yet.'); + + // Trim off the backend_key (and '/') to get the VFS relative path + $fullpath = substr($path, strlen($backend_key) + 1); + + // Get the VFS-standard $name,$path pair + list($name, $path) = Gollem::getVFSPath($fullpath); + + // Check to see if the request is a file or folder + $gollem_vfs = $GLOBALS['injector']->getInstance('Gollem_Vfs'); + if ($gollem_vfs->isFolder($path, $name)) { + // This is a folder request. Return a directory listing. + $list = Gollem::listFolder($path . '/' . $name); + + // Iterate over the directory contents + if (is_array($list) && count($list)) { + $index = 'gollem/' . $backend_key . '/' . $fullpath; + foreach ($list as $key => $val) { + $entry = Gollem::pathEncode($index . '/' . $val['name']); + $results[$entry]['name'] = $val['name']; + $results[$entry]['modified'] = $val['date']; + if ($val['type'] == '**dir') { + $results[$entry]['browseable'] = true; + } else { + $results[$entry]['browseable'] = false; + $results[$entry]['contentlength'] = $val['size']; + } + } + } + } else { + // A file has been requested. Return the contents of the file. + // Get the file meta-data + $list = Gollem::listFolder($path); + $i = false; + foreach ($list as $key => $file) { + if ($file['name'] == $name) { + $i = $key; + break; + } + } + if ($i === false) { + // File not found + return $i; + } + + // Send the file + $results['name'] = $name; + $results['data'] = $gollem_vfs->read($path, $name); + $results['contentlength'] = $list[$i]['size']; + $results['mtime'] = $list[$i]['date']; + } + } + + return $results; + } + + /** + * Accepts a file for storage into the VFS. + * + * @param string $path Path to store file. + * @param string $content Contents of file. + * @param string $content_type MIME type of file. + * + * @throws Gollem_Exception + */ + public function put($path, $content, $content_type) + { + // Clean off the irrelevant portions of the path + $path = Gollem::stripAPIPath($path); + + if ($path == '') { + // We are at the root of gollem. Any writes at this level are + // disallowed. + throw new Gollem_Exception(_("Files must be written inside a VFS backend.")); + } + + $backend_key = $this->_getBackend($path); + + throw new Gollem_Exception('Permssion checks not implemented yet.'); + + // Trim off the backend_key (and '/') to get the VFS relative path + $fullpath = substr($path, strlen($backend_key) + 1); + + // Get the VFS-standard $name,$path pair + list($name, $path) = Gollem::getVFSPath($fullpath); + + return $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->writeData($path, $name, $content); + } + + /** + * Creates a directory ("collection" in WebDAV-speak) within the VFS + * + * @param string $path Path of directory to create + * + * @throws Gollem_Exception + */ + public function mkcol($path) + { + // Clean off the irrelevant portions of the path + $path = Gollem::stripAPIPath($path); + + if ($path == '') { + // We are at the root of gollem. Any writes at this level are + // disallowed. + throw new Gollem_Exception(_('Folders must be created inside a VFS backend.')); + } + + $backend_key = $this->_getBackend($path); + + throw new Gollem_Exception('Permssion checks not implemented yet.'); + + // Trim off the backend_key (and '/') to get the VFS relative path + $fullpath = substr($path, strlen($backend_key) + 1); + + // Get the VFS-standard $name,$path pair + list($name, $path) = Gollem::getVFSPath($fullpath); + + return $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->createFolder($path, $name); + } + + /** + * Renames a file or directory + * + * @param string $path Path to source object to be renamed + * @param string $dest Path to new name + */ + public function move($path, $dest) + { + // Clean off the irrelevant portions of the path + $path = Gollem::stripAPIPath($path); + $dest = Gollem::stripAPIPath($dest); + + if ($path == '') { + // We are at the root of gollem. Any writes at this level are + // disallowed. + throw new Gollem_Exception(_('Folders must be created inside a VFS backend.')); + } + + // We must be inside one of the VFS areas. Determine which one. + // Locate the backend_key in the path + if (!strchr($path, '/') || + !strchr($dest, '/')) { + // Disallow attempts to rename a share-level directory. + throw new Gollem_Exception(_('Renaming of backends is not allowed.')); + } + + $backend_key = $this->_getBackend($path); + + throw new Gollem_Exception('Permssion checks not implemented yet.'); + $dest_backend_key = substr($path, 0, strpos($path, '/')); + if ($dest_backend_key != $backend_key) { + throw new Gollem_Exception(_('Renaming across backends is not supported.')); + } + + // Trim off the backend_key (and '/') to get the VFS relative path + $srcfullpath = substr($path, strlen($backend_key) + 1); + $dstfullpath = substr($dest, strlen($backend_key) + 1); + + // Get the VFS-standard $name,$path pair + list($srcname, $srcpath) = Gollem::getVFSPath($srcfullpath); + list($dstname, $dstpath) = Gollem::getVFSPath($dstfullpath); + + $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->rename($srcpath, $srcname, $dstpath, $dstname); + } + + /** + * Removes a file or folder from the VFS + * + * @param string $path Path of file or folder to delete + */ + public function path_delete($path) + { + // Clean off the irrelevant portions of the path + $path = Gollem::stripAPIPath($path); + + if ($path == '') { + // We are at the root of gollem. Any writes at this level are + // disallowed. + throw new Gollem_Exception(_("The application folder can not be deleted.")); + } + + $backend_key = $this->_getBackend($path); + + throw new Gollem_Exception('Permssion checks not implemented yet.'); + + // Trim off the backend_key (and '/') to get the VFS relative path + $fullpath = substr($path, strlen($backend_key) + 1); + + // Get the VFS-standard $name,$path pair + list($name, $path) = Gollem::getVFSPath($fullpath); + + // Apparently Gollem::verifyDir() (called by deleteF* next) needs to + // see a path with a leading '/' + $path = $backends[$backend_key]['root'] . $path; + + $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->isFolder($path, $name) + ? Gollem::deleteFolder($path, $name) + : Gollem::deleteFile($path, $name); + } + + /** + * Returns a link to the gollem file preview interface + * + * @param string $dir File absolute path + * @param string $file File basename + * @param string $backend_key Backend key. Defaults to + * Gollem_Auth::getPreferredBackend(). + * + * @return Horde_Url The URL object. + */ + public function getViewLink($dir, $file, $backend_key = '') + { + if (empty($backend_key)) { + $backend_key = Gollem_Auth::getPreferredBackend(); + } + $backend = Gollem_Auth::getBackend($backend_key); + + return Horde::url('view.php')->add(array( + 'dir' => $dir, + 'driver' => $backend['driver'], + 'file' => $file, + 'type' => substr($file, strrpos($file, '.') + 1) + )); + } + + /** + * Creates a link to the gollem file selection window. + * + * The file section window will return a cache ID value which should be + * used (along with the selectListResults and returnFromSelectList + * functions below) to obtain the data from a list of selected files. + * + * There MUST be a form field named 'selectlist_selectid' in the calling + * form. This field will be populated with the selection ID when the user + * completes file selection. + * + * There MUST be a form parameter named 'actionID' in the calling form. + * This form will be populated with the value 'selectlist_process' when + * the user completes file selection. The calling form will be submitted + * after the window closes (i.e. the calling form must process the + * 'selectlist_process' actionID). + * + * @param string $link_text The text to use in the link. + * @param string $link_style The style to use for the link. + * @param string $formid The formid of the calling script. + * @param boolean $icon Create the link with an icon instead of + * text? + * @param string $selectid Selection ID. + * + * @return string The URL string. + */ + public function selectlistLink($link_text, $link_style, $formid, + $icon = false, $selectid = '') + { + $link = Horde::link('#', $link_text, $link_style, '_blank', Horde::popupJs(Horde::url('selectlist.php'), array('params' => array_filter(array('formid' => $formid, 'cacheid' => $selectid)), 'height' => 500, 'width' => 300, 'urlencode' => true)) . 'return false;'); + if ($icon) { + $link_text = Horde::img('gollem.png', $link_text); + } + return ''; + } + + /** + * Returns the list of files selected by the user for a given selection ID. + * + * @param string $selectid The selection ID. + * + * @param array An array with each file entry stored in its own array, + * with the key as the directory name and the value as the + * filename. + */ + public function selectlistResults($selectid) + { + $selectlist = $GLOBALS['session']->get('gollem', 'selectlist/' . $selectid); + + if (!isset($selectlist['files'])) { + return null; + } + + $list = array(); + foreach ($selectlist['files'] as $val) { + list($dir, $filename) = explode('|', $val); + $list[] = array($dir => $filename); + } + + return $list; + } + + /** + * Returns the data for a given selection ID and index. + * + * @param string $selectid The selection ID. + * @param integer $index The index of the file data to return. + * + * @return string The file data. + */ + public function returnFromSelectlist($selectid, $index) + { + $selectlist = $GLOBALS['session']->get('gollem', 'selectlist/' . $selectid); + + if (!isset($selectlist['files'][$index])) { + return null; + } + + list($dir, $filename) = explode('|', $selectlist['files'][$index]); + return $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->read($dir, $filename); + } + + /** + * Sets the files selected for a given selection ID. + * + * @param string $selectid The selection ID to use. + * @param array $files An array with each file entry stored in its + * own array, with the key as the directory name + * and the value as the filename. + * + * @return string The selection ID. + */ + public function setSelectlist($selectid = '', $files = array()) + { + if (empty($selectid)) { + $selectid = uniqid(mt_rand()); + } + + if (count($files) > 0) { + $list = array(); + foreach ($files as $file) { + $list[] = key($file) . '|' . current($file); + } + $selectlist = $GLOBALS['session']->get('gollem', 'selectlist/' . $selectid, Horde_Session::TYPE_ARRAY); + $selectlist['files'] = $list; + $GLOBALS['session']->set('gollem', 'selectlist/' . $selectid, $selectlist); + } + + return $selectid; + } + + /** + * @throws Gollem_Exception + */ + protected function _getBackend($path) + { + // A file or directory has been requested. + // Locate the backend_key in the path. + $backend_key = strchr($path, '/') + ? substr($path, 0, strpos($path, '/')) + : $path; + + throw new Gollem_Exception('Not implemented'); + + // Validate and perform permissions checks on the requested backend + if (!$GLOBALS['session']->exists('gollem', 'backends/' . $backend_key)) { + throw new Gollem_Exception(sprintf(_("Invalid backend requested: %s"), $backend_key)); + } + + if (!Gollem_Session::createSession($backend_key)) { + throw new Gollem_Exception(_("Unable to create Gollem session")); + } + + if (!Gollem::checkPermissions('backend', Horde_Perms::READ)) { + throw new Gollem_Exception(_("Permission denied to this backend.")); + } + + return $backend_key; + } + +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Application.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Application.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Application.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Application.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,331 @@ + + * @author Michael Slusarz + * @author Ben Klang + * @author Amith Varghese + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +/* Determine the base directories. */ +if (!defined('GOLLEM_BASE')) { + define('GOLLEM_BASE', realpath(__DIR__ . '/..')); +} + +if (!defined('HORDE_BASE')) { + /* If Horde does not live directly under the app directory, the HORDE_BASE + * constant should be defined in config/horde.local.php. */ + if (file_exists(GOLLEM_BASE . '/config/horde.local.php')) { + include GOLLEM_BASE . '/config/horde.local.php'; + } else { + define('HORDE_BASE', realpath(GOLLEM_BASE . '/..')); + } +} + +/* Load the Horde Framework core (needed to autoload + * Horde_Registry_Application::). */ +require_once HORDE_BASE . '/lib/core.php'; + +class Gollem_Application extends Horde_Registry_Application +{ + /** + */ + public $auth = array( + 'authenticate', + 'transparent', + 'validate' + ); + + /** + */ + public $version = 'H5 (3.0.9)'; + + /** + * Server key used in logged out session. + * + * @var string + */ + protected $_oldbackend = null; + + protected function _bootstrap() + { + $GLOBALS['injector']->bindFactory('Gollem_Vfs', 'Gollem_Factory_VfsDefault', 'create'); + $GLOBALS['injector']->bindFactory('Gollem_Shares', 'Gollem_Factory_Shares', 'create'); + } + + /** + */ + protected function _init() + { + if ($backend_key = $GLOBALS['session']->get('gollem', 'backend_key')) { + Gollem_Auth::changeBackend($backend_key); + } + } + + /** + */ + public function perms() + { + $perms = array( + 'backends' => array( + 'title' => _("Backends") + ) + ); + + // Run through every backend. + foreach (Gollem_Auth::getBackend() as $key => $val) { + $perms['backends:' . $key] = array( + 'title' => $val['name'] + ); + } + + return $perms; + } + + /* Horde_Core_Auth_Application methods. */ + + /** + * Return login parameters used on the login page. + * + * @return array See Horde_Core_Auth_Application#authLoginParams(). + */ + public function authLoginParams() + { + $params = array(); + + if ($GLOBALS['conf']['backend']['backend_list'] == 'shown') { + $backend_list = array(); + $selected = is_null($this->_oldbackend) + ? Horde_Util::getFormData('backend_key', Gollem_Auth::getPreferredBackend()) + : $this->_oldbackend; + + foreach (Gollem_Auth::getBackend() as $key => $val) { + $backend_list[$key] = array( + 'name' => $val['name'], + 'selected' => ($selected == $key) + ); + if ($selected == $key) { + if (!empty($val['loginparams'])) { + foreach ($val['loginparams'] as $param => $label) { + $params[$param] = array( + 'label' => $label, + 'type' => 'text', + 'value' => isset($val['params'][$param]) ? $val['params'][$param] : '' + ); + } + } + if (Gollem_Auth::canAutoLogin($key)) { + $params['horde_user'] = null; + $params['horde_pass'] = null; + } + } + } + $params['backend_key'] = array( + 'label' => _("Backend"), + 'type' => 'select', + 'value' => $backend_list + ); + } + + return array( + 'js_code' => array(), + 'js_files' => array(array('login.js', 'gollem'), + array('scriptaculous/effects.js', 'horde'), + array('redbox.js', 'horde')), + 'params' => $params + ); + } + + /** + * Tries to authenticate with the server and create a session. + * + * @param string $userId The username of the user. + * @param array $credentials Credentials of the user. Allowed keys: + * 'backend', 'password'. + * + * @throws Horde_Auth_Exception + */ + public function authAuthenticate($userId, $credentials) + { + $this->init(); + + if (empty($credentials['backend_key'])) { + $credentials['backend_key'] = Gollem_Auth::getPreferredBackend(); + } + $credentials['userId'] = $userId; + $this->_addSessVars(Gollem_Auth::authenticate($credentials)); + } + + /** + * Tries to transparently authenticate with the server and create a + * session. + * + * @param Horde_Core_Auth_Application $auth_ob The authentication object. + * + * @return boolean Whether transparent login is supported. + * @throws Horde_Auth_Exception + */ + public function authTransparent($auth_ob) + { + $this->init(); + + if ($result = Gollem_Auth::transparent($auth_ob)) { + $this->_addSessVars($result); + return true; + } + + return false; + } + + /** + * Validates an existing authentication. + * + * @return boolean Whether the authentication is still valid. + */ + public function authValidate() + { + if (($backend_key = Horde_Util::getFormData('backend_key')) && + $backend_key != $GLOBALS['session']->get('gollem', 'backend_key')) { + Gollem_Auth::changeBackend($backend_key); + } + + return !empty(Gollem::$backend['auth']); + } + + /** + */ + public function menu($menu) + { + $backend_key = Gollem_Auth::getPreferredBackend(); + + $menu->add( + Horde::url('manager.php')->add('dir', Gollem::$backend['home']), + _("Start Folder"), + 'gollem-home', + null, + null, + null, + '__noselection'); + + if (Gollem::checkPermissions('backend', Horde_Perms::EDIT) && + Gollem::checkPermissions('directory', Horde_Perms::EDIT, Gollem::$backend['dir']) && + $GLOBALS['session']->get('gollem', 'clipboard', Horde_Session::TYPE_ARRAY)) { + $menu->add( + Horde::url('clipboard.php')->add('dir', Gollem::$backend['dir']), + _("Clipboard"), + 'gollem-clipboard'); + } + + if (!empty(Gollem::$backend['quota'])) { + if ($GLOBALS['browser']->hasFeature('javascript')) { + $quota_url = 'javascript:' . Horde::popupJs( + Horde::url('quota.php'), + array('params' => array('backend' => $backend_key), + 'height' => 300, + 'width' => 300, + 'urlencode' => true) + ); + } else { + $quota_url = Horde::url('quota.php') + ->add('backend', $backend_key); + } + $menu->add($quota_url, _("Check Quota"), 'gollem-quota'); + } + + if ($GLOBALS['registry']->isAdmin() && + !($GLOBALS['injector']->getInstance('Horde_Perms') instanceof Horde_Perms_Null)) { + $menu->add( + Horde::url('permissions.php')->add('backend', $backend_key), + _("_Permissions"), 'horde-perms'); + } + } + + /** + * Add additional items to the sidebar. + * + * @param Horde_View_Sidebar $sidebar The sidebar object. + */ + public function sidebar($sidebar) + { + $backend = Gollem_Auth::getPreferredBackend(); + $url = $GLOBALS['registry']->getServiceLink('login', 'horde') + ->add(array('url' => (string)Horde::url('manager.php', true), + 'app' => 'gollem')); + + if ($GLOBALS['conf']['backend']['backend_list'] == 'shown') { + foreach (Gollem_Auth::getBackend() as $key => $val) { + $row = array( + 'selected' => $backend == $key, + 'url' => $url->add('backend_key', $key), + 'label' => $val['name'], + 'type' => 'radiobox', + ); + $sidebar->addRow($row, 'backends'); + } + } + } + + /* Topbar method. */ + + /** + */ + public function topbarCreate(Horde_Tree_Renderer_Base $tree, $parent = null, + array $params = array()) + { + $icon = Horde_Themes::img('gollem.png'); + $url = Horde::url('manager.php'); + + foreach (Gollem_Auth::getBackend() as $key => $val) { + $tree->addNode(array( + 'id' => $parent . $key, + 'parent' => $parent, + 'label' => $val['name'], + 'expanded' => false, + 'params' => array( + 'icon' => $icon, + 'url' => $url->add(array('backend_key' => $key)) + ) + )); + } + } + + /* Download data. */ + + /** + * URL parameters needed: + * - dir + * - driver + * + * @throws Horde_Vfs_Exception + */ + public function download(Horde_Variables $vars) + { + $vfs = $GLOBALS['injector'] + ->getInstance('Gollem_Factory_Vfs') + ->create($vars->backend); + $res = array( + 'data' => is_callable(array($vfs, 'readStream')) + ? $vfs->readStream($vars->dir, $vars->filename) + : $vfs->read($vars->dir, $vars->filename) + ); + + try { + $res['size'] = $vfs->size($vars->dir, $vars->filename); + } catch (Horde_Vfs_Exception $e) {} + + return $res; + } + +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Auth.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Auth.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Auth.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Auth.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,370 @@ + + * @author Jan Schneider + * @package Gollem + */ +class Gollem_Auth +{ + /** + * Authenticate to the backend. + * + * @param array $credentials An array of login credentials. If empty, + * attempts to login to the cached session. + *
+     * 'password' - (string) The user password.
+     * 'backend' - (string) The backend key to use (from backends.php).
+     * 'userId' - (string) The username.
+     * 
+ * + * @return mixed If authentication was successful, and no session + * exists, an array of data to add to the session. + * Otherwise returns false. + * @throws Horde_Auth_Exception + */ + static public function authenticate($credentials = array()) + { + $result = false; + + // Do 'horde' authentication. + $gollem_app = $GLOBALS['registry']->getApiInstance('gollem', 'application'); + if (!empty($gollem_app->initParams['authentication']) && + ($gollem_app->initParams['authentication'] == 'horde')) { + if ($registry->getAuth()) { + return $result; + } + throw new Horde_Auth_Exception('', Horde_Auth::REASON_FAILED); + } + + // Load backend. + if (!isset($credentials['backend_key'])) { + $credentials['backend_key'] = self::getPreferredBackend(); + } + $backend = self::getBackend($credentials['backend_key']); + + // Check for hordeauth. + if ((!isset($credentials['userId']) || + !isset($credentials['password'])) && + !$GLOBALS['session']->exists('gollem', 'backend_key') && + self::canAutoLogin($credentials['backend_key'])) { + if (!empty($backend['hordeauth'])) { + $credentials['userId'] = self::getAutologinID($credentials['backend_key']); + $credentials['password'] = $GLOBALS['registry']->getAuthCredential('password'); + + } + } + + // Check for hardcoded backend credentials. + if (!isset($credentials['userId']) && + !empty($backend['params']['username'])) { + $credentials['userId'] = $backend['params']['username']; + } + if (!isset($credentials['password']) && + !empty($backend['params']['password'])) { + $credentials['password'] = $backend['params']['password']; + } + + if (!isset($credentials['userId']) || + !isset($credentials['password'])) { + throw new Horde_Auth_Exception('', Horde_Auth::REASON_BADLOGIN); + } + + try { + $vfs = $GLOBALS['injector'] + ->getInstance('Gollem_Factory_Vfs') + ->create($credentials['backend_key']); + $params = array('username' => $credentials['userId'], + 'password' => $credentials['password']); + foreach (array_keys($backend['loginparams']) as $param) { + if (isset($credentials[$param])) { + $backend['params'][$param] = $params[$param] = $credentials[$param]; + } + } + $vfs->setParams($params); + $vfs->checkCredentials(); + } catch (Horde_Exception $e) { + throw new Horde_Auth_Exception($e->getMessage(), Horde_Auth::REASON_MESSAGE); + } + + // Set current backend. + Gollem::$backend = &$backend; + + // Mark backend as authenticated. + $backend['auth'] = true; + + // Save username in backend configuration. + if (!isset($backend['params']['username'])) { + $backend['params']['username'] = $credentials['userId']; + } + if (!isset($backend['params']['password'])) { + $backend['params']['password'] = $credentials['password']; + } + + // Make sure we have a 'root' parameter. + if (empty($backend['root'])) { + $backend['root'] = '/'; + } + $backend['root'] = Horde_Util::realPath($backend['root']); + + // Make sure we have a 'home' parameter. + if (empty($backend['home'])) { + $backend['home'] = empty($backend['params']['home']) + ? $vfs->getCurrentDirectory() + : $backend['params']['home']; + if (empty($backend['home'])) { + $backend['home'] = $backend['root']; + } + } + + // Make sure the home parameter lives under root if it is a relative + // directory. + if (strpos($backend['home'], '/') !== 0) { + $backend['home'] = $backend['root'] . '/' . $backend['home']; + } + $backend['home'] = Horde_Util::realPath($backend['home']); + $backend['dir'] = $backend['home']; + + // Verify that home is below root. + if (!Gollem::verifyDir($backend['home'])) { + throw new Horde_Auth_Exception('Backend Configuration Error: Home directory not below root.', Horde_Auth::REASON_MESSAGE); + } + + // Create the home directory if it doesn't already exist. + if ($backend['home'] != '/' && !empty($backend['createhome'])) { + $pos = strrpos($backend['home'], '/'); + $cr_dir = substr($backend['home'], 0, $pos); + $cr_file = substr($backend['home'], $pos + 1); + if (!$vfs->exists($cr_dir, $cr_file)) { + try { + $res = Gollem::createFolder($cr_dir, $cr_file, $vfs); + } catch (Gollem_Exception $e) { + throw new Horde_Auth_Exception('Backend Configuration Error: Could not create home directory ' . $backend['home'] . ': ' . $e->getMessage(), Horde_Auth::REASON_MESSAGE); + } + } + } + + // Write the backend to the session. + $backends = self::_getBackends(); + $backends[$credentials['backend_key']] = $backend; + self::_setBackends($backends); + + return array('backend_key' => $credentials['backend_key']); + } + + /** + * Perform transparent authentication. + * + * @param Horde_Auth_Application $auth_ob The authentication object. + * + * @return mixed If authentication was successful, and no session + * exists, an array of data to add to the session. + * Otherwise returns false. + */ + static public function transparent($auth_ob) + { + $credentials = $auth_ob->getCredential('credentials'); + + if (empty($credentials['transparent'])) { + /* Attempt hordeauth authentication. */ + $credentials = self::canAutoLogin(); + if ($credentials === false) { + return false; + } + } else { + /* It is possible that preauthenticate() set the credentials. + * If so, use that information instead of hordeauth. */ + $credentials['userId'] = $auth_ob->getCredential('userId'); + } + + try { + return self::authenticate($credentials); + } catch (Horde_Auth_Exception $e) { + return false; + } + } + + /** + * Loads the Gollem backend configuration from backends.php. + * + * @param string $backend Returns this labeled entry only. + * + * @return mixed If $backend is set return this entry; else, return the + * entire backends array. Returns false on error. + */ + static public function getBackend($backend = null) + { + if (!($backends = self::_getBackends())) { + try { + $backends = Horde::loadConfiguration('backends.php', 'backends', 'gollem'); + if (is_null($backends)) { + return false; + } + } catch (Horde_Exception $e) { + Horde::log($e, 'ERR'); + return false; + } + + foreach (array_keys($backends) as $key) { + if (!empty($backends[$key]['disabled']) || + !Gollem::checkPermissions('backend', Horde_Perms::SHOW, $key)) { + unset($backends[$key]); + } + } + self::_setBackends($backends); + } + + if (is_null($backend)) { + return $backends; + } + + /* Check for the existence of the backend in the config file. */ + if (empty($backends[$backend]) || !is_array($backends[$backend])) { + $entry = sprintf('Invalid backend key "%s" from client [%s]', + $backend, $_SERVER['REMOTE_ADDR']); + Horde::log($entry, 'ERR'); + return false; + } + + return $backends[$backend]; + } + + /** + * Get the current preferred backend key. + * + * @return string The preferred backend key. + */ + static public function getPreferredBackend() + { + if ($backend_key = $GLOBALS['session']->get('gollem', 'backend_key')) { + return $backend_key; + } + + /* Determine the preferred backend. */ + foreach (self::getBackend() as $key => $backend) { + if (empty($backend_key) && (substr($key, 0, 1) != '_')) { + $backend_key = $key; + } + if (empty($backend['preferred'])) { + continue; + } + $preferred = is_array($backend['preferred']) + ? $backend['preferred'] + : array($backend['preferred']); + if (in_array($_SERVER['SERVER_NAME'], $preferred) || + in_array($_SERVER['HTTP_HOST'], $preferred)) { + $backend_key = $key; + } + } + + return $backend_key; + } + + /** + * Get the authentication ID to use for autologins based on the value of + * the 'hordeauth' parameter. + * + * @param string $backend The backend to login to. + * + * @return string The ID string to use for logins. + */ + static public function getAutologinID($backend) + { + $config = self::getBackend($backend); + return (!empty($config['hordeauth']) && + strcasecmp($config['hordeauth'], 'full') === 0) + ? $GLOBALS['registry']->getAuth() + : $GLOBALS['registry']->getAuth('bare'); + } + + /** + * Can we log in without a login screen for the requested backend key? + * + * @param string $key The backend to login to. + * + * @return array The credentials needed to login ('userId', 'password', + * 'backend') or false if autologin not available. + */ + static public function canAutoLogin($key = null) + { + if (is_null($key)) { + $key = self::getPreferredBackend(); + } + + if ($key && + $GLOBALS['registry']->getAuth() && + ($config = self::getBackend($key)) && + empty($config['loginparams']) && + !empty($config['hordeauth'])) { + return array( + 'userId' => self::getAutologinID($key), + 'password' => $GLOBALS['registry']->getAuthCredential('password'), + 'backend_key' => $key + ); + } + + return false; + } + + /** + * Change the currently active backend. + * + * @param string $key The ID of the backend to set as active. + */ + static public function changeBackend($key) + { + $GLOBALS['session']->set('gollem', 'backend_key', $key); + Gollem::$backend = self::getBackend($key); + } + + /** + * Return stored backend list. + * + * @return array Backend configuration list. + */ + static protected function _getBackends() + { + global $session; + + if ($backends = $session->get('gollem', 'backends', $session::TYPE_ARRAY)) { + $passwords = $session->get('gollem', 'backends_password', $session::TYPE_ARRAY); + if ($passwords) { + foreach ($passwords as $key => $val) { + $backends[$key]['params']['password'] = $val; + } + } + } + + return $backends; + } + + /** + * Store backend list. + * + * @param array $backends Backend configuration list. + */ + static protected function _setBackends($backends) + { + global $session; + + $passwords = array(); + foreach ($backends as $key => $val) { + if (isset($val['params']['password'])) { + $passwords[$key] = $val['params']['password']; + unset($backends[$key]['params']['password']); + } + } + + $session->set('gollem', 'backends', $backends); + if (!empty($passwords)) { + $session->set('gollem', 'backends_password', $passwords, $session::ENCRYPT); + } + } + +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Exception.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Exception.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Exception.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Exception.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,17 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem_Exception extends Horde_Exception_Wrapped +{ +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Factory/Shares.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Factory/Shares.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Factory/Shares.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Factory/Shares.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,22 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem_Factory_Shares extends Horde_Core_Factory_Injector +{ + /** + * Return the driver instance. + * + * @return Horde_Core_Share_Driver + * @throws Horde_Exception + */ + public function create(Horde_Injector $injector) + { + return $injector->getInstance('Horde_Core_Factory_Share')->create(); + } +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Factory/VfsDefault.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Factory/VfsDefault.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Factory/VfsDefault.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Factory/VfsDefault.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,38 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +/** + * A Horde_Injector based Horde_Vfs factory. + * + * Copyright 2011-2016 Horde LLC (http://www.horde.org/) + * + * See the enclosed file COPYING for license information (GPL). If you + * did not receive this file, see http://www.horde.org/licenses/gpl. + * + * @author Jan Schneider + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem_Factory_VfsDefault extends Horde_Core_Factory_Injector +{ + /** + * Returns the VFS object for the currently active backend. + * + * @return Horde_Vfs The VFS object. + * @throws Horde_Exception + */ + public function create(Horde_Injector $injector) + { + return $injector + ->getInstance('Gollem_Factory_Vfs') + ->create($GLOBALS['session']->get('gollem', 'backend_key')); + } +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Factory/Vfs.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Factory/Vfs.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Factory/Vfs.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Factory/Vfs.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,90 @@ + + * @author Jan Schneider + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +/** + * A Horde_Injector based Horde_Vfs factory. + * + * Copyright 2011-2016 Horde LLC (http://www.horde.org/) + * + * See the enclosed file COPYING for license information (GPL). If you + * did not receive this file, see http://www.horde.org/licenses/gpl. + * + * @author Michael J. Rubinsky + * @author Jan Schneider + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem_Factory_Vfs extends Horde_Core_Factory_Base +{ + /** + * Instances. + * + * @var array + */ + private $_instances = array(); + + /** + * Returns the VFS instance. + * + * @param string $backend The backend to return. + * + * @return Horde_Vfs The VFS object. + */ + public function create($backend) + { + if (empty($this->_instances[$backend])) { + $be_config = Gollem_Auth::getBackend($backend); + $params = $be_config['params']; + + switch (Horde_String::lower($be_config['driver'])) { + case 'sql': + case 'sqlfile': + case 'musql': + $db_params = $params; + unset($db_params['table']); + $params['db'] = $this->_injector + ->getInstance('Horde_Core_Factory_Db') + ->create('gollem', $db_params); + $params['user'] = $GLOBALS['registry']->getAuth(); + break; + } + + $vfs = Horde_Vfs::factory($be_config['driver'], $params); + + if (!empty($be_config['quota'])) { + $vfs->setQuotaRoot($be_config['root'] == '/' ? '' : $be_config['root']); + if (isset($be_config['quota_val'])) { + $vfs->setQuota($be_config['quota_val'], $be_config['quota_metric']); + } else { + $quota_metric = array( + 'B' => Horde_Vfs::QUOTA_METRIC_BYTE, + 'KB' => Horde_Vfs::QUOTA_METRIC_KB, + 'MB' => Horde_Vfs::QUOTA_METRIC_MB, + 'GB' => Horde_Vfs::QUOTA_METRIC_GB + ); + $quota_str = explode(' ', $be_config['quota'], 2); + if (is_numeric($quota_str[0])) { + $metric = trim(Horde_String::upper($quota_str[1])); + if (!isset($quota_metric[$metric])) { + $metric = 'B'; + } + $vfs->setQuota($quota_str[0], $quota_metric[$metric]); + } + } + } + + $this->_instances[$backend] = $vfs; + } + + return $this->_instances[$backend]; + } +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Gollem.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Gollem.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Gollem.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Gollem.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,778 @@ + + * @author Chuck Hagenbuch + * @author Michael Slusarz + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem +{ + /* Sort constants. */ + const SORT_TYPE = 0; + const SORT_NAME = 1; + const SORT_DATE = 2; + const SORT_SIZE = 3; + + const SORT_ASCEND = 0; + const SORT_DESCEND = 1; + + /** + * Configuration hash for the current backend. + * + * @var array + */ + static public $backend; + + /** + * Cache for display columns. + * + * @var array + */ + static protected $_columns; + + /** + * Changes the current directory of the Gollem session to the supplied + * value. + * + * @param string $dir Directory name. + * + * @throws Gollem_Exception + */ + static public function setDir($dir) + { + $dir = Horde_Util::realPath($dir); + + if (!self::verifyDir($dir) || + !self::checkPermissions('directory', Horde_Perms::READ, $dir)) { + throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); + } + self::$backend['dir'] = $dir; + + self::_setLabel(); + } + + /** + * Changes the current directory of the Gollem session based on the + * 'dir' form field. + * + * @throws Gollem_Exception + */ + static public function changeDir() + { + $dir = Horde_Util::getFormData('dir'); + if (is_null($dir)) { + self::_setLabel(); + } else { + if (strpos($dir, '/') !== 0) { + $dir = self::$backend['dir'] . '/' . $dir; + } + self::setDir($dir); + } + } + + /** + * Set the lable to use for the current page. + */ + static protected function _setLabel() + { + self::$backend['label'] = self::getDisplayPath(self::$backend['dir']); + if (empty(self::$backend['label'])) { + self::$backend['label'] = '/'; + } + } + + /** + * Internal helper to sort directories first if pref set. + */ + static protected function _sortDirs($a, $b) + { + /* Sort symlinks to dirs as dirs */ + $dira = ($a['type'] === '**dir') || + (($a['type'] === '**sym') && ($a['linktype'] === '**dir')); + $dirb = ($b['type'] === '**dir') || + (($b['type'] === '**sym') && ($b['linktype'] === '**dir')); + + if ($GLOBALS['prefs']->getValue('sortdirsfirst')) { + if ($dira && !$dirb) { + return -1; + } elseif (!$dira && $dirb) { + return 1; + } + } + return 0; + } + + /** + * Internal sorting function for 'date'. + */ + static public function sortDate($a, $b) + { + $dirs = self::_sortDirs($a, $b); + if ($dirs) { + return $dirs; + } + + if ($a['date'] > $b['date']) { + return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1; + } elseif ($a['date'] === $b['date']) { + return self::sortName($a, $b); + } else { + return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1; + } + } + + /** + * Internal sorting function for 'size'. + */ + static public function sortSize($a, $b) + { + $dirs = self::_sortDirs($a, $b); + if ($dirs) { + return $dirs; + } + + if ($a['size'] > $b['size']) { + return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1; + } elseif ($a['size'] === $b['size']) { + return 0; + } else { + return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1; + } + } + + /** + * Internal sorting function for 'type'. + */ + static public function sortType($a, $b) + { + $dirs = self::_sortDirs($a, $b); + if ($dirs) { + return $dirs; + } + + if ($a['type'] === $b['type']) { + return self::sortName($a, $b); + } elseif ($a['type'] === '**dir') { + return $GLOBALS['prefs']->getValue('sortdir') ? 1 : -1; + } elseif ($b['type'] === '**dir') { + return $GLOBALS['prefs']->getValue('sortdir') ? -1 : 1; + } else { + $res = strcasecmp($a['type'], $b['type']); + return $GLOBALS['prefs']->getValue('sortdir') ? ($res * -1) : $res; + } + } + + /** + * Internal sorting function for 'name'. + */ + static public function sortName($a, $b) + { + $dirs = self::_sortDirs($a, $b); + if ($dirs) { + return $dirs; + } + + $res = strcasecmp($a['name'], $b['name']); + return $GLOBALS['prefs']->getValue('sortdir') ? ($res * -1) : $res; + } + + /** + * List the current folder. + * + * @param string $dir The directory name. + * + * @return array The sorted list of files. + * @throws Gollem_Exception + */ + static public function listFolder($dir) + { + global $conf; + + if (!empty($conf['foldercache']['use_cache']) && + !empty($conf['cache']['driver']) && + ($conf['cache']['driver'] != 'none')) { + $key = self::_getCacheID($dir); + + $cache = $GLOBALS['injector']->getInstance('Horde_Cache'); + $res = $cache->get($key, $conf['foldercache']['lifetime']); + if ($res !== false) { + $res = Horde_Serialize::unserialize($res, Horde_Serialize::BASIC); + if (is_array($res)) { + return $res; + } + } + } + + try { + $files = $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->listFolder($dir, + isset(self::$backend['filter']) ? self::$backend['filter'] : null, + $GLOBALS['prefs']->getValue('show_dotfiles')); + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + $sortcols = array( + self::SORT_TYPE => 'sortType', + self::SORT_NAME => 'sortName', + self::SORT_DATE => 'sortDate', + self::SORT_SIZE => 'sortSize', + ); + usort($files, array('Gollem', $sortcols[$GLOBALS['prefs']->getValue('sortby')])); + + if (isset($cache)) { + $cache->set($key, Horde_Serialize::serialize($files, Horde_Serialize::BASIC), $conf['foldercache']['lifetime']); + } + + return $files; + } + + /** + * Generate the Cache ID for a directory. + * + * @param string $dir The directory name. + */ + static protected function _getCacheID($dir) + { + return implode('|', array($GLOBALS['registry']->getAuth(), + $GLOBALS['session']->get('gollem', 'backend_key'), + $GLOBALS['prefs']->getValue('show_dotfiles'), + $GLOBALS['prefs']->getValue('sortdirsfirst'), + $GLOBALS['prefs']->getValue('sortby'), + $GLOBALS['prefs']->getValue('sortdir'), + $dir)); + } + + /** + * Expire a folder cache entry. + * + * @param string $dir The directory name. + */ + static public function expireCache($dir) + { + global $conf; + + if (!empty($conf['foldercache']['use_cache']) && + !empty($conf['cache']['driver']) && + ($conf['cache']['driver'] != 'none')) { + $cache = $GLOBALS['injector']->getInstance('Horde_Cache'); + $cache->expire(self::_getCacheID($dir)); + } + } + + /** + * Generate correct subdirectory links. + * + * @param string $base The base directory. + * @param string $dir The directory string. + * + * @return string The correct subdirectoy string. + */ + static public function subdirectory($base, $dir) + { + if (empty($base)) { + return $dir; + } + + if (substr($base, -1) == '/') { + return $base . $dir; + } + + return $base . '/' . $dir; + } + + /** + * Create a folder using the current Gollem session settings. + * + * @param string $dir The directory path. + * @param string $name The folder to create. + * @param Horde_Vfs_Base $gollem_vfs A VFS instance to use. + * + * @throws Gollem_Exception + */ + static public function createFolder($dir, $name, $gollem_vfs = null) + { + $totalpath = Horde_Util::realPath($dir . '/' . $name); + if (!self::verifyDir($totalpath)) { + throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $totalpath)); + } + + /* The $name parameter may contain additional directories so we + * need to pass autocreatePath everything but the base filename. */ + $pos = strrpos($totalpath, '/'); + $dir = substr($totalpath, 0, $pos); + $name = substr($totalpath, $pos + 1); + + if (!$gollem_vfs) { + $gollem_vfs = $GLOBALS['injector']->getInstance('Gollem_Vfs'); + } + try { + $gollem_vfs->autocreatePath($dir); + $gollem_vfs->createFolder($dir, $name); + + if (!empty(self::$backend['params']['permissions'])) { + $gollem_vfs->changePermissions($dir, $name, self::$backend['params']['permissions']); + } + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + } + + /** + * Rename files using the current Gollem session settings. + * + * @param string $oldDir Old directory name. + * @param string $old Old file name. + * @param string $newDir New directory name. + * @param string $old New file name. + * + * @throws Gollem_Exception + */ + static public function renameItem($oldDir, $old, $newDir, $new) + { + try { + $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->rename($oldDir, $old, $newDir, $new); + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + + $shares = $GLOBALS['injector']->getInstance('Gollem_Shares'); + $backend = $GLOBALS['session']->get('gollem', 'backend_key'); + try { + $share = $shares->getShare($backend . '|' . $oldDir . '/' . $old); + $shares->renameShare($share, $backend . '|' . $newDir . '/' . $new); + $share->set('name', $new, true); + } catch (Horde_Exception_NotFound $e) { + } catch (Horde_Share_Exception $e) { + throw new Gollem_Exception($e); + } + } + + /** + * Delete a folder using the current Gollem session settings. + * + * @param string $dir The subdirectory name. + * @param string $name The folder name to delete. + * + * @throws Gollem_Exception + */ + static public function deleteFolder($dir, $name) + { + if (!self::verifyDir($dir)) { + throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); + } + + try { + $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->deleteFolder( + $dir, + $name, + $GLOBALS['prefs']->getValue('recursive_deletes') != 'disabled'); + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + + $shares = $GLOBALS['injector']->getInstance('Gollem_Shares'); + try { + $share = $shares->getShare( + $GLOBALS['session']->get('gollem', 'backend_key') . '|' + . $dir . '/' . $name); + $shares->removeShare($share); + } catch (Horde_Exception_NotFound $e) { + } catch (Horde_Share_Exception $e) { + throw new Gollem_Exception($e); + } + } + + /** + * Delete a file using the current Gollem session settings. + * + * @param string $dir The directory name. + * @param string $name The filename to delete. + * + * @throws Gollem_Exception + */ + static public function deleteFile($dir, $name) + { + if (!self::verifyDir($dir)) { + throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); + } + try { + $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->deleteFile($dir, $name); + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + } + + /** + * Change permissions on files using the current Gollem session settings. + * + * @param string $dir The directory name. + * @param string $name The filename to change permissions on. + * @param string $permission The permission mode to set. + * + * @throws Gollem_Exception + */ + static public function changePermissions($dir, $name, $permission) + { + if (!self::verifyDir($dir)) { + throw new Gollem_Exception(sprintf(_("Access denied to folder \"%s\"."), $dir)); + } + try { + $GLOBALS['injector'] + ->getInstance('Gollem_Vfs') + ->changePermissions($dir, $name, $permission); + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + } + + /** + * Write an uploaded file to the VFS backend. + * + * @param string $dir The directory name. + * @param string $name The filename to create. + * @param string $filename The local file containing the file data. + * + * @thows Gollem_Exception + */ + static public function writeFile($dir, $name, $filename) + { + $gollem_vfs = $GLOBALS['injector']->getInstance('Gollem_Vfs'); + try { + $gollem_vfs->write($dir, $name, $filename, true); + if (!empty(self::$backend['params']['permissions'])) { + $gollem_vfs->changePermissions($dir, $name, self::$backend['params']['permissions']); + } + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + } + + /** + * Moves a file using the current Gollem session settings. + * + * @param string $backend_f The backend to move the file from. + * @param string $dir The directory name of the original file. + * @param string $name The original filename. + * @param string $backend_t The backend to move the file to. + * @param string $newdir The directory to move the file to. + * + * @throws Gollem_Exception + */ + static public function moveFile($backend_f, $dir, $name, $backend_t, + $newdir) + { + self::_copyFile('move', $backend_f, $dir, $name, $backend_t, $newdir); + } + + /** + * Copies a file using the current Gollem session settings. + * + * @param string $backend_f The backend to copy the file from. + * @param string $dir The directory name of the original file. + * @param string $name The original filename. + * @param string $backend_t The backend to copy the file to. + * @param string $newdir The directory to copy the file to. + * + * @throws Gollem_Exception + */ + static public function copyFile($backend_f, $dir, $name, $backend_t, + $newdir) + { + self::_copyFile('copy', $backend_f, $dir, $name, $backend_t, $newdir); + } + + /** + * Private function that copies/moves files. + * + * @throws Gollem_Exception + */ + static protected function _copyFile($mode, $backend_f, $dir, $name, + $backend_t, $newdir) + { + $backend_key = $GLOBALS['session']->get('gollem', 'backend_key'); + $factory = $GLOBALS['injector']->getInstance('Gollem_Factory_Vfs'); + + /* If the from/to backends are the same, we can just use the built-in + * VFS functions. */ + if ($backend_f == $backend_t) { + $ob = $factory->create($backend_f); + try { + if ($backend_f != $backend_key) { + $ob->checkCredentials(); + } + if ($mode == 'copy') { + $ob->copy($dir, $name, $newdir); + } else { + $ob->move($dir, $name, $newdir); + } + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + return; + } + + /* Else, get the two VFS objects and copy/move the files. */ + $from_be = $factory->create($backend_f); + if ($backend_f != $backend_key) { + try { + $from_be->checkCredentials(); + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + } + + $to_be = $factory->create($backend_t); + if ($backend_t != $backend_key) { + try { + $to_be->checkCredentials(); + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + } + + try { + /* Read the source data. */ + $data = $from_be->read($dir, $name); + + /* Write the target data. */ + $to_be->writeData($newdir, $name, $data); + + /* If moving, delete the source data. */ + if ($mode == 'move') { + $from_be->deleteFile($dir, $name); + } + } catch (Horde_Vfs_Exception $e) { + throw new Gollem_Exception($e); + } + } + + /** + * This function verifies whether a given directory is below the root. + * + * @param string $dir The directory to check. + * + * @return boolean True if the directory is below the root. + */ + static public function verifyDir($dir) + { + return Horde_String::substr(Horde_Util::realPath($dir), 0, Horde_String::length(self::$backend['root'])) == self::$backend['root']; + } + + /** + * Parses the 'columns' preference. + * + * @return array The list of columns to be displayed. + */ + static public function getColumns($backend) + { + if (!isset(self::$_columns)) { + self::$_columns = array(); + $sources = json_decode($GLOBALS['prefs']->getValue('columns')); + foreach ($sources as $source) { + self::$_columns[array_shift($source)] = $source; + } + } + + if (empty(self::$_columns[$backend])) { + $info = Gollem_Auth::getBackend($backend); + self::$_columns[$backend] = $info['attributes']; + } + + return self::$_columns[$backend]; + } + + /** + * Checks if a user has the specified permissions on a resource. + * + * @param string $filter What are we checking for. Either 'backend' + * or 'directory'. + * @param integer $permission The permission to check for. One of the + * Horde_Perms constants. + * @param string $resource The resource to check. If empty, check the + * current backend/directory. + * + * @return boolean Returns true if the user has permission. + */ + static public function checkPermissions($filter, + $permission = Horde_Perms::READ, + $resource = null) + { + $userID = $GLOBALS['registry']->getAuth(); + + switch ($filter) { + case 'backend': + if (is_null($resource)) { + $resource = $GLOBALS['session']->get('gollem', 'backend_key'); + } + $backendTag = 'gollem:backends:' . $resource; + $perms = $GLOBALS['injector']->getInstance('Horde_Perms'); + return (!$perms->exists($backendTag) || + $perms->hasPermission($backendTag, $userID, $permission)); + + case 'directory': + if (empty(self::$backend['shares'])) { + return true; + } + if (is_null($resource)) { + $resource = self::$backend['dir']; + } + if (strpos($resource, self::$backend['home']) === 0) { + return true; + } + $shares = $GLOBALS['injector']->getInstance('Gollem_Shares'); + $backend = $GLOBALS['session']->get('gollem', 'backend_key'); + $directory = $resource; + while (strlen($directory) && $directory != './' && $directory != '/') { + try { + return $shares->getShare($backend . '|' . $directory) + ->hasPermission($userID, $permission); + } catch (Horde_Exception_NotFound $e) { + } + $directory = dirname($directory); + } + /* Intermediate solution until we display shared folders + * independent from the directory tree. Check if there are + * any sub-directories with show permissions and allow + * browsing the directory in this case. */ + if ($permission == Horde_Perms::READ || + $permission == Horde_Perms::SHOW) { + $dirs = $shares->listShares($userID, array('perm' => Horde_Perms::SHOW)); + foreach ($dirs as $dir) { + if (strpos($dir->getName(), $backend . '|' . $resource) === 0) { + return true; + } + } + } + break; + } + + return false; + } + + /** + * Produces a directory link used for navigation. + * + * @param string $currdir The current directory string. + * @param string $url The URL to link to. + * + * @return string The directory navigation string. + */ + static public function directoryNavLink($currdir, $url) + { + $label = array(); + $root_dir_name = self::$backend['name']; + + if ($currdir == $root_dir_name) { + $label[] = '[' . $root_dir_name . ']'; + } else { + $parts = explode('/', $currdir); + $parts_count = count($parts); + + $url = new Horde_Url($url); + $label[] = Horde::link($url->add('dir', self::$backend['root']), sprintf(_("Up to %s"), $root_dir_name)) . '[' . $root_dir_name . ']'; + + for ($i = 1; $i <= $parts_count; ++$i) { + $part = array_slice($parts, 0, $i); + $dir = implode('/', $part); + if ((strstr($dir, self::$backend['root']) !== false) && + (self::$backend['root'] != $dir)) { + if ($i == $parts_count) { + $label[] = $parts[($i - 1)]; + } else { + $label[] = Horde::link($url->add('dir', $dir), sprintf(_("Up to %s"), $dir)) . htmlspecialchars($parts[($i - 1)]) . ''; + } + } + } + } + + return implode('/', $label); + } + + /** + * Generate the display path (the path with any root information stripped + * out). + * + * @param string $path The path to display. + * + * @return string The display path. + */ + static public function getDisplayPath($path) + { + $path = Horde_Util::realPath($path); + if (self::$backend['root'] != '/' && + strpos($path, self::$backend['root']) === 0) { + $path = substr($path, Horde_String::length(self::$backend['root'])); + } + return $path; + } + + /** + * Cleans a path presented to Gollem's browse API call. + * + * This will remove: + * - leading '/' + * - leading 'gollem' + * - trailing '/' + * The desired end result is the path including VFS backend. + * + * @param string $path Path as presented to Gollem API. + * + * @return string Cleaned path as described above. + */ + static public function stripAPIPath($path) + { + return trim(preg_replace('|/?gollem|', '', $path), '/'); + } + + /** + * Convert a Gollem path into a URL encoded string, but keep '/'. + * This allows for proper PATH_INFO path parsing. + * Special care is taken to handle "+" and " ". + * + * @param string $path Path to be urlencode()d. + * + * @return string URL-encoded string with '/' preserved. + */ + static public function pathEncode($path) + { + return str_ireplace(array('%2F', '%2f'), '/', rawurlencode($path)); + } + + /** + * Take a fully qualified and break off the file or directory name. + * This pair is used for the input to many VFS library functions. + * + * @param string $fullpath Path to be split. + * + * @return array Array of ($path, $name) + */ + static public function getVFSPath($fullpath) + { + // Convert the path into VFS's ($path, $name) convention + $i = strrpos($fullpath, '/'); + if ($i !== false) { + $path = substr($fullpath, 0, $i); + $name = substr($fullpath, $i + 1); + } else { + $name = $fullpath; + $path = ''; + } + return array($name, $path); + } +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/.htaccess php-horde-gollem-3.0.9/gollem-3.0.9/lib/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/.htaccess 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/.htaccess 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,6 @@ + + Require all denied + + + Deny from all + diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/LoginTasks/SystemTask/Upgrade.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/LoginTasks/SystemTask/Upgrade.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/LoginTasks/SystemTask/Upgrade.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/LoginTasks/SystemTask/Upgrade.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,46 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem_LoginTasks_SystemTask_Upgrade extends Horde_Core_LoginTasks_SystemTask_Upgrade +{ + /** + */ + protected $_app = 'gollem'; + + /** + */ + protected $_versions = array( + '2.0' + ); + + /** + */ + protected function _upgrade($version) + { + global $prefs; + + switch ($version) { + case '2.0': + /* Upgrade to the new preferences format. */ + if (!$prefs->isDefault('columns')) { + $cols = $prefs->getValue('columns'); + if (!is_array(json_decode($cols))) { + $prefs->setValue('columns', json_encode(explode("\t", $cols))); + } + } + break; + } + } + +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Prefs/Special/Columnselect.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Prefs/Special/Columnselect.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Prefs/Special/Columnselect.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Prefs/Special/Columnselect.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,76 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class Gollem_Prefs_Special_Columnselect implements Horde_Core_Prefs_Ui_Special +{ + /** + */ + public function init(Horde_Core_Prefs_Ui $ui) + { + Horde_Core_Prefs_Ui_Widgets::sourceInit(); + } + + /** + */ + public function display(Horde_Core_Prefs_Ui $ui) + { + $sources = array(); + foreach (Gollem_Auth::getBackend() as $source => $info) { + $selected = $unselected = array(); + $selected_list = array_flip(Gollem::getColumns($source)); + foreach ($info['attributes'] as $column) { + if (isset($selected_list[$column])) { + $selected[$column] = $column; + } else { + $unselected[$column] = $column; + } + } + $sources[$source] = array( + 'label' => $info['name'], + 'selected' => $selected, + 'unselected' => $unselected, + ); + } + + return Horde_Core_Prefs_Ui_Widgets::source(array( + 'mainlabel' => _("Choose which columns to display, and in what order:"), + 'selectlabel' => _("These columns will display in this order:"), + 'sourcelabel' => _("Select a backend:"), + 'sources' => $sources, + 'unselectlabel' => _("Columns that will not be displayed:") + )); + } + + /** + */ + public function update(Horde_Core_Prefs_Ui $ui) + { + if (!isset($ui->vars->sources)) { + return false; + } + + $backends = Gollem_Auth::getBackend(); + if (count($backends) == 1) { + $sources = json_decode($ui->vars->sources); + array_unshift($sources, key($backends)); + $sources = json_encode(array($sources)); + } else { + $sources = $ui->vars->sources; + } + $GLOBALS['prefs']->setValue('columns', $sources); + + return true; + } + +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/lib/Test.php php-horde-gollem-3.0.9/gollem-3.0.9/lib/Test.php --- php-horde-gollem-3.0.8/gollem-3.0.9/lib/Test.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/lib/Test.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,73 @@ + + * @package Gollem + */ +class Gollem_Test extends Horde_Test +{ + /** + * The module list + * + * @var array + */ + protected $_moduleList = array( + 'ftp' => array( + 'descrip' => 'FTP Support', + 'error' => 'You need FTP support compiled into PHP if you plan to use the FTP VFS driver (see config/backends.php).' + ), + 'ssh2' => array( + 'descrip' => 'SSH2 Support', + 'error' => 'You need the SSH2 PECL module if you plan to use the SSH2 VFS driver (see config/backends.php).' + ) + ); + + /** + * PHP settings list. + * + * @var array + */ + protected $_settingsList = array(); + + /** + * PEAR modules list. + * + * @var array + */ + protected $_pearList = array(); + + /** + * Inter-Horde application dependencies. + * + * @var array + */ + protected $_appList = array(); + + /** + */ + public function __construct() + { + parent::__construct(); + + $this->_fileList += array( + 'config/backends.php' => null, + 'config/prefs.php' => null + ); + } + + /** + * Any application specific tests that need to be done. + * + * @return string HTML output. + */ + public function appTests() + { + } + +} Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/bg/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/bg/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/bg/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/bg/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/bg/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/bg/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,325 @@ +# Bulgarian translations for Gollem package. +# Copyright 2002-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Miroslav Pendev , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 0.0.1-cvs\n" +"POT-Creation-Date: 2002-09-14 00:38-0400\n" +"PO-Revision-Date: 2002-11-19 20:44-0500\n" +"Last-Translator: Miroslav Pendev \n" +"Language-Team: BG i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#, c-format +msgid "%d items in %s" +msgstr "%d неща в %s" + +#, c-format +msgid "%s Login" +msgstr "%s Вход" + +#, c-format +msgid "%s Standard" +msgstr "%s Стандарт" + +#, c-format +msgid "'%s' renamed to '%s'" +msgstr "'%s' преименувано на '%s'" + +#, c-format +msgid "Access denied to %s" +msgstr "Отказан достъп до %s" + +msgid "Ascending" +msgstr "Нарастващи" + +msgid "Back To Folder" +msgstr "Обратно към папка" + +msgid "Barbie" +msgstr "Barbie" + +msgid "Brown" +msgstr "Brown" + +msgid "Burnt Orange" +msgstr "Burnt Orange" + +msgid "Camouflage" +msgstr "Camouflage" + +#, c-format +msgid "Cannot chmod %s" +msgstr "Грешка при chmod %s" + +#, c-format +msgid "Cannot delete '%s'" +msgstr "Грешка при изтриване на '%s'" + +msgid "Change your file sorting options and theme setting." +msgstr "Сменете начина на сортиране на файловете и настройките за темата." + +msgid "Checkbox" +msgstr "Checkbox" + +msgid "Cherry" +msgstr "Cherry" + +msgid "Chmod Items" +msgstr "Chmod неща" + +msgid "Chmod done: " +msgstr "Chmod извършен:" + +msgid "Choose Action:" +msgstr "Избери действие:" + +#, c-format +msgid "Connect to: %s" +msgstr "Свързване към %s" + +msgid "Create Folder" +msgstr "Създай папка" + +msgid "Default sorting criteria:" +msgstr "Критерии за сортиране по подразбиране:" + +msgid "Default sorting direction:" +msgstr "Посока на сортиране по подразбиране:" + +#, c-format +msgid "Defaulted to: %s" +msgstr "Подразбиращо се: %s" + +msgid "Delete Items" +msgstr "Изтрий неща" + +msgid "Descending" +msgstr "Намаляващи" + +msgid "Directory removed: " +msgstr "Директорията преместена:" + +msgid "Display Options" +msgstr "Дисплей Опции" + +msgid "Download" +msgstr "Изтегли" + +msgid "" +"Either you have logged in incorrectly or your login has expired. Please " +"login again." +msgstr "" +"Грешка при вход или времето за вашата сесия е изтекло. Моля регистрирайте се " +"отново." + +msgid "Email" +msgstr "Писмо" + +#, c-format +msgid "Error uploading %s: %s" +msgstr "Грешка при изпращане на файла %s: %s" + +#, c-format +msgid "Error uploading file: %s" +msgstr "Грешка при изпращане на файла: %s" + +msgid "File Modification Time" +msgstr "Дата на модификация на файла" + +msgid "File Name" +msgstr "Име на файл" + +msgid "File Size" +msgstr "Размер на файла" + +msgid "File Type" +msgstr "Файл тип" + +msgid "File deleted: " +msgstr "Изтрит файл: " + +#, c-format +msgid "File received: %s" +msgstr "Изтеглен файл: %s" + +msgid "File type can't be viewed inline, download the file instead" +msgstr "Файл от този тип не може да се преглежда, изтеглете го" + +msgid "Gollem is not properly configured" +msgstr "Gollem не е конфигуриран коректно" + +msgid "Green" +msgstr "Green" + +msgid "Grey" +msgstr "Grey" + +msgid "Group" +msgstr "Група" + +msgid "Help" +msgstr "Помощ" + +msgid "Home" +msgstr "Начало" + +msgid "Incorrect number of items." +msgstr "Некоректен брой." + +msgid "Language" +msgstr "Език" + +msgid "Light Blue" +msgstr "Light Blue" + +msgid "Locked" +msgstr "Заключен" + +msgid "Log in" +msgstr "Вход" + +msgid "" +"Login failed for some reason. Most likely your username or password was " +"entered incorrectly." +msgstr "" +"Регистрирането се провали поради неизвестна причина. Вероятно грешно " +"въведено потребителско име или парола." + +msgid "Logout" +msgstr "Изход" + +msgid "Modified" +msgstr "Променен" + +msgid "Mozilla" +msgstr "Mozilla" + +msgid "Name" +msgstr "Име" + +msgid "Name:" +msgstr "Име:" + +msgid "New folder created: " +msgstr "Създадена е нова папка: " + +msgid "Options" +msgstr "Опции" + +msgid "Orange" +msgstr "Orange" + +msgid "Other Options" +msgstr "Други Опции" + +msgid "Owner" +msgstr "Притежател" + +msgid "Password" +msgstr "Парола" + +msgid "Permission" +msgstr "Права" + +#, c-format +msgid "Permission denied to %s: %s." +msgstr "Право на достъп до %s отказан: %s" + +msgid "Refresh" +msgstr "Опресни" + +msgid "Rename Items" +msgstr "Преименуване" + +msgid "Select your color scheme." +msgstr "Изберете вашата схема за цветовете." + +msgid "Select your preferred language:" +msgstr "Изберете предпочитаният от Вас език:" + +msgid "Server" +msgstr "Сървър" + +msgid "Set the language that menu items, explanations, and help are in." +msgstr "Изберете езика, на които се показват менюта, обяснения и помощ." + +msgid "Size" +msgstr "Размер" + +msgid "Some of Gollem's configuration files are missing:" +msgstr "Някои от конфигурационните файлове на Gollem липсват:" + +msgid "Sort Direction" +msgstr "Сортиране" + +msgid "Sun" +msgstr "Sun" + +msgid "There are no files in this directory." +msgstr "Няма файлове в тази директория." + +msgid "There was an error viewing this file" +msgstr "Грешка при преглеждането на този файл." + +msgid "" +"This file controls the default preferences for Gollem, and also controls " +"which preferences users can alter." +msgstr "" +"Този файл контролира настройките по подразбиране на Gollem, а също и кои " +"настройки потребителите могат да се променят." + +msgid "This file controls what backends are available from Gollem." +msgstr "Този файл контролира какви backends са възможни за Gollem." + +msgid "This file defines types of credentials that a backend might request." +msgstr "" +"Този файл дефинира типовете акредитации, които backend-a може да изиска" + +msgid "" +"This is the main Gollem configuration file. It contains options for the " +"Gollem scripts." +msgstr "" +"Това е главния файл за конфигуриране на Gollem. Той съдържа пътищата и " +"опциите за Gollem скриптовете." + +msgid "Type" +msgstr "Тип" + +msgid "Up to parent" +msgstr "Обратно" + +msgid "User Options" +msgstr "Потребителски опции" + +msgid "Username" +msgstr "Име" + +#, c-format +msgid "Warning: %s requires Javascript to perform certain functions." +msgstr "Внимание: %s изисква Javascript за някои функции." + +#, c-format +msgid "" +"You have been logged out of %s. Thank you for using the system. If you wish " +"to log in again, please use the form below." +msgstr "Вие излязохте от %s.Благодарим Ви, че използвахте системата." + +msgid "Your Information" +msgstr "Информация за Вас" + +msgid "Your browser does not support inline display of this image type" +msgstr "Вашият browser не подържа редово показване на този тип файл" + +msgid "[home]" +msgstr "[home]" + +msgid "folder" +msgstr "папка" + +msgid "symlink" +msgstr "symlink" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/ca/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/ca/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/ca/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/ca/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + Administrador d'arxius: Accions + Creació de carpetes + + Per a crear una carpeta en el directori actual, trii Crear carpeta en la barra de menú. + + Eliminar, tallar, copiar i pegar arxius + +Per a eliminar, tallar o copiar un o diversos arxius, primer ha de seleccionar almenys un. Després de seleccionar un o más arxius mitjançant les caselles a l'esquerra dels elements, seleccioni bé Tallar elements, Copiar elements o Eliminar elements del menú desplegable Accions. Si selecciona Tallar o Copiar elements tindrà la possibilitat de pegar aquests arxius en qualsevol lloc del Gestor d'arxius. Navegui fins a la ubicació en la qual vulgui pegar els elements i seleccioni Pegar elements del menú desplegable Accions. Els elements es traslladaran (Tallar elements) o es copiaran (Copiar elements) a la ubicació que hagi triat. + + Eliminar, tallar, copiar i pegar carpetes + +Per omissió, només es poden eliminar les carpetes que estiguin buides, no obstant això és pot activar l'eliminació de carpetes que no estiguin buides (esborrat recursiu). Si intenta eliminar una carpeta que no estigui buida sense activar aquesta opció, l'eliminació fallarà i és mostrarà un missatge d'error. Per a activar l'eliminació de carpetes que no estiguin buides, premi Opcions, Configuració i trii Sí en el menú desplegable de l'opció Eliminar carpetes de forma recursiva?. Això activarà l'opció d'eliminació recursiva. + +Per a eliminar, tallar o copiar una o diverses carpetes, ha de seleccionar almenys una. Després de seleccionar una o més carpetes mitjançant les caselles a l'esquerra dels elements, seleccioni bé Tallar elements, Copiar elements o Eliminar elements del menú desplegable Accions. Si selecciona Tallar o Copiar elements tindrà la possibilitat de pegar aquestes carpetes en qualsevol lloc del Gestor d'arxius. Navegui fins a la ubicació en la qual vulgui enganxar els elements i seleccioni Enganxar elements del menú desplegable Accions. Els elements es traslladaran (Tallar elements) o es copiaran (Copiar elements) a la ubicació que hagi triat. + + Treballant amb el Portapapers + +Una vegada hagi copiat o tallat un arxiu o carpeta, es situarà en el portapapers. Pot veure el contingut del portapapers prement la seva icona, que està sobre el llistat de carpetes a la dreta de la icona Actualitzar. La icona no és mostrarà tret que existeixi algun element en el portapapers. Els elements tallats o copiats no disposaran d'una casella a la seva esquerra, el qual significa que estan en el portapapers. Quan premi en la icona del portapapers, veurà un llistat dels elements que hagi copiat o tallat. Seleccioni els elements que desitgi pegar i premi pegar. Aquests elements es pegaran en la carpeta actual i s'eliminaran del portapapers. Després de completar l'operació de pegat, regressará a la carpeta actual. Si desitgés eliminar un element del portapapers, només l'ha de seleccionar i prémer Netejar. Aquests elements s'eliminaran del portapapers i es mostrarà de nou la carpeta actual. + + + + + Administrador d'arxius: Càrrega + Càrrega d'arxius + +Per a carregar un o diversos arxius, navegui fins a la carpeta de l'Administrador d'arxius en la qual desitgi carregar-los. Se la coneix com la carpeta actual. Una vegada en la carpeta adequada de l'Administrador d'arxius, premi el botón Examinar. S'obrirà una finestra de Càrrega d'Arxius. Amb aquesta finestra oberta, navegui fins a l'arxiu que desitgi carregar, seleccioni'l i premi Acceptar/Obrir. Pot carregar diversos arxius alhora. L'Administrador d'arxius afegirà automàticament un altre botó Examinar després de cada arxiu que seleccioni. Una vegada hagi seleccionat tots els arxius que desitgi carregar, premi el botón Carregar arxiu i l'arxiu o arxius que había seleccionat es carregarán en la carpeta actual de l'Administrador d'arxius. + + + + + Ordenació d'entrades + Ordenació d'entrades + +AL veure un llistat d'arxius o carpetes, pot ordenar-lo per qualsevol columna. Per a això, premi la capçalera de la columna per la qual desitgi realitzar la ordenació i el llistat s'actualitzarà, ordenat per la columna que hagi seleccionat. Per a commutar entre ordenació ascendent o descendent, premi en la icona de fletxa de la capçalera de la columna. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/ca/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/ca/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/ca/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/ca/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/ca/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/ca/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,624 @@ +# Spanish translations for horde package +# Traducciones al español para el paquete horde. +# Copyright 2004-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the horde package. +# Automatically generated, 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 1.0-cvs\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2006-02-02 12:09+0100\n" +"PO-Revision-Date: 2007-02-01 17:03+0100\n" +"Last-Translator: Jordi Giralt \n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: manager.php:52 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" s'ha renombrat com \"%s\"" + +#: quota.php:59 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:260 +#, php-format +msgid "%d items" +msgstr "%d elements" + +#: manager.php:414 +#, php-format +msgid "%s Folders and %s Files (%s Kb)" +msgstr "%s Carpetes i %s Arxius (%s Kb)" + +#: manager.php:412 +#, php-format +msgid "%s Folders and 1 File (%s Kb)" +msgstr "%s Carpetes i 1 arxiu (%s Kb)" + +#: login.php:143 +#, php-format +msgid "%s Login" +msgstr "Inici de %s" + +#: manager.php:159 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s s'ha enganxat correctament." + +#: manager.php:409 +#, php-format +msgid "1 Folder and %s Files (%s Kb)" +msgstr "1 Carpeta i %s arxius (%s Kb)" + +#: manager.php:407 +#, php-format +msgid "1 Folder and 1 File (%s Kb)" +msgstr "1 Carpeta i 1 arxiu (%s Kb)" + +#: manager.php:260 +msgid "1 item" +msgstr "1 element" + +#: view.php:31 +#, php-format +msgid "Access denied to %s" +msgstr "S'ha denegat l'accés a %s" + +#: lib/Gollem.php:116 lib/Gollem.php:390 lib/Gollem.php:452 lib/Gollem.php:473 +#: lib/Gollem.php:490 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "S'ha denegat l'accés a la carpeta \"%s\"." + +#: templates/manager/manager.html:105 +msgid "Actions" +msgstr "Accions" + +#: selectlist.php:100 +msgid "Add" +msgstr "Afegir" + +#: templates/prefs/columnselect.inc:42 +msgid "Add column" +msgstr "Afegir columna" + +#: templates/manager/manager.html:9 +msgid "All" +msgstr "Tots" + +#: templates/manager/javascript.inc:202 +msgid "Are you sure you wish to continue?" +msgstr "Està segur que vol continuar?" + +#: templates/manager/javascript.inc:198 +msgid "Are you sure?" +msgstr "Està segur?" + +#: config/prefs.php.dist:69 +msgid "Ascending" +msgstr "Ascendent" + +#: config/prefs.php.dist:93 +msgid "Ask" +msgstr "Consultar" + +#: templates/manager/manager.html:3 +msgid "Attributes" +msgstr "Atributs" + +#: templates/prefs/columnselect.html:20 +msgid "Available Columns:" +msgstr "Columnes disponibles:" + +#: lib/api.php:46 +msgid "Backends" +msgstr "Motors" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "A continuació es mostra el contingut actual del portapapers." + +#: manager.php:254 selectlist.php:102 clipboard.php:37 +msgid "Cancel" +msgstr "Cancel·lar" + +#: manager.php:72 +#, php-format +msgid "Cannot chmod %s" +msgstr "No es pot utilitzar chmod a %s" + +#: manager.php:133 +msgid "Cannot copy items onto clipboard." +msgstr "No es poden copiar elements al portapapers." + +#: manager.php:192 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "No es pot crear la carpeta principal: %s" + +#: manager.php:135 +msgid "Cannot cut items onto clipboard." +msgstr "No es poden tallar elements al portapapers." + +#: manager.php:80 +#, php-format +msgid "Cannot delete \"%s\": %s" +msgstr "No es pot eliminar \"%s\": %s" + +#: manager.php:157 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "No es pot enganxar \"%s\" (el portapapers està buit): %s" + +#: lib/Gollem.php:777 templates/manager/manager.html:71 +msgid "Change Folder" +msgstr "Obrir carpeta" + +#: selectlist.php:110 lib/Gollem.php:819 +msgid "Change Server" +msgstr "Canviar servidor" + +#: config/prefs.php.dist:21 +msgid "Change file and folder handling settings." +msgstr "Canviar opcions de manipulació d'arxius i carpetes." + +#: config/prefs.php.dist:14 +msgid "Change your file sorting options." +msgstr "Canviar opcions de classificació d'arxius." + +#: lib/Gollem.php:793 +msgid "Check Quota" +msgstr "Verificar Quota" + +#: manager.php:492 +msgid "Check _All/None" +msgstr "Marcar _tots/Cap" + +#: templates/manager/manager.html:113 +msgid "Chmod Items" +msgstr "Canviar permisos d'elements" + +#: manager.php:70 +msgid "Chmod done: " +msgstr "Ha finalitzat el canvi de permisos: " + +#: templates/prefs/columnselect.html:12 +msgid "Choose the columns to display in the file manager." +msgstr "Trii les columnes mostrades en el gestor d'arxius. " + +#: clipboard.php:38 +msgid "Clear" +msgstr "Netejar" + +#: clipboard.php:17 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "Portapapers" + +#: quota.php:31 +msgid "Close" +msgstr "Tancar" + +#: login.php:254 +#, php-format +msgid "Connect to: %s" +msgstr "Connectar a: %s" + +#: clipboard.php:41 +msgid "Copy" +msgstr "Copiar" + +#: templates/manager/manager.html:116 +msgid "Copy Items" +msgstr "Copiar elements" + +#: lib/Gollem.php:774 templates/manager/manager.html:57 +msgid "Create Folder" +msgstr "Crear carpeta" + +#: permissions.php:47 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "Crear permisos buits per \"%s\". Ha d'especificar el nivell d'accés a" + +#: templates/clipboard/clipboard.html:17 +msgid "Current directory:" +msgstr "Carpeta actual: %s" + +#: clipboard.php:40 +msgid "Cut" +msgstr "Tallar" + +#: templates/manager/manager.html:115 +msgid "Cut Items" +msgstr "Tallar elements" + +#: config/prefs.php.dist:59 +msgid "Default sorting criteria:" +msgstr "Criteri de classificació por omissió:" + +#: config/prefs.php.dist:72 +msgid "Default sorting direction:" +msgstr "Sentit de classificació per omissió" + +#: templates/manager/manager.html:110 +msgid "Delete Items" +msgstr "Eliminar elements" + +#: config/prefs.php.dist:95 +msgid "Delete folders recursively?" +msgstr "Eliminar carpetes de forma recursiva?" + +#: config/prefs.php.dist:70 +msgid "Descending" +msgstr "Descendent" + +#: selectlist.php:101 +msgid "Done" +msgstr "Finalitzat" + +#: manager.php:214 +msgid "Download" +msgstr "Descarregar" + +#: manager.php:381 +#, php-format +msgid "Download %s" +msgstr "Descarregar %s" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "ERROR:" + +#: config/credentials.php.dist:28 +msgid "Email" +msgstr "Correu" + +#: templates/manager/manager.html:24 +msgid "Execute" +msgstr "Execució" + +#: templates/manager/javascript.inc:485 templates/manager/manager.html:179 +msgid "File" +msgstr "Arxiu" + +#: config/prefs.php.dist:13 +msgid "File Display" +msgstr "Vista de l'arxiu" + +#: config/prefs.php.dist:56 +msgid "File Modification Time" +msgstr "Hora de modificació de l'arxiu" + +#: config/prefs.php.dist:55 +msgid "File Name" +msgstr "Nom de arxiu" + +#: config/prefs.php.dist:57 +msgid "File Size" +msgstr "Mida de l'arxiu" + +#: config/prefs.php.dist:54 +msgid "File Type" +msgstr "Tipus d'arxiu" + +#: manager.php:76 +msgid "File deleted: " +msgstr "Arxiu eliminat:" + +#: manager.php:101 +#, php-format +msgid "File received: %s" +msgstr "Arcxiu recibut: %s" + +#: manager.php:78 +msgid "Folder removed: " +msgstr "Carpeta eliminada: " + +#: templates/manager/manager.html:73 +msgid "Go to:" +msgstr "Anar a:" + +#: permissions.php:21 +msgid "Gollem Backend Permissions Administration" +msgstr "Administració de permisos del motor de Gollem" + +#: manager.php:471 templates/manager/manager.html:8 +msgid "Group" +msgstr "Grup" + +#: lib/Gollem.php:770 +msgid "Home" +msgstr "Inici" + +#: manager.php:56 +msgid "Incorrect number of items." +msgstr "Número d'elements incorrecte." + +#: manager.php:126 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "S'ha copiat l'element al portapapers: %s" + +#: manager.php:128 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "S'ha tallat l'element al portapapers: %s" + +#: templates/login/login.html:67 +msgid "Language" +msgstr "Idioma" + +#: config/prefs.php.dist:81 +msgid "List folders first?" +msgstr "Llistar primer les carpetes?" + +#: login.php:303 +msgid "Login" +msgstr "Iniciar sessió" + +#: quota.php:62 +msgid "MB free" +msgstr "MB lliures" + +#: quota.php:62 +msgid "MB used" +msgstr "MB utilitzats" + +#: lib/Block/tree_menu.php:3 +msgid "Menu List" +msgstr "Llistat del menú" + +#: manager.php:445 +msgid "Modified" +msgstr "Modific." + +#: templates/prefs/columnselect.inc:44 +msgid "Move left" +msgstr "Desplaçar a l'esquerra " + +#: templates/prefs/columnselect.inc:45 +msgid "Move right" +msgstr "Desplaçar a la dreta" + +#: manager.php:432 +msgid "Name" +msgstr "Nom" + +#: templates/manager/manager.html:45 templates/manager/manager.html:59 +msgid "Name:" +msgstr "Nom:" + +#: manager.php:35 +msgid "New folder created: " +msgstr "Nova carpeta creada: " + +#: config/prefs.php.dist:91 +msgid "No" +msgstr "No" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "No s''ha trobat la quota." + +#: manager.php:255 +msgid "OK" +msgstr "Acceptar" + +#: manager.php:465 templates/manager/manager.html:7 +msgid "Owner" +msgstr "Propietari" + +#: config/credentials.php.dist:23 +msgid "Password" +msgstr "Contrasenya" + +#: clipboard.php:39 +msgid "Paste" +msgstr "Enganxar" + +#: manager.php:459 +msgid "Permission" +msgstr "Privilegis" + +#: selectlist.php:63 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Permís denegat a %s: %s" + +#: manager.php:200 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "No disposa de permisos per a la carpeta \"%s\": %s" + +#: lib/Gollem.php:783 +msgid "Permissions" +msgstr "Permisos" + +#: templates/login/javascript.inc:36 +msgid "Please provide your password." +msgstr "Introdueixi la seva contrasenya. " + +#: templates/login/javascript.inc:31 +msgid "Please provide your username." +msgstr "Introdueixi el seu nom d'usuari." + +#: templates/prefs/columnselect.html:5 +msgid "Please select a backend:" +msgstr "Seleccioni un motor:" + +#: templates/manager/javascript.inc:132 +msgid "Please select an item before this action." +msgstr "Seleccioni un element abans d'aquesta acció." + +#: templates/manager/javascript.inc:456 +msgid "Please specify at least one file to upload." +msgstr "Indiqui almenys un arxiu a carregar. " + +#: quota.php:18 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "Format de Quota" + +#: quota.php:61 +msgid "Quota Usage" +msgstr "Quota disponible" + +#: templates/manager/manager.html:12 +msgid "Read" +msgstr "Lectura" + +#: manager.php:262 +msgid "Refresh" +msgstr "Actualitzar" + +#: templates/prefs/columnselect.inc:43 +msgid "Remove column" +msgstr "Treure columna" + +#: templates/manager/manager.html:43 +msgid "Rename" +msgstr "Renombrar " + +#: templates/manager/manager.html:107 +msgid "Rename Items" +msgstr "Renombrar elements" + +#: lib/Gollem.php:734 lib/Gollem.php:739 +msgid "Root" +msgstr "Root" + +#: manager.php:253 +msgid "Save" +msgstr "Desar" + +#: templates/prefs/columnselect.html:30 +msgid "Selected Columns:" +msgstr "Columnes seleccionades: " + +#: templates/login/login.html:31 +msgid "Server" +msgstr "Servidor" + +#: config/prefs.php.dist:20 +msgid "Settings" +msgstr "Opcions" + +#: config/prefs.php.dist:30 +msgid "Show dotfiles?" +msgstr "Mostrar arxius el nom dels quals comenci per un punt? " + +#: manager.php:452 +msgid "Size" +msgstr "Mida" + +#: manager.php:478 +msgid "Sort Direction" +msgstr "Sentit de classificació" + +#: templates/manager/javascript.inc:202 +msgid "The following item(s) are folders: " +msgstr "Els següents elements són carpetes:" + +#: templates/manager/javascript.inc:198 +msgid "The following items will be permanently deleted: " +msgstr "S'eliminaran permanentment els següents elements: " + +#: templates/selectlist/javascript.inc:9 +msgid "The original opener window has been closed. Exiting." +msgstr "S'ha tancat la finestra d'origen. Sortint. " + +#: login.php:150 +msgid "There are no backends available for the current user." +msgstr "L'usuari actual no disposa de motors als quals connectar-se." + +#: selectlist.php:193 templates/manager/manager.html:128 +msgid "There are no files in this folder." +msgstr "No hi ha arxius en aquesta carpeta." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Per a eliminar elements del portapapers, seleccioni la casella al costat del " +"nom de l'arxiu i premi "Netejar"." + +#: templates/clipboard/clipboard.html:13 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Per a enganxar elements del portapapers a la carpeta actual, seleccioni la " +"casella al costat del nom de l'arxiu i premi "Enganxar"." + +#: manager.php:425 +msgid "Type" +msgstr "Tipus" + +#: permissions.php:42 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "No pot crear permisos anteriors: %s" + +#: lib/Gollem.php:739 lib/Gollem.php:749 +#, php-format +msgid "Up to %s" +msgstr "Pujar a %s" + +#: manager.php:274 +msgid "Upload File(s)" +msgstr "Carregar arxiu(s)" + +#: config/prefs.php.dist:12 config/prefs.php.dist:19 +msgid "User Interface" +msgstr "Interfície d'usuari " + +#: config/credentials.php.dist:18 +msgid "Username" +msgstr "Usuari" + +#: manager.php:269 +msgid "View Clipboard" +msgstr "Veure Portapapers" + +#: login.php:195 +#, php-format +msgid "Welcome to %s" +msgstr "Bevingut a %s" + +#: templates/manager/manager.html:18 +msgid "Write" +msgstr "Escriptura" + +#: config/prefs.php.dist:92 +msgid "Yes" +msgstr "Si" + +#: permissions.php:25 +msgid "You need at least one backend defined to set permissions." +msgstr "Per a definir privilegis necessita almenys definir un motor. " + +#: lib/MIME/Viewer/images.php:35 +msgid "Your browser does not support inline display of this image type" +msgstr "" +"El seu navegador no admet la visualització en línia d'aquest tipus d'imatge. " + +#: lib/Gollem.php:817 lib/Gollem.php:820 +msgid "_Change Server" +msgstr "_Canviar servidor" + +#: manager.php:215 selectlist.php:74 +msgid "folder" +msgstr "carpeta" + +#: manager.php:216 selectlist.php:75 +msgid "symlink" +msgstr "vincle simbòlic " Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/cs/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/cs/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/cs/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/cs/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/cs/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/cs/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,572 @@ +# Czech translations for Gollem package. +# Copyright 2004-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde package. +# Pavel Chytil , 2004. +# Michael Grafnetter , 2014 +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2014-10-14 14:39+0200\n" +"PO-Revision-Date: 2014-11-03 16:50+0100\n" +"Last-Translator: Michael Grafnetter \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\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" +"X-Generator: Poedit 1.6.10\n" + +#: manager.php:65 +#, fuzzy, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "'%s' přejmenován na '%s'" + +#: quota.php:50 +#, fuzzy, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB použito z %.2fMB povolených (%.2f%%)" + +#: manager.php:594 +#, fuzzy, php-format +msgid "%d item" +msgstr "%d položek" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d položek" + +#: edit.php:33 +#, fuzzy, php-format +msgid "%s successfully saved." +msgstr "%s byl úspěšně vložen." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s byl úspěšně vložen." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Nebyl povolen přístup k: %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, fuzzy, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Nebyl povolen přístup k: %s" + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Přidat" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Vše" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Jste si jistí, že chcete pokračovat?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Opravdu?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Vzestupně" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Zeptat se" + +#: lib/Application.php:136 +#, fuzzy +msgid "Backend" +msgstr "Backendy" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Backendy" + +#: templates/clipboard.html.php:12 +#, fuzzy +msgid "Below is the current contents of your clipboard." +msgstr "Nelze vložit položky do přechodné schránky." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Storno" + +#: manager.php:85 +#, fuzzy, php-format +msgid "Cannot chmod %s: %s" +msgstr "Nelze provést chmod %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Nelze kopírovat položky do přechodné schránky." + +#: manager.php:224 +#, fuzzy, php-format +msgid "Cannot create home directory: %s" +msgstr "Nemůže prohledat adresář: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Nelze vložit položky do přechodné schránky." + +#: manager.php:180 +#, fuzzy, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Nelze vložit '%s' (přechodná schránka vyprázdněna): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Změnit Adresář" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Změnit Práva" + +#: lib/Application.php:244 +#, fuzzy +msgid "Check Quota" +msgstr "Zkontrolovat" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Vybrat _Vše/Žádné" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Chmod proveden: " + +#: lib/Prefs/Special/Columnselect.php:47 +#, fuzzy +msgid "Choose which columns to display, and in what order:" +msgstr "Vybrat zobrazení sloupců ve správci souborů." + +#: clipboard.php:24 +#, fuzzy +msgid "Clear" +msgstr "Vyčistit vyhledávání" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +#, fuzzy +msgid "Clipboard" +msgstr "Kopírovat do schránky" + +#: quota.php:25 +msgid "Close" +msgstr "Zavřít" + +#: lib/Prefs/Special/Columnselect.php:51 +#, fuzzy +msgid "Columns that will not be displayed:" +msgstr "Zobrazené kontakty:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopírovat" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Vytvořit Adresář" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" + +#: templates/clipboard.html.php:22 +#, fuzzy +msgid "Current directory:" +msgstr "Aktuální podmínka" + +#: clipboard.php:26 templates/manager.html.php:65 +#, fuzzy +msgid "Cut" +msgstr "Počet" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Implicitní třídící kritéria:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Implicitní směr třídění:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Smazat" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Smazat Adresáře rekurzivně?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Sestupně" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Provedeno" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Download %s" + +#: templates/quota.html.php:7 +#, fuzzy +msgid "ERROR:" +msgstr "CHYBA: %s" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Upravit %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Provést" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Soubor" + +#: config/prefs.php:87 +#, fuzzy +msgid "File Actions" +msgstr "Akce složek" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Zobrazit Soubor" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Čas Změny Souboru" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Název Souboru" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Velikost Souboru" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Typ Souboru" + +#: config/prefs.php:88 +#, fuzzy +msgid "File action settings." +msgstr "Doplňující Nastavení" + +#: manager.php:100 +msgid "File deleted: " +msgstr "Soubor smazán: " + +#: config/prefs.php:16 +#, fuzzy +msgid "File display preferences." +msgstr "Nastavení zobrazení" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Soubor přijat: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "" + +#: manager.php:341 +msgid "Filter" +msgstr "Filtr" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Adresář odstraněn: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "" + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Skupina" + +#: lib/Api.php:413 +#, fuzzy, php-format +msgid "Invalid backend requested: %s" +msgstr "Nesprávný adresář: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Položka zkopírována do přechodné schránky: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Položka přesunuta do přechodné schránky: %s" + +#: config/prefs.php:78 +#, fuzzy +msgid "Items per page" +msgstr "Počet položek na stránku" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Ukázat nejdříve seznam adresářů?" + +#: manager.php:540 +msgid "Modified" +msgstr "Změněno" + +#: manager.php:514 +msgid "Name" +msgstr "Název" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Založen nový adresář: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Ne" + +#: templates/quota.html.php:12 +#, fuzzy +msgid "No quota found." +msgstr "Poznámka nebyla nalezena." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Vlastník" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Vložit" + +#: manager.php:556 +msgid "Permission" +msgstr "Práva" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Nepovolený přístup k %s: %s" + +#: manager.php:217 +#, fuzzy, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Nepovolený přístup k %s: %s" + +#: lib/Api.php:421 +#, fuzzy +msgid "Permission denied to this backend." +msgstr "Nepovolený přístup k %s: %s" + +#: manager.php:612 +msgid "Permissions" +msgstr "Práva" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Prosím vyberte položku před provedeními tohoto úkonu." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Prosím zadejte alespoň jeden soubor pro upload." + +#: quota.php:58 templates/quota.html.php:2 +#, fuzzy +msgid "Quota Display" +msgstr "Zobrazit" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Čtecí" + +#: manager.php:287 +msgid "Refresh" +msgstr "Obnovit" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Přejmenovat" + +#: lib/Api.php:206 +#, fuzzy +msgid "Renaming across backends is not supported." +msgstr "Tato akce není podporována." + +#: lib/Api.php:198 +#, fuzzy +msgid "Renaming of backends is not allowed." +msgstr "Čtení kontaktů není možné." + +#: templates/edit.html.php:14 +#, fuzzy +msgid "Reset" +msgstr "" +"#-#-#-#-# horde.po (Horde 3.0.9) #-#-#-#-#\n" +"Smazat\n" +"#-#-#-#-# imp.po (IMP 4.1.4) #-#-#-#-#\n" +"Vynulovat\n" +"#-#-#-#-# nag.po (Nag 2.0-cvs) #-#-#-#-#\n" +"Smazat" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Uložit" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Vybrat vše" + +#: clipboard.php:47 +#, fuzzy +msgid "Select None" +msgstr "Vybrat kontakt" + +#: lib/Prefs/Special/Columnselect.php:49 +#, fuzzy +msgid "Select a backend:" +msgstr "Prosim vyberte backend:" + +#: manager.php:301 manager.php:420 +#, fuzzy +msgid "Share Folder" +msgstr "Změnit Adresář" + +#: manager.php:420 +#, fuzzy +msgid "Shared Folder" +msgstr "Změnit Adresář" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Zobrazit soubory začínající tečkou?" + +#: manager.php:548 +msgid "Size" +msgstr "Velikost" + +#: lib/Application.php:215 +#, fuzzy +msgid "Start Folder" +msgstr "Začíná V" + +#: lib/Api.php:235 +#, fuzzy +msgid "The application folder can not be deleted." +msgstr "Schránka \"%s\" nemůže být smazána." + +#: manager.php:609 +#, fuzzy +msgid "The following item(s) are folders:" +msgstr "Následující položka(y) je/jsou adresář(e): " + +#: manager.php:607 +#, fuzzy +msgid "The following items will be permanently deleted:" +msgstr "Následujíci položky budou permanentně vymazány: " + +#: selectlist.php:174 +#, fuzzy +msgid "The original opener window has been closed. Exiting." +msgstr "Vytvářená zpráva byla zavřena." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Tento adresář neobsahuje žádné soubory." + +#: lib/Prefs/Special/Columnselect.php:48 +#, fuzzy +msgid "These columns will display in this order:" +msgstr "Vybrat zobrazení sloupců ve správci souborů." + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" + +#: manager.php:506 +msgid "Type" +msgstr "Typ" + +#: lib/Api.php:417 +#, fuzzy +msgid "Unable to create Gollem session" +msgstr "Nelze se připojit na SQL server." + +#: permissions.php:40 +#, fuzzy, php-format +msgid "Unable to create backend permission: %s" +msgstr "Nelze smazat \"%s\": %s." + +#: manager.php:102 +#, fuzzy, php-format +msgid "Unable to delete file %s: %s" +msgstr "Nelze smazat \"%s\": %s." + +#: manager.php:94 +#, fuzzy, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Nelze smazat \"%s\": %s." + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "Do %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Uploadovat Soubor(y)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Uživatelské Rozhraní" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Zapsat" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Ano" + +#: share.php:29 +#, fuzzy +msgid "You are not allowed to share this folder" +msgstr "Nemáte oprávnění smazat tento adresář." + +#: permissions.php:20 +#, fuzzy +msgid "You need at least one backend defined to set permissions." +msgstr "Máte zakázané požadované oprávnění." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Práva" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/da/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/da/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/da/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/da/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/da/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/da/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,539 @@ +# Danish translations for Gollem package +# Danske oversættelser for pakke Gollem. +# Copyright 2006-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Brian Truelsen , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H5 (3.0.1)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-29 11:44+0100\n" +"PO-Revision-Date: 2014-01-18 18:46+0100\n" +"Last-Translator: Erling Preben Hansen \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" er omdøbt til \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d enheder" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d elementer" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s er Gemt." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s er indsat." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Adgang nægtet til %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Adgang til mappe \"%s\" nægtet." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Tilføj" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Alle" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Er du sikker, at du vil fortsætte?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Er du sikker?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Stigende" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Spørg" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Backend" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Backend'er" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Nedenfor ses det aktuelle indhold af din udklipsholder." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Annuller" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Kan ikke udføre chmod %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Kan ikke kopiere element til udklipsholder." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Kan ikke oprette hjemme mappen: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Kan ikke klippe elementer til udklipsholder." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Kan ikke indsætte \"%s\" (filen er fjernet fra udklipsholderen): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Skift mappe" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Redigér Tilladelser" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Tjek kvote" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Marker _Alle / ingen" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Chmod udført: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Vælg hvilke kolonner der skal vises i filhåndteringen:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Rens" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Udklipsholder" + +#: quota.php:25 +msgid "Close" +msgstr "Luk" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Kolonner der ikke bliver vist:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopier" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Opret ny mappe" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Oprettede blanke rettigheder for \"%s\". Du skal eksplicit give adgang til " +"denne backend nu." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Aktuel mappe:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Klip" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Standard sorteringskriterie:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Standard sorteringsretning:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Slet" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Slet mapper rekursivt?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Faldende" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Færdig" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Hent %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "FEJL:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Redigér %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Udfør" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Fil" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Fil Handlinger" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Fil visning" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Fil ændringstidspunkt" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Filnavn" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Filstørrelse" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Filtype" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Fil handlinger indstillinger." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Fil slettet: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Fil visnings indstillinger." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Fil modtaget: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Filer skal lagres i en VFS backend." + +#: manager.php:341 +msgid "Filter" +msgstr "Filtre" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Mappe fjernet: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Mapper skal oprettes i en VFS backend." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Gruppe" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Ugyldig backend: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Element kopieret til udklipsholder: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Element klippet til udklipsholder: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Enheder pr side" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "List mapper først?" + +#: manager.php:540 +msgid "Modified" +msgstr "Ændret" + +#: manager.php:514 +msgid "Name" +msgstr "Navn" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Ny mappe oprettet: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Nej" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Ingen kvote fundet." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Ejer" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Indsæt" + +#: manager.php:556 +msgid "Permission" +msgstr "Tilladelse" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Tilladelse til %s nægtet: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Tilladelse til mappe \"%s\" nægtet: %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Tilladelse nægtet til denne backend." + +#: manager.php:612 +msgid "Permissions" +msgstr "Tilladelser" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Vælg et element før denne handling." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Specificér mindst én fil, som skal lægges op." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Kvote oversigt" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Læs" + +#: manager.php:287 +msgid "Refresh" +msgstr "Opdater" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Omdøb" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Omdøbning mellem backends er ikke undeerstøttet." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Omdøbning af backends er ikke tilladt." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Nulstil" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Gem" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Vælg alle" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Vælg ingen" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Vælg en backend:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Del mappe" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Delte mapper" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Vis skjulte filer?" + +#: manager.php:548 +msgid "Size" +msgstr "Størrelse" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Start mappe" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Rod mappen kan ikke slettes." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Følgende element(er) er mapper: " + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Følgende elementer vil blive slettet permanent: " + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Vinduet, der har åbnet dette vindue, er blevet lukket. Afslutter." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Denne mappe indeholder ingen filer." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Disse kolonner vil blive vist i denne orden:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"For at slette elementer fra udklipsholderen skal du markere kassen ved siden " +"af filnavnet og klikke 'Visk ud'." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"For at indsætte elementer fra udklipsholderen til det aktuelle katalog skal " +"du markere kassen ved siden af filnavnet, og klikke 'Indsæt'." + +#: manager.php:506 +msgid "Type" +msgstr "Type" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Kan ikke oprette en Gollem session" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Kan ikke oprette backend-tilladelser: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Kan ikke slette fiken %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Kan ikke slette mappen %s: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "Op til %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Læg fil(er) op" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Brugergrænseflade" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Skriv" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Ja" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Du har ikke tilladelse til at dele denne mappe" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Du har brug for at have mindst én backend defineret for at kunne indstille " +"tilladelser." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "Tilladelser _P" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/de/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/de/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/de/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/de/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,82 @@ + + + + + Dateimanager: Aktionen + Verzeichnisse erstellen + Um einen Ordner im aktuellen Verzeichnis zu erstellen, klicken Sie + auf das Symbol "Verzeichnis erstellen". + + Löschen, Ausschneiden, Kopieren und Einfügen von + Dateien + Um Dateien zu löschen, auszuschneiden oder zu kopieren, muss + mindestens eine Datei ausgewählt sein. Nachdem eine oder mehrere Dateien + mit Hilfe der Checkboxen links ausgewählt wurden, können Sie im Menüpunkt + "Aktionen:" Kopieren, Ausschneiden, Löschen oder Umbenennen + auswählen. Wenn Sie Kopieren oder Ausschneiden gewählt haben, haben Sie + nun die Möglichkeit diese Dateien irgendwo im Dateimanager einzufügen. + Navigieren Sie in das Verzeichnis, in dem die Dateien eingefügt werden + sollen und wählen Sie unter "Aktionen:" Einfügen. Die Dateien werden dann + dorthin verschoben oder kopiert. + + Löschen, Ausschneiden, Kopieren und Einfügen von + Verzeichnissen + Standardmäßig können nur Verzeichnisse gelöscht werden, die leer + sind. Sie können aber das Löschen von Verzeichnissen mitsamt ihres Inhalts + (rekursives Löschen) aktivieren. Wenn Sie versuchen, ein Verzeichnis zu + löschen, das nicht leer ist, ohne diese Funktion einzuschalten, wird das + Löschen abgebrochen und Sie erhalten eine Fehlermeldung. Um das Löschen + von nicht-leeren Verzeichnissen einzuschalten, klicken Sie auf + "Einstellungen", noch einmal auf "Einstellungen" und wählen Sie "Ja" in + der Auswahlliste. + Um Verzeichnisse zu löschen, auszuschneiden oder zu kopieren, muss + mindestens ein Verzeichnis ausgewählt sein. Nachdem ein oder mehrere + Verzeichnisse mit Hilfe der Checkboxen links ausgewählt wurden, können Sie + im Menüpunkt "Aktionen:" Kopieren, Ausschneiden, Löschen oder Umbenennen + auswählen. Wenn Sie Kopieren oder Ausschneiden gewählt haben, haben Sie + nun die Möglichkeit diese Verzeichnisse irgendwo im Dateimanager + einzufügen. Navigieren Sie in das Verzeichnis, in dem die Verzeichnisse + eingefügt werden sollen und wählen Sie unter "Aktionen:" Einfügen. Die + Verzeichnisse werden dann dorthin verschoben oder kopiert. + + Mit der Zwischenablage arbeiten + Wenn Sie eine Datei oder ein Verzeichnis kopiert oder ausgeschnitten + haben, finden Sie dieses Element in der Zwischenablage. Dateien oder + Verzeichnisse, die ausgeschnitten oder kopiert wurden, können nicht mehr + über eine Checkbox ausgewählt werden. Eine fehlende Checkbox zeigt an, + dass sich eine Datei oder ein Verzeichnis in der Zwischenablage + befindet. Durch Klick auf das Symbol "Zwischenablage anzeigen", erhält man + eine Liste der Elemente, die kopiert oder ausgeschnitten wurden. Dieses + Symbol erscheint jedoch erst, wenn Dateien oder Verzeichnisse kopiert oder + ausgeschnitten wurden. Von dort aus kann man diese Dateien oder + Verzeichnisse in das aktuelle Verzeichnis einfügen. Wählen Sie dazu + einfach das entsprechende Element aus und klicken auf "Einfügen". Um ein + Element aus der Zwischenablage zu entfernen, wählen Sie es aus und klicken + dann auf "Entfernen". + + + + Dateimanager: Hochladen + Dateien hochladen + Um Dateien hochzuladen, wechseln Sie in das entsprechende + Verzeichnis, in das die Dateien geladen werden sollen. Wenn Sie sich im + entsprechenden Verzeichnis befinden, klicken Sie auf + "Durchsuchen...". Damit öffnen Sie einen Dialog, in dem Sie eine Datei + auswählen können, die hochgeladen werden soll. Anschließend können Sie + noch weitere Dateien auswählen, der Dateimanager fügt automatische neue + "Durschsuchen..."-Felder unter den bereits verwendeten hinzu. Wenn Sie + fertig sind, klicken Sie auf "Datei(en) hochladen", um die Datei(en) im + aktuellen Verzeichnis zu speichern. + + + + Einträge sortieren + Einträge sortieren + Wenn Sie sich eine Liste von Dateien oder Verzeichnissen ansehen, + können Sie diese nach verschiedenen Kriterien sortieren. Klicken Sie dazu + auf die entsprechende Spaltenüberschrift, nach der sortiert werden + soll. Anschließend wird die Liste aktualisiert und neu sortiert + angezeigt. Um zwischen aufsteigender und absteigender Sortierung zu + wechseln, klicken Sie erneut auf die Spaltenüberschrift. + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/de/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/de/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/de/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/de/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/de/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/de/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,544 @@ +# German translations for Gollem. +# Copyright 2001-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Jan Schneider , 2001-2014. +# +# item: Element +# directory/folder: Verzeichnis +msgid "" +msgstr "" +"Project-Id-Version: Gollem H5 (3.0-git)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2015-12-28 17:03+0100\n" +"PO-Revision-Date: 2013-01-29 11:58+0100\n" +"Last-Translator: Jan Schneider \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" nach \"%s\" umbenannt" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d Element" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d Elemente" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s erfolgreich gespeichert." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s wurde erfolgreich eingefügt." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Zugriff auf %s verweigert" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Zugriff auf Verzeichnis \"%s\" verweigert." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Hinzufügen" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Alle" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Sind Sie sicher, dass Sie fortfahren möchten?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Sind Sie sicher?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Aufsteigend" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Nachfragen" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Backend" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Backends" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Unten sehen Sie den aktuellen Inhalt der Zwischenablage." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Abbrechen" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Die Zugriffsrechte für \"%s\" konnten nicht geändert werden: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Elemente konnten nicht in die Zwischenablage kopiert werden." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Das Heimverzeichnis kann nicht erstellt werden: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Elemente konnten nicht in die Zwischenablage verschoben werden." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "" +"\"%s\" kann nicht eingefügt werden (Datei aus Zwischenablage entfernt): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Verzeichnis wechseln" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Rechte Ändern" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Speicherplatz überprüfen" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "_Alle/Keine auswählen" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Zugriffsrechte geändert: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "" +"Wählen Sie aus, welche Spalten in welcher Reihenfolge angezeigt werden " +"sollen:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Entfernen" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Zwischenablage" + +#: quota.php:25 +msgid "Close" +msgstr "Schließen" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Spalten die nicht angezeigt werden:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopieren" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Verzeichnis erstellen" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Es sind leere Rechte für \"%s\" angelegt worden. Sie müssen für dieses " +"Backend jetzt ausdrücklich Rechte festlegen." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Aktuelles Verzeichnis:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Ausschneiden" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Sortierreihenfolge:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Sortierrichtung:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Löschen" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Verzeichnisse rekursiv löschen?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Absteigend" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Fertig" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "%s Herunterladen" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "FEHLER:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "%s Bearbeiten" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Ausführen" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Datei" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Dateiaktionen" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Dateianzeige" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Dateiänderung" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Dateiname" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Dateigröße" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Dateityp" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Dateiaktionen-Einstellungen" + +#: manager.php:100 +msgid "File deleted: " +msgstr "Datei gelöscht: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Dateianzeige-Einstellungen" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Datei hochgeladen: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Dateien müssen innerhalb eines VFS-Backends gespeichert werden." + +#: manager.php:341 +msgid "Filter" +msgstr "Filter" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Verzeichnis gelöscht: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Ordner müssen innerhalb eines VFS-Backends angelegt werden." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Gruppe" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Ungültiges Backend: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Element in Zwischenablage kopiert: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Element in Zwischenablage verschoben: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Elemente pro Seite" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Verzeichnisse zuerst anzeigen?" + +#: manager.php:540 +msgid "Modified" +msgstr "Geändert" + +#: manager.php:514 +msgid "Name" +msgstr "Name" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Neues Verzeichnis erstellt: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Nein" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Keine Speicherplatzbegrenzung gefunden." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Besitzer" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Einfügen" + +#: manager.php:556 +msgid "Permission" +msgstr "Rechte" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Zugriff auf %s verweigert: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Zugriff auf Verzeichnis \"%s\" verweigert: %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Zugriff auf dieses Backend verweigert." + +#: manager.php:612 +msgid "Permissions" +msgstr "Rechte" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Bitte wählen Sie ein Element aus, bevor Sie diese Aktion durchführen." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Bitte geben Sie mindestens eine Datei zum Hochladen an." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Speicherplatz" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Lesen" + +#: manager.php:287 +msgid "Refresh" +msgstr "Aktualisieren" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Umbenennen" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Umbenennen über verschiedene Backends hinweg wird nicht unterstützt." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Das Umbenennen von Backends ist nicht erlaubt." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Zurücksetzen" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Speichern" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Alle auswählen" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Keine auswählen" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Backend auswählen:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Ordner teilen" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Gemeinsame Ordner" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Versteckte Dateien anzeigen?" + +#: manager.php:548 +msgid "Size" +msgstr "Größe" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Startordner" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Der Anwendungsordner kann nicht gelöscht werden." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Die folgenden Elemente sind Verzeichnisse:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Die folgenden Elemente werden endgültig gelöscht:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Das Ursprungs-Fenster ist geschlossen worden. Abbruch." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Dieses Verzeichnis ist leer." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Diese Spalten werden in der folgenden Reihenfolge angezeigt:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Um Elemente aus der Zwischenablage zu entfernen, markieren Sie das Kästchen " +"neben dem Dateinamen und klicken Sie auf "Entfernen"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Um Elemente aus der Zwischenablage in das aktuelle Verzeichnis einzufügen, " +"markieren Sie das Kästchen neben dem Dateinamen und klicken Sie auf "" +"Einfügen"." + +#: manager.php:506 +msgid "Type" +msgstr "Typ" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Gollemsession konnte nicht gestartet werden" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Die Backendrechte konnten nicht erstellt werden: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Die Datei \"%s\" konnte nicht gelöscht werden: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Das Verzeichnis \"%s\" konnte nicht gelöscht werden: %s" + +#: lib/Gollem.php:688 lib/Gollem.php:698 +#, php-format +msgid "Up to %s" +msgstr "Hoch nach %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Datei(en) Hochladen" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Benutzeroberfläche" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Schreiben" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Ja" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Sie dürfen diesen Ordner nicht teilen" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Sie müssen mindestens ein Backend konfiguriert haben, bevor Sie Rechte " +"festlegen können." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Rechte" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/el/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/el/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/el/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/el/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/el/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/el/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,542 @@ +# Gollem Greek translation. +# Copyright 2012-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Giorgos Strimpakos , 2012. +# Terpou Maria , 2015 +# Drakopoulos Takis , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Gollem H5 (3.0.0-git)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-29 11:44+0100\n" +"PO-Revision-Date: 2016-02-29 12:27+0100\n" +"Last-Translator: Antonis Limperis \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.7.6\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" μετονομάστηκε σε \"%s\"." + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d αντικείμενο" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d αντικείμενα" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "Το \"%s\" αποθηκεύθηκε με επιτυχία." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "το \"%s\" επικολλήθηκε επιτυχώς." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Δεν επιτρέπεται η πρόσβαση στο %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Δεν επιτρέπεται η πρόσβαση στον φάκελο \" %s\"" + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Προσθήκη" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Όλα" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Είστε σίγουροι ότι θέλετε να συνεχίσετε;" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Είστε σίγουρος;" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Αύξουσα" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Ερώτηση" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Υποδομή" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Υποδομές" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Ακολουθούν τα τρέχοντα περιεχόμενα του προχείρου" + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Άκυρο" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Δεν είναι δυνατή η αλλαγή των ιδιοτήτων %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Δεν είναι δυνατή η αντιγραφή στοιχείων στο πρόχειρο." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Δεν είναι δυνατή η δημιουργία του κυρίου καταλόγου: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Δεν δυνατή η αποκοπή και μεταφορά αντικειμένων στο πρόχειρο." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "" +"Δεν μπορείτε γίνει επικόλληση του \"% s\" (το αρχείο διαγραφεί από το " +"πρόχειρο):% s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Αλλαγή Φακέλου" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Αλλαγή δικαιωμάτων" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Έλεγχος Κατειλημμένου Χώρου(Quota)" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "(Απ)Επιλογή όλων" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Ολοκληρώθηκε η αλλαγή των ιδιοτήτων:" + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Επιλέξτε ποιες στήλες θα εμφανίζονται και με ποια σειρά:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Καθαρισμός" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Πρόχειρο" + +#: quota.php:25 +msgid "Close" +msgstr "Κλείσιμο" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Στήλες που δεν θα εμφανίζονται:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Αντιγραφή" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Δημιουργία Φακέλου" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Δημιουργήθηκαν κενά δικαιώματα για το \"%s\". Θα πρέπει να αποδώσετε ρητά " +"την πρόσβαση σε αυτό το υποδομή τώρα." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Τρέχων κατάλογος:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Αποκοπή" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Προεπιλεγμένο κριτήριο ταξινόμησης:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Προεπιλεγμένη κατεύθυνση ταξινόμησης:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Διαγραφή" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Διαγραφή φακέλων αναδρομικά;" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Φθίνουσα" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "ΟΚ" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Κατέβασμα %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "Σφάλμα:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Επεξεργασία %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Εκτέλεση" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Αρχείο" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Ενέργειες Αρχείων" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Εμφάνιση Αρχείου" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Ημερομηνία Τροποποίησης Αρχείου" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Όνομα Αρχείου" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Μέγεθος αρχείου" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Τύπος Αρχειου" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Ρυθμίσεις ενεργειών αρχείων." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Διαγραμμένο Αρχείο::" + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Επιλογές εμφάνισης αρχείου." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Παραλαβή αρχείων: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Τα αρχεία πρέπει να καταχωρηθούν σε μια υποδομή VFS." + +#: manager.php:341 +msgid "Filter" +msgstr "Φίλτρο" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Ο φάκελος διαγράφηκε." + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Τα φάκελοι πρέπει να δημιουργηθούν σε μια υποδομή VFS." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Ομάδα" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Μη έγκυρη αίτηση στην υποδομή: %s." + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Στοιχείο που αντιγράφηκε στο πρόχειρο: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Στοιχείο που αποκόπηκε στο πρόχειρο:% s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Στοιχεία ανά σελίδα" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Εμφάνιση Πρώτα της Λίστας των φακέλων;" + +#: manager.php:540 +msgid "Modified" +msgstr "Τροποποιήθηκε" + +#: manager.php:514 +msgid "Name" +msgstr "Όνομα" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Ο φάκελος δημιουργήθηκε:" + +#: config/prefs.php:96 +msgid "No" +msgstr "Όχι" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Δεν υπάρχουν δεδομένα κατάληψης χώρου (quota)" + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Ιδιοκτήτης" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Επικόλληση" + +#: manager.php:556 +msgid "Permission" +msgstr "Δικαίωμα" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Δεν επιτρέπεται η πρόσβαση στο %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Δεν επιτρέπεται η πρόσβαση στον φάκελο \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Δεν επιτρέπεται η πρόσβαση στην υποδομή (backed) αυτή." + +#: manager.php:612 +msgid "Permissions" +msgstr "Εξουσιοδοτήσεις" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Παρακαλώ επιλέξτε ένα στοιχείο πριν από αυτή την ενέργεια." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Παρακαλώ να ορίσετε τουλάχιστον ένα αρχείο για μεταφόρτωση." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Εμφάνιση Κατάληψης χώρου" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Ανάγνωση" + +#: manager.php:287 +msgid "Refresh" +msgstr "Ανανέωση" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Αλλαγή ονόματος" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Η μετονομασία μεταξύ διαφορετικών υποδομών δεν υποστηρίζεται." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Δεν επιτρέπεται η μετονομασία των υποδομών." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Επαναφορά" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Αποθήκευση" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Επιλογή όλων" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Καμία Eπιλογή" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Επιλέξτε μια υποδομή:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Διαμοιρασμός Φακέλου" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Κοινόχρηστoι Φάκελοι" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Εμφάνιση κρυφών αρχείων (dotfiles);" + +#: manager.php:548 +msgid "Size" +msgstr "Μέγεθος" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Φάκελος Εκκίνησης" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Ο φάκελος εφαρμογής δεν μπορεί να διαγραφεί." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Το ακόλουθο στοιχεία είναι φάκελοι:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Τα ακόλουθα στοιχεία θα διαγραφούν οριστικά:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Το αρχικό παράθυρο έχει κλείσει. Έξοδος." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Δεν υπάρχουν αρχεία σε αυτόν το φάκελο." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Οι στήλες θα εμφανίζονται με αυτή τη σειρά:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Για να διαγράψετε αντικείμενα από το πρόχειρο, επιλέξτε το πλαίσιο δίπλα στο " +"όνομα του αρχείου και πατήστε στο \"Καθαρισμός\"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Για να επικολλήσετε στοιχεία από το πρόχειρο στον τρέχοντα κατάλογο, " +"επιλέξτε το πλαίσιο δίπλα στο όνομα του αρχείου και πατήστε στο \"Επικόλληση" +"\";." + +#: manager.php:506 +msgid "Type" +msgstr "Τύπος" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Αδύνατη η δημιουργία συνόδου" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Αδύνατη η δημιουργία δικαιωμάτων υποδομής: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Δεν ήταν δυνατή η διαγραφή του αρχείου %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Δεν ήταν δυνατή η διαγραφή του φακέλου \"%s: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "έως το %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Αποστολή Αρχείου(ων)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Περιβάλλον Χρήστη" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Συγγραφή" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Ναι" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Δεν επιτρέπεται ο διαμοιρασμός του φακέλου." + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Χρειάζεστε τουλάχιστον μια ορισμένη υποδομή για να ρυθμίσετε τα δικαιώματα." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "Εξουσιοδοτήσεις" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/en/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/en/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/en/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/en/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,69 @@ + + + + + File Manager: Actions + Creating Folders + + To create a folder in the current directory, simply choose Create Folder from the Actions drop down box. + + Delete, cut, copy and paste files + + In order to delete, cut or copy a file or files, you need to select at least one file. + After you select one or more files using the checkboxes to the left of the item, select either Cut Items, Copy Items or + Delete Items from the Actions drop down box. If you selected Cut Items or Copy Items, you now have the option to + paste those files elsewhere in the File Manager. Navigate to the location that you wish to paste the items, then select + Paste Items from the Actions drop down box. The items will now be either moved (Cut Items) or copied (Copy Items) to + the location that you chose. + + Delete, cut, copy and paste directories + + By default, you can only delete directories that are empty, however you can enable the deletion of non-empty directories + (recursive delete). If you try to delete a non-empty directory without enabling this feature, deletion will fail with + an error. To enable the deleting non-empty directories, click on Preferences, File Actions and choose Yes from the drop down box + for the Delete Folders Recursively preference. This will enable the recursive delete preference. + + In order to delete, cut or copy a directory or directories, you need to select at least one directory. + After you select one or more directories using the checkboxes to the left of the item, select either Cut Items, Copy Items + or Delete Items from the Actions drop down box. If you selected Cut Items or Copy Items, you now have the option to + paste those directories elsewhere in the File Manager. Navigate to the location that you wish to paste the items, then + select Paste Items from the Actions drop down box. The items will now either be moved (Cut Items) or copied (Copy Items) + to the location that you chose. + + Working with the Clipboard + + Once you copy or cut a file or directory, it is placed in the clipboard. You can view the contents of the clipboard by clicking + on the clipboard icon, which is located above the directory/folder listing and to the right of the refresh icon. This icon is not + present unless there are items in the clipboard. Items that are cut or copied will not have a checkbox to the left of them, which + means they are in the clipboard. Once you click on the clipboard viewer, you will see a list of items that you have copied or cut. + From the clipboard viewer, you can paste these items to the current directory, which is displayed above the list of items. + Simply check the items that you want to paste, then click paste. These items will be pasted into the current directory and be removed + from the clipboard. You will be returned to the current directory after the paste is complete. If you would like to remove an item + from the clipboard, simply check the items and click clear. These items will then be removed from the clipboard and you will be returned + to the current directory. + + + + + File Manager: Uploading + Uploading Files + + To upload a file or files, navigate to the directory on the File Manager that you wish to upload the files to. This is + known as your current directory. Once you are in the proper directory on the File Manager, click on the Browse button. + This will display a File Upload window. Once this window is open, navigate to the file which you wish to upload, select + it and click OK. You can upload multiple files at once. The File Manager will automatically add another + Browse button after each file you select. Once you have selected all of the files that you wish to upload, click the + Upload File(s) button and the file or files that you selected will be uploaded to your current directory on the File Manager. + + + + + Sorting Entries + Sorting Entries + + When viewing a list of files or directories, you can sort them by any column. To do this, click on the appropriate + column heading that you wish to sort by, and the list will refreshed, sorted by the column you selected. To switch + columns between ascending and descending order, click on the arrow icon in the column heading. + + + diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/es/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/es/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/es/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/es/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,41 @@ + + + + + Administrador de archivos: Acciones + Creación de carpetas + + Para crear una carpeta en el directorio actual, elija Crear carpeta en la barra de menú. + + Eliminar, cortar, copiar y pegar archivos + + Para eliminar, cortar o copiar uno o varios archivos, primero tiene que seleccionar al menos uno. Tras seleccionar uno o más archivos mediante las casillas a la izquierda de los elementos, seleccione bien Cortar elementos, Copiar elementos o Eliminar elementos del menú desplegable Acciones. Si selecciona Cortar o Copiar elementos tendrá la posibilidad de pegar esos archivos en cualquier lugar del Gestor de archivos. Navegue hasta la ubicación en la que quiera pegar los elementos y seleccione Pegar elementos del menú desplegable Acciones. Los elementos se trasladarán (Cortar elementos) o se copiarán (Copiar elementos) a la ubicación que haya elegido. + + Eliminar, cortar, copiar y pegar carpetas + + Por omisión, sólo se pueden eliminar las carpetas que estén vacías, sin embargo se puede activar la eliminación de carpetas que no estén vacías (borrado recursivo). Si intenta eliminar una carpeta que no esté vacía sin activar esta opción, la eliminación fallará y se mostrará un mensaje de error. Para activar la eliminación de carpetas que no estén vacías, pulse Opciones, Configuración y elija Sí en el menú desplegable de la opción ¿Eliminar carpetas de forma recursiva?. Ésto activará la opción de eliminación recursiva. + + Para eliminar, cortar o copiar una o varias carpetas, tiene que seleccionar al menos una. Tras seleccionar una o más carpetas mediante las casillas a la izquierda de los elementos, seleccione bien Cortar elementos, Copiar elementos o Eliminar elementos del menú desplegable Acciones. Si selecciona Cortar o Copiar elementos tendrá la posibilidad de pegar esas carpetas en cualquier lugar del Gestor de archivos. Navegue hasta la ubicación en la que quiera pegar los elementos y seleccione Pegar elementos del menú desplegable Acciones. Los elementos se trasladarán (Cortar elementos) o se copiarán (Copiar elementos) a la ubicación que haya elegido. + + Trabajando con el Portapapeles + + Una vez halla copiado o cortado un archivo o carpeta, se situará en el portapapeles. Puede ver el contenido del portapapeles pulsando su icono, que está sobre el listado de carpetas a la derecha del icono Actualizar El icono no se mostrará a menos que exista algún elemento en el portapapeles. Los elementos cortados o copiados no dispondrán de una casilla a su izquierda, lo que significa que están en el portapapeles. Cuando pulse en el icono del portapapeles, verá un listado de los elementos que haya copiado o cortado. Desde el portapapeles puede pegar estos elementos en el directorio actual, que se muestra sobre la lista de elementos. Seleccione los elementos que desee pegar y pulse pegar. Esos elementos se pegarán en la carpeta actual y se eliminarán del portapapeles. Tras completar la operación de pegado, regresará a la carpeta actual. Si deseara eliminar un elemento del portapapeles, sólo tiene que seleccionarlo y pulsar Limpiar. Esos elementos se eliminarán del portapapeles se mostrará de nuevo la carpeta actual. + + + + + Administrador de archivos: Carga + Carga de archivos + + Para cargar uno o varios archivos, navegue hasta la carpeta del Administrador de archivos en la que desee cargarlos. Se le conoce como la carpeta actual. Una vez en la carpeta adecuada del Administrador de archivos, pulse el botón Examinar. Se abrirá una ventana de Carga de Archivos. Con dicha ventana abierta, navegue hasta el archivo que desee cargar, selecciónelo y pulse Aceptar/Abrir. Puede cargar varios archivos a la vez. El Administrador de archivos añadirá automáticamente otro botón Examinar tras cada archivo que seleccione. Una vez haya seleccionado todos los archivos que desee cargar, pulse el botón Cargar archivo y el archivo o archivos que había seleccionado se cargarán en la carpeta actual del Administrador de archivos. + + + + + Ordenación de entradas + Ordenación de entradas + + Al ver un listado de archivos o carpetas, puede ordenarlo por cualquier columna. Para ello, pulse la cabecera de la columna por la que desee realizar la ordenación y el listado se actualizará, ordenado por la columna que haya seleccionado. Para conmutar entre ordenación ascendente o descendente, pulse en el icono de flecha de la cabecera de la columna. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/es/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/es/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/es/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/es/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/es/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/es/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,537 @@ +# Spanish translations for Gollem H5 package. +# Copyright (C) 2014 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Automatically generated, 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H5 (3.0.0-git)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-29 11:44+0100\n" +"PO-Revision-Date: 2014-06-16 09:05+0100\n" +"Last-Translator: Manuel P. Ayala , Juan C. Blanco " +"\n" +"Language-Team: i18n@lists.horde.org\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" se ha renombrado como \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d elemento" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d elementos" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s guardado correctamente." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s se ha pegado correctamente." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Acceso denegado a %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Se ha denegado el acceso a la carpeta \"%s\"." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Añadir" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Todos" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "¿Seguro que desea continuar?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "¿Está seguro?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Ascendente" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Consultar" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Soporte" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Soportes" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "A continuación se muestra el contenido actual del Portapapeles." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Cancelar" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "No se puede hacer chmod %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "No se pueden copiar elementos al portapapeles." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "No se puede crear la carpeta principal: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "No se pueden cortar elementos al portapapeles." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "No se puede pegar \"%s\" (el portapapeles está vacío): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Cambiar carpeta" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Cambiar permisos" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Verificar Quota" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Comprobar _Todas/Ninguna" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Ha terminado el cambio de permisos: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Elegir las columnas mostradas y su orden:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Eliminar" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Portapapeles" + +#: quota.php:25 +msgid "Close" +msgstr "Cerrar" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Columnas que no se mostrarán:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Copiar" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Crear carpeta" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Se han creado permisos vacíos para \"%s\". Ahora tiene que conceder el " +"acceso a este soporte de forma explícita." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Carpeta actual:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Cortar" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Criterio de clasificación por omisión:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Sentido de clasificación por omisión:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Eliminar" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "¿Eliminar carpetas de forma recursiva?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Descendente" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Hecho" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Descargar %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "ERROR:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Modificar %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Ejecutar" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Archivo" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Acciones de archivos" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Vista de archivo" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Hora de modificación de archivo" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Nombre de archivo" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Tamaño de archivo" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Tipo de archivo" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Opciones de acciones de archivos" + +#: manager.php:100 +msgid "File deleted: " +msgstr "Archivo eliminado: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Opciones de visualización de archivos" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Archivo recibido: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Los archivos se tienen que almacenar en un soporte VFS." + +#: manager.php:341 +msgid "Filter" +msgstr "Filtro" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Carpeta eliminada: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Las carpetas se tienen que crear en un soporte VFS." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Grupo" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Soporte solicitado inválido: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Se ha copiado el elemento al portapapeles: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Se ha cortado el elemento al portapapeles: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Elementos por página" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "¿Listar primero las carpetas?" + +#: manager.php:540 +msgid "Modified" +msgstr "Modific." + +#: manager.php:514 +msgid "Name" +msgstr "Nombre" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Nueva carpeta creada: " + +#: config/prefs.php:96 +msgid "No" +msgstr "No" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "No se ha encontrado la quota." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Propietario" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Pegar" + +#: manager.php:556 +msgid "Permission" +msgstr "Permiso" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "No dispone de permisos para %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "No dispone de permisos para la carpeta \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "No dispone de permisos para este soporte." + +#: manager.php:612 +msgid "Permissions" +msgstr "Permisos" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Seleccione un elemento antes de esta acción." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Indique al menos un archivo a cargar." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Formato de Quota" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Leer" + +#: manager.php:287 +msgid "Refresh" +msgstr "Actualizar" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Renombrar" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "El renombrado entre soportes no está soportado." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "El renombrado de soporte no está permitido." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Limpiar" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Guardar" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Seleccionar todas" + +#: clipboard.php:47 +msgid "Select None" +msgstr "No seleccionar nada" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Seleccione un soporte:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Compartir carpeta" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Carpeta compartida" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "¿Mostrar archivos cuyo nombre empiece por un punto?" + +#: manager.php:548 +msgid "Size" +msgstr "Tamaño" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Carpeta de inicio" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "La carpeta de la aplicación no se puede eliminar." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Los siguiente(s) elemento(s) son carpetas:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Se eliminarán permanentemente los siguientes elementos:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Se ha cerrado la ventana de origen. Saliendo." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "No hay archivos en esta carpeta." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Estas columnas se mostrarán en este orden:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Para eliminar elementos del portapapeles, seleccione la casilla junto al " +"nombre del archivo y pulse "Limpiar"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Para pegar elementos del portapapeles en la carpeta actual, seleccione la " +"casilla junto al nombre del archivo y pulse "Pegar"." + +#: manager.php:506 +msgid "Type" +msgstr "Tipo" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "No se puede crear la sesión de Gollem" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "No se pueden crear los permisos en el soporte: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "No se puede eliminar el archivo %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "No se puede eliminar la carpeta %s: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "Subir a %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Cargar archivo(s)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Interfaz de usuario" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Escritura" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Sí" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Carece de permisos para compartir esta carpeta" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "Para establecer permisos necesita al menos definir un soporte." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Permisos" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/et/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/et/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/et/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/et/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/et/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/et/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,566 @@ +msgid "" +msgstr "" +"Project-Id-Version: Gollem H3 (1.1-cvs)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2011-10-19 13:56+0300\n" +"PO-Revision-Date: 2011-11-09 13:56+0300\n" +"Last-Translator: Alar Sing \n" +"Language-Team: \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Estonian\n" +"X-Poedit-Country: ESTONIA\n" + +#: manager.php:62 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" nimetati ümber \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:556 +#, php-format +msgid "%d item" +msgstr "%d asja" + +#: manager.php:556 +#, php-format +msgid "%d items" +msgstr "%d asja" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s edukalt salvestatud." + +#: manager.php:177 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s edukalt kleebitud." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "%s juurdepääs keelatud" + +#: lib/Gollem.php:48 lib/Gollem.php:294 lib/Gollem.php:341 lib/Gollem.php:363 +#: lib/Gollem.php:383 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Kaustale \"%s\" juurdepääs keelatud." + +#: templates/manager/manager.html:110 +msgid "Actions:" +msgstr "Tegevus:" + +#: selectlist.php:79 +msgid "Add" +msgstr "Lisa" + +#: templates/manager/manager.html:11 +msgid "All" +msgstr "Kõik" + +#: templates/javascript_defs.php:20 +msgid "Are you sure you wish to continue?" +msgstr "Oled kindel et soovid jätkata?" + +#: templates/javascript_defs.php:18 +msgid "Are you sure?" +msgstr "Oled kindel?" + +#: config/prefs.php:67 +msgid "Ascending" +msgstr "Kasvav" + +#: config/prefs.php:97 +msgid "Ask" +msgstr "Küsi" + +#: templates/manager/manager.html:5 +msgid "Attributes" +msgstr "Atribuudid" + +#: lib/Application.php:124 +msgid "Backend" +msgstr "Alusrakendused" + +#: lib/Application.php:86 +msgid "Backends" +msgstr "Alusrakendused" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "Allpool on hetke lõikepuhver sisu." + +#: clipboard.php:24 manager.php:281 selectlist.php:81 +#: templates/edit/edit.inc:13 +msgid "Cancel" +msgstr "Loobu" + +#: manager.php:82 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Ei õnnestu muuta õigusi %s: %s" + +#: manager.php:152 +msgid "Cannot copy items onto clipboard." +msgstr "Ei õnnestu kopeerida asju lõikepuhvrisse." + +#: manager.php:223 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Ei õnnestu luua kodu kataloogi: %s" + +#: manager.php:154 +msgid "Cannot cut items onto clipboard." +msgstr "Ei saa lõigata asju lõikepuhvrisse." + +#: manager.php:179 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Ei saa kleepida \"%s\" (lõikepuhver on tühjendatud) :%s" + +#: manager.php:307 templates/manager/manager.html:70 +msgid "Change Folder" +msgstr "Muuda Kausta" + +#: templates/manager/manager.html:112 +msgid "Change Permissions" +msgstr "Muuda Õigusi" + +#: lib/Gollem.php:585 +msgid "Change Server" +msgstr "Muuda Serverit" + +#: lib/Application.php:286 +msgid "Check Quota" +msgstr "Kontrolli mahupiirangut" + +#: manager.php:552 +msgid "Check _All/None" +msgstr "Märgi/tühjenda _kõik" + +#: manager.php:80 +msgid "Chmod done: " +msgstr "Õigused muudetud: " + +#: lib/Application.php:256 +msgid "Choose which columns to display, and in what order:" +msgstr "Vali, milliseid veerge näidata ja millises järjestuses:" + +#: clipboard.php:25 templates/manager/manager.html:131 +msgid "Clear" +msgstr "Tühjenda" + +#: clipboard.php:44 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "Lõikepuhver" + +#: quota.php:26 +msgid "Close" +msgstr "Sule" + +#: lib/Application.php:260 +msgid "Columns that will not be displayed:" +msgstr "Veerud mida ei näidata:" + +#: clipboard.php:28 templates/manager/manager.html:115 +msgid "Copy" +msgstr "Kopeeri" + +#: manager.php:300 templates/manager/manager.html:58 +msgid "Create Folder" +msgstr "Loo kaust" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "Teha ilma õigusteta \"%s\". Peab alusrakendusele andma selle õiguse." + +#: templates/clipboard/clipboard.html:21 +msgid "Current directory:" +msgstr "Hetke kaust:" + +#: clipboard.php:27 templates/manager/manager.html:116 +msgid "Cut" +msgstr "Lõika" + +#: config/prefs.php:59 +msgid "Default sorting criteria:" +msgstr "Vaike sorteerimise kriteerium:" + +#: config/prefs.php:70 +msgid "Default sorting direction:" +msgstr "Vaike sorteerimise suund:" + +#: templates/manager/manager.html:119 +msgid "Delete" +msgstr "Kustuta" + +#: config/prefs.php:99 +msgid "Delete folders recursively?" +msgstr "Kustuta kaustad rekursiivselt?" + +#: config/prefs.php:68 +msgid "Descending" +msgstr "Kahanev" + +#: selectlist.php:80 +msgid "Done" +msgstr "Tehtud" + +#: manager.php:427 +#, php-format +msgid "Download %s" +msgstr "Salvesta %s" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "VIGA:" + +#: templates/edit/edit.inc:8 +#, php-format +msgid "Edit %s" +msgstr "Muuda %s" + +#: templates/manager/manager.html:26 +msgid "Execute" +msgstr "Käivita" + +#: templates/javascript_defs.php:22 templates/manager/manager.html:201 +msgid "File" +msgstr "Fail" + +#: config/prefs.php:86 +msgid "File Actions" +msgstr "Faili Tegevused" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Näita Faili" + +#: config/prefs.php:56 +msgid "File Modification Time" +msgstr "Faili muutmise aeg" + +#: config/prefs.php:55 +msgid "File Name" +msgstr "Faili Nimi" + +#: config/prefs.php:57 +msgid "File Size" +msgstr "Faili Suurus" + +#: config/prefs.php:54 +msgid "File Type" +msgstr "Faili Tüüp" + +#: config/prefs.php:87 +msgid "File action settings." +msgstr "Faili tegevuste seaded." + +#: manager.php:97 +msgid "File deleted: " +msgstr "Fail kustutatud: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Faili vaate eelistused." + +#: manager.php:118 +#, php-format +msgid "File received: %s" +msgstr "Fail saabunud: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Faili peab kirjutama VFS alusrakenduse sees." + +#: templates/manager/manager.html:129 +msgid "Filter" +msgstr "Filter" + +#: templates/manager/manager.html:128 +msgid "Filter:" +msgstr "Filter:" + +#: manager.php:89 +msgid "Folder removed: " +msgstr "Kaust eemaldatud: " + +#: lib/Api.php:155 lib/Api.php:186 +msgid "Folders must be created inside a VFS backend." +msgstr "Kaust tuleb teha VFS alusrakenduse sees." + +#: templates/manager/manager.html:72 +msgid "Go to:" +msgstr "Mine:" + +#: manager.php:531 templates/manager/manager.html:10 +msgid "Group" +msgstr "Grupp" + +#: lib/Api.php:405 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Vigane alusrakenduse päring: %s" + +#: manager.php:146 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Asi kopeeritud lõikepuhvrisse: %s" + +#: manager.php:148 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Asi lõigatud lõikepuhvrisse: %s" + +#: config/prefs.php:77 +msgid "Items per page" +msgstr "Kannete arv leheküljel" + +#: templates/login/login.html:67 +msgid "Language" +msgstr "Keel" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Kaustad enne?" + +#: manager.php:501 +msgid "Modified" +msgstr "Muudetud" + +#: manager.php:479 +msgid "Name" +msgstr "Nimi" + +#: templates/manager/manager.html:46 templates/manager/manager.html:60 +msgid "Name:" +msgstr "Nimi:" + +#: manager.php:47 +msgid "New folder created: " +msgstr "Uus kaust tehtud: " + +#: config/prefs.php:95 +msgid "No" +msgstr "Ei" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "Kvooti ei leitud." + +#: manager.php:282 +msgid "OK" +msgstr "OK" + +#: manager.php:524 templates/manager/manager.html:9 +msgid "Owner" +msgstr "Omanik" + +#: clipboard.php:26 +msgid "Paste" +msgstr "Kleebi" + +#: manager.php:517 +msgid "Permission" +msgstr "Õigus" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Ligipääs keelatud %s: %s" + +#: manager.php:216 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Kaustale \"%s\" ligipääs keelatud: %s" + +#: lib/Api.php:413 +msgid "Permission denied to this backend." +msgstr "Alusrakendusele ligipääs keelatud." + +#: templates/javascript_defs.php:13 +msgid "Please provide your password." +msgstr "Palun sisesta oma salasõna." + +#: templates/javascript_defs.php:12 +msgid "Please provide your username." +msgstr "Palun sisesta oma kasutajanimi." + +#: templates/javascript_defs.php:16 +msgid "Please select an item before this action." +msgstr "Palun tee valik enne tegevust." + +#: templates/javascript_defs.php:21 +msgid "Please specify at least one file to upload." +msgstr "Palun vali vähemalt üks fail mida ülesse laadida." + +#: quota.php:57 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "Näita mahupiirangut" + +#: templates/manager/manager.html:14 +msgid "Read" +msgstr "Loe" + +#: manager.php:287 +msgid "Refresh" +msgstr "Värskenda" + +#: templates/manager/manager.html:44 templates/manager/manager.html:122 +msgid "Rename" +msgstr "Nimeta ümber" + +#: lib/Api.php:200 +msgid "Renaming across backends is not supported." +msgstr "Ümber nimetamine üle alusrakenduste ei ole võimalik." + +#: lib/Api.php:194 +msgid "Renaming of backends is not allowed." +msgstr "Alusrakenduste ümbernimetamine ei ole lubatud." + +#: templates/edit/edit.inc:12 +msgid "Reset" +msgstr "Lähtesta" + +#: manager.php:280 templates/edit/edit.inc:11 +msgid "Save" +msgstr "Salvesta" + +#: clipboard.php:48 templates/clipboard/clipboard.html:28 +msgid "Select All" +msgstr "Märgi Kõik" + +#: clipboard.php:49 +msgid "Select None" +msgstr "Ära Vali Midagi" + +#: lib/Application.php:258 +msgid "Select a backend:" +msgstr "Vali alusrakendus:" + +#: templates/login/login.html:31 +msgid "Server" +msgstr "Server" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Näita punktiga algavaid faile?" + +#: manager.php:509 +msgid "Size" +msgstr "Suurus" + +#: lib/Api.php:229 +msgid "The application folder can not be deleted." +msgstr "Rakenduse kausta ei saa kustutada." + +#: templates/javascript_defs.php:19 +msgid "The following item(s) are folders:" +msgstr "Järgmised asjad on kaustades:" + +#: templates/javascript_defs.php:17 +msgid "The following items will be permanently deleted:" +msgstr "Järgmised asjad kustutatakse igaveseks:" + +#: templates/javascript_defs.php:25 +msgid "The original opener window has been closed. Exiting." +msgstr "Algne avamisaken on suletud. Väljun." + +#: selectlist.php:176 templates/manager/manager.html:140 +msgid "There are no files in this folder." +msgstr "Selles kaustas pole faile." + +#: lib/Application.php:257 +msgid "These columns will display in this order:" +msgstr "Need veerge näidatakse selles järjestuses:" + +#: templates/clipboard/clipboard.html:17 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Lõikepuhvrist failide kustutamiseks vali linnuke faili nime järel ja vajuta " +""Tühjenda"." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Asjade kleepimiseks lõikepuhvrisse hetke kaustast vali linnuke faili nime " +"kõrval ja vajuta "Kleebi"." + +#: manager.php:471 +msgid "Type" +msgstr "Tüüp" + +#: lib/Api.php:409 +msgid "Unable to create Gollem session" +msgstr "Ei õnnestunud luua Gollemi sessiooni" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Ei õnnestunud luua alusrakenduse õigust: %s" + +#: manager.php:99 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Faili %s ei õnnestunud kustutada: %s" + +#: manager.php:91 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Kausta %s ei õnnestunud kustutada: %s" + +#: lib/Gollem.php:549 lib/Gollem.php:559 +#, php-format +msgid "Up to %s" +msgstr "Kuni %s" + +#: manager.php:296 +msgid "Upload File(s)" +msgstr "Lae fail(e)" + +#: config/prefs.php:14 config/prefs.php:85 +msgid "User Interface" +msgstr "Kasutajaliides" + +#: manager.php:291 +msgid "View Clipboard" +msgstr "Vaata lõikelauda" + +#: templates/manager/manager.html:20 +msgid "Write" +msgstr "Kirjuta" + +#: config/prefs.php:96 +msgid "Yes" +msgstr "Jah" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "Vähemalt üks alusrakendus peab olema defineeritud et seada õigusi." + +#: lib/Gollem.php:583 lib/Gollem.php:586 +msgid "_Change Server" +msgstr "_Muuda serverit" + +#: lib/Application.php:273 +msgid "_My Home" +msgstr "_Minu kodu" + +#: lib/Application.php:276 +msgid "_Permissions" +msgstr "Õig_used" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/eu/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/eu/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/eu/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/eu/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,46 @@ + + + + + Fitxategi-kudeatzailea: Ekintzak + Sortu Karpetak + + Uneko direktorioan karpeta bat sortzeko, hautatu 'Sortu karpeta' aukera 'Ekintzak' goitibeherako koadroan. + + Ezabatu, ebaki, kopiatu eta itsatsi fitxategiak + + Fitxategi bat edo gehiago ezabatzeko, ebakitzeko edo kopiatzeko, fitxategi bat hautatu behar duzu gutxienez. + Fitxategi bat edo gehiago hautatu badituzu elementuaren ezkerrean dauden kontrol-laukiak erabiliz, hautatu 'Ebaki elementuak', 'Kopiatu elementuak' edo 'Ezabatu elementuak', 'Ekintzak' izeneko goitibeherako koadroan. 'Ebaki elementuak' edo 'Kopiatu elementuak' hautatu baduzu, fitxategi horiek Fitxategi-kudeatzaileko beste leku batean itsats ditzakezu orain. Nabigatu elementuak itsatsi nahi dituzun lekura, eta ondoren hautatu 'Itsatsi elementuak' 'Ekintzak' izeneko goitibeherako koadroan. Orduan elementuak lekuz aldatu (Ebaki elementuak) edo kopiatu (Kopiatu elementuak) egingo dira zuk aukeratutako lekura. + + Ezabatu, ebaki, kopiatu eta itsatsi direktorioak + + Lehenespenez, hutsik dauden direktorioak bakarrik ezaba ditzakezu, baina hutsik ez dauden direktorioak ezabatzeko aukera ere gaitu dezakezu (ezabatze errekurtsiboa). Hutsik ez dagoen direktorio bat ezabatzen saiatzen bazara eginbide hau gaitu gabe, ezabatzeak huts egingo du eta errorea emango dizu. Hutsik ez dauden direktorioak ezabatzeko aukera gaitzeko, hautatu Hobespenak, Fitxategi-ekintzak, eta aukeratu Bai 'Ezabatu karpetak errekurtsiboki' hobespenaren goitibeherako koadroan. Orduan gaituta geratuko da ezabatze errekurtsiboaren hobespena. + + Direktorio bat edo gehiago ezabatzeko, ebakitzeko edo kopiatzeko, direktorio bat hautatu behar duzu gutxienez. + Direktorio bat edo gehiago hautatu badituzu elementuaren ezkerrean dauden kontrol-laukiak erabiliz, hautatu 'Ebaki elementuak', 'Kopiatu elementuak' edo 'Ezabatu elementuak', 'Ekintzak' izeneko goitibeherako koadroan. 'Ebaki elementuak' edo 'Kopiatu elementuak' hautatu baduzu, direktorio horiek Fitxategi-kudeatzaileko beste leku batean itsats ditzakezu orain. Nabigatu elementuak itsatsi nahi dituzun lekura, eta ondoren hautatu 'Itsatsi elementuak' 'Ekintzak' izeneko goitibeherako koadroan. Orduan elementuak lekuz aldatu (Ebaki elementuak) edo kopiatu (Kopiatu elementuak) egingo dira zuk aukeratutako lekura. + + Arbelaren erabilera + + Fitxategi edo direktorio bat kopiatzean edo ebakitzean, arbelean kokatzen da. Arbelaren edukia ikusteko, egin klik arbelaren ikonoan. Direktorio/Karpeten zerrendaren goialdean eta 'Freskatu' ikonoaren eskuinean aurkituko duzu. Ikonoa ez da agertuko arbelean elementurik ez badago. Ebakitzen edo kopiatzen diren elementuek ez dute kontrol-laukirik edukiko ezkerraldean, arbelean daudela esan nahi baitu horrek. Arbel-ikustailean klik egindakoan, kopiatu edo ebakitako elementuen zerrenda ikusiko duzu. + Arbel-ikustailetik, elementu horiek uneko direktorioan itsats ditzakezu. Elementuen zerrendaren goialdean bistaratzen da, hain zuzen ere, uneko direktorioa. + Besterik gabe hautatu itsatsi nahi dituzun elementuak, eta egin klik Itsatsi botoian. Elementu horiek uneko direktorioan itsatsiko dira, arbeletik kenduz aldi berean. Itsasten amaitutakoan, uneko direktoriora itzuliko zara. Elementu bat kendu nahi baduzu arbeletik, egin klik elementuetan eta sakatu Garbitu botoia. Elementuak kendu egingo dira arbeletik, eta uneko direktoriora itzuliko zara. + + + + + Fitxategi-kudeatzailea: Kargatu + Kargatu fitxategiak + + Fitxategi bat edo gehiago kargatzeko, nabigatu fitxategiak kargatu nahi dituzun direktoriora Fitxategi-kudeatzailean. Direktorio horri uneko direktorioa esaten zaio. Direktorio egokian zaudenean Fitxategi-kudeatzailean, egin klik Arakatu botoian. + Fitxategiak kargatzeko leihoa bistaratuko da. Leihoa irekitzen denean, nabigatu kargatu nahi duzun fitxategira, hautatu, eta egin klik Ados botoian. Hainbat fitxategi karga ditzakezu batera. Fitxategi-kudeatzaileak automatikoki gehituko du beste Arakatu botoi bat, fitxategi bat hautatzen duzun bakoitzean. Kargatu nahi dituzun fitxategi guztiak hautatutakoan, egin klik 'Kargatu fitxategia(k)' botoian eta hautatutako fitxategiak kargatu egingo dira Fitxategi-kudeatzaileko uneko direktorioan. + + + + + Ordenatu sarrerak + Ordenatu sarrerak + + Fitxategi edo direktorioen zerrenda bat ikustean, edozein zutaberen arabera ordena ditzakezu. Hori egiteko, egin klik ordenatzeko erabili nahi duzun zutabearen goiburuan, eta zerrenda freskatu egingo da, hautatutako zutabearen arabera ordenatuta. Goranzko edo beheranzko ordenara aldatzeko, egin klik zutabearen izenburuko geziaren ikonoan. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/eu/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/eu/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/eu/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/eu/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/eu/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/eu/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,536 @@ +# Basque translation for gollem package. +# This file is distributed under the same license as the gollem package. +# +msgid "" +msgstr "" +"Project-Id-Version: gollem\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2016-04-14 15:27+0200\n" +"PO-Revision-Date: 2016-04-15 09:39+0200\n" +"Last-Translator: Ibon Igartua \n" +"Language-Team: Euskal Herriko Unibertsitatea \n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.8.4\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" izenaren ordez \"%s\" jarri da" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%% %.2f)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d elementu" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d elementu" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s behar bezala gorde da." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s behar bezala itsatsi da." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Honako sarbidea ukatu da: %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "\"%s\" karpetarako sarbidea ukatua." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Gehitu" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Denak" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Ziur zaude jarraitu nahi duzula?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Ziur zaude?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Gorantz" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Galdetu" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Euskarri-modulua" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Euskarri-moduluak" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Behean dago arbeleko uneko edukia." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Utzi" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Ezin da egin chmod %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Ezin dira kopiatu elementuak arbelean." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Ezin da sortu direktorio nagusia: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Ezin dira ebaki elementuak arbelera." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Ezin da itsatsi \"%s\" (fitxategia arbeletik kendu da): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Aldatu karpeta" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Aldatu baimenak" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Egiaztatu kuota" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Egiaztatu _guztiak/bat ere ez" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Chmod eginda: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Aukeratu zein zutabe bistaratuko diren eta zein ordenatan:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Garbitu" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Arbela" + +#: quota.php:25 +msgid "Close" +msgstr "Itxi" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Bistaratuko ez diren zutabeak:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopiatu" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Sortu karpeta" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Baimen hutsak sortu dira honentzat: \"%s\". Orain esplizituki eman behar " +"duzu euskarri-modulu honetarako sarbidea." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Uneko direktorioa:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Ebaki" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Ordenatze-irizpide lehenetsia:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Ordenatze-noranzko lehenetsia:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Ezabatu" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Ezabatu karpetak errekurtsiboki?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Beherantz" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Eginda" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Deskargatu %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "ERROREA:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Editatu %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Exekutatu" + +#: manager.php:611 templates/manager.html.php:147 +msgid "File" +msgstr "Fitxategia" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Fitxategi-ekintzak" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Fitxategi-bistaratzea" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Fitxategi-aldaketaren ordua" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Fitxategi-izena" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Fitxategi-tamaina" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Fitxategi mota" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Fitxategi-ekintzaren ezarpenak." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Ezabatutako fitxategia: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Fitxategiak bistaratzeko hobespenak." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Fitxategia jaso da: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Fitxategiak VFS euskarri-modulu baten barnean idatzi behar dira." + +#: manager.php:341 +msgid "Filter" +msgstr "Iragazkia" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Kendutako karpeta: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Karpetak VFS euskarri-modulu baten barnean sortu behar dira." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Taldea" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Okerreko euskarri-modulua eskatu da: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Arbelean kopiatutako elementua: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Arbelean ebakitako elementua: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "elementu orriko" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Karpetak zerrendatu lehendabizi?" + +#: manager.php:540 +msgid "Modified" +msgstr "Aldatuta" + +#: manager.php:514 +msgid "Name" +msgstr "Izena" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Sortutako karpeta berria: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Ez" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Ez da kuotarik aurkitu." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Jabea" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Itsatsi" + +#: manager.php:556 +msgid "Permission" +msgstr "Baimena" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Baimena ukatu da, %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Baimena ukatu da karpeta honetarako: \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Euskarri-modulu honetarako baimena ukatu da." + +#: manager.php:612 +msgid "Permissions" +msgstr "Baimenak" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Hautatu elementu bat ekintza honen aurretik." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Zehaztu kargatzeko fitxategi bat gutxienez." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Kuota-bistaratzea" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Irakurri" + +#: manager.php:287 +msgid "Refresh" +msgstr "Freskatu" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Aldatu izena" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Ez da onartzen euskarri-moduluen artean izenak aldatzea." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Ez da onartzen euskarri-moduluei izena aldatzea." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Berrezarri" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Gorde" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Hautatu dena" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Ez hautatu bat ere" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Hautatu euskarri-modulu bat:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Partekatu karpeta" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Karpeta partekatua" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Erakutsi dot fitxategiak? " + +#: manager.php:548 +msgid "Size" +msgstr "Tamaina" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Hasierako karpeta" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Ezin da ezabatu aplikazioaren karpeta." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Elementu hauek karpetak dira:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Elementu hauek betiko borratuko dira:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Jatorrizko hasierako leihoa itxi egin da. Irteten." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Ez dago fitxategirik karpeta honetan." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Zutabe hauek ordena honetan bistaratuko dira:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Kendu elementuak arbeletik, hautatu fitxategi-izenaren ondoko koadroa eta " +"egin klik "Garbitu" botoian." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Elementuak itsasteko arbeletik uneko direktoriora, hautatu fitxategi-" +"izenaren ondoko koadroa eta egin klik "Itsatsi" botoian." + +#: manager.php:506 +msgid "Type" +msgstr "Mota" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Ezin da sortu Gollem saioa" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Ezin da sortu euskarri-moduluaren baimena: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Ezin da ezabatu %s fitxategia: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Ezin da ezabatu %s karpeta: %s" + +#: lib/Gollem.php:688 lib/Gollem.php:698 +#, php-format +msgid "Up to %s" +msgstr "Honaino: %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Kargatu fitxategia(k)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Erabiltzailearen interfazea" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Idatzi" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Bai" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Ez duzu karpeta hau partekatzeko baimenik" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Gutxienez euskarri-modulu bat eduki behar duzu definituta baimenak ezartzeko." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Baimenak" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/fi/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/fi/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/fi/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/fi/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,41 @@ + + + + Tiedostohallinta: Toiminnot + Hakemistojen luonti + + Luodaksesi alihakemiston nykyiseen hakemistoon, valitse "Luo hakemisto" toimto alasvetovalikosta. + + Tiedostojen poisto, leikkaus, kopiointi ja liitäminen + + Jotta voisit poistaa, leikata, kopioida tiedoston tai tiedostoja, niin sinun pitää valita ainakin yksi tiedosto. + Kun olet valinnut yhden tai useamman tiedoston rastittamalla valintalaatikot objektin vasemmalla puolella, voit alasvetovalikosta valita yhden seuraavista toiminnoista "Leikkaa objekteja", "Kopioi objekteja" tai "Poista objektit". Jos valitset "Leikkaa objekti" tai "Kopioi objekti", niin tämän jälkeen voit liittää objektin muuhun paikkaan tiedostonhallinnassa. Kun haluat liittää objektin, niin siirry valitsemaasi kohteeseen ja valitse tämän jälkeen toiminnot alasvetovalikosta "Liitä objekti". Tämän jälkeen objektit ovat joko siirtyneet (Leikkaa objekti) tai kopioituneet (Kopioi objekti) valitsemaasi kohteeseen. + + Hakemistojen poisto, leikkaus, kopiointi ja liitäminen + Delete, cut, copy and paste directories + + Oletuksena voit poistaa hakemiston vain jos se on tyhjä. On kuitenkin mahdollista poistaa ei-tyhjä hakemisto jos valitset asetuksen "Poista hakemistot rekursiivisesti". Jos yrität poistaa ei-tyhjää hakemistoa ilman että sinulla on päällä em. asetus, niin poistaminen epäonnistuu virheilmoituksen kera. Jos haluat poistaa ei-tyhjiä hakemistoja, niin valitse laita asetuksista päälle asetus "Poista hakemistot rekursiivisesti.". + Poistaaksesi, leikataksesi tai kopioidaksesi hakemistoja, sinun pitää valita ainakin yksi hakemisto. + Kun olet valinnut yhden tai useamman hakemiston rastittamalla valintalaatikon hakemiston vasemmalla puolella, voit alasvetovalikosta valita yhden seuraavista toiminnoista "Leikkaa objekteja", "Kopioi objekteja" tai "Poista objektit". Jos valitset "Leikkaa objekti" tai "Kopioi objekti", niin tämän jälkeen voit liittää objektin muuhun paikkaan tiedostonhallinnassa. Kun haluat liittää objektin, niin siirry valitsemaasi kohteeseen ja valitse tämän jälkeen toiminnot alasvetovalikosta "Liitä objekti". Tämän jälkeen objektit ovat joko siirtyneet (Leikkaa objekti) tai kopioituneet (Kopioi objekti) valitsemaasi kohteeseen. + + + Työskentely leikepöydällä + + Kun olet kopioinut tai leikannut tiedoston tai hakemiston, niin se laitetaan leikepöydälle. Voit tarkastella leikepöydän sisältöä napsauttamalla leikepöydän kuvaketta, joka sijaitsee hakemistolistauksen yläpuolella oikealla päivitä ikonista. Tämä ikoni on näkyvissä vain jos leikepöydällä on objekteja. Jos objektin vieressä ei ole valintalaatikkoa, niin se tarkoittaa, että nämä objektit on jo leikepöydällä. Kun napsautat auki leikepöydän, niin näet listan objekteista, jotka on sinne kopioitu. Voit tästä listasta valita haluamasi objektit ja liittää ne nykyiseen hakemistoon. Palaat automaattisesti takaisin nykyiseen hakistoon kun liittäminen on onnistunut. Jos haluat poistaa jonkun objektin leikepöydältä, niin valitse objekti ja napsauta poista. Kun poistaminen on onnistunut, niin palaat takaisin nykyiseen hakemistoon. + + + + Tiedostohallinta: Tuonti + Tiedostojen tuonti + + Tuodaksesi tiedoston tai tiedostoja, niin mene ensin siihen hakemistoon johon haluat tuoda tiedostot. Tämä valitsemasi hakemisto on nykyinen hakemistosi. Kun tiedostonhallinnassa oikeassa hakemistossa, niin napsauta "Browse" -painiketta ja tiedoston tuonti -ikkunan pitäisi aueta. Kun ikkuna on auki ja näkyvissä valitse tuotava tiedosto ja napsauta OK-painiketta. Voit myös tuoda useampia tiedostoja kerrallaan, joka kerta kun olet valinnut yhden tiedoston, niin ilmestyy uusi "Browse" -painike. Kun olet valinnut kaikki tuotavat tiedostot, niin napsauta "Tuo tiedostot" -painiketta ja valitsemasi tiedostot tuodaan tiedostohallinnan nykyiseen hakemistoon. + + + + Objektien järjestäminen + Objektien järjestäminen + + Kun katsot tiedostolistausta tai hakemistoja, niin voit järjestää ne mikä sarakkeen mukaan tahansa. Valitse vain haluttu sarake napsauttamalla sarakkeen otsikkoa ja lista järjestetään sen mukaan. Voit valita nousevan ja laskevan järjestyksen napsauttamalla nuoli ikonia sarakkeen otsikossa. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/fi/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/fi/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/fi/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/fi/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/fi/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/fi/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,580 @@ +# Finnish translation for Gollem. +# This file is distributed under the same license as the Gollem package. +# Copyright +# Leena Heino , 2005-2012. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 2.0-git\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2012-10-26 23:07+0200\n" +"PO-Revision-Date: 2012-10-28 21:01:27+0200\n" +"Last-Translator: Leena Heino \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" uudelleennimettiin \"%s\"" + +#: quota.php:51 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:582 +#, php-format +msgid "%d item" +msgstr "%d objekti" + +#: manager.php:582 +#, php-format +msgid "%d items" +msgstr "%d objektia" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s tallennus onnistui." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s liittäminen onnistui." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "%s pääsy estetty" + +#: lib/Gollem.php:49 lib/Gollem.php:300 lib/Gollem.php:360 lib/Gollem.php:393 +#: lib/Gollem.php:413 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Pääsy kansioon \"%s\" on estetty." + +#: templates/manager/manager.html:69 +msgid "Actions:" +msgstr "Toiminnot:" + +#: selectlist.php:79 +msgid "Add" +msgstr "Lisää" + +#: templates/manager/manager.html:9 +msgid "All" +msgstr "Kaikki" + +#: templates/javascript_defs.php:20 +msgid "Are you sure you wish to continue?" +msgstr "Oletko varma että haluat jatkaa?" + +#: templates/javascript_defs.php:18 +msgid "Are you sure?" +msgstr "Oletko varma?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Nouseva" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Kysy" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Taustajärjestelmä" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Taustajärjestelmät" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "Alla on leikepöydän nykyinen sisältö." + +#: clipboard.php:24 manager.php:286 selectlist.php:81 +#: templates/edit/edit.inc:13 +msgid "Cancel" +msgstr "Peru" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Ei voi suorittaa chmod %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Ei voi kopioida objekteja leikepöydälle." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Ei voi luoda kotihakemistoa: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Ei voi leikata objekteja leikepöydälle." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Ei voi liittää \"%s\" (tiedosto on poistettu leikepöydältä: %s" + +#: manager.php:321 templates/javascript_defs.php:15 +msgid "Change Folder" +msgstr "Vaihda hakemistoa" + +#: templates/manager/manager.html:71 +msgid "Change Permissions" +msgstr "Muuta oikeuksia" + +#: lib/Gollem.php:653 +msgid "Change Server" +msgstr "Vaihda palvelinta" + +#: lib/Application.php:224 +msgid "Check Quota" +msgstr "Tarkista kiintiö" + +#: manager.php:578 +msgid "Check _All/None" +msgstr "Valitse _kaikki/ei mitään" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Chmod suoritettu: " + +#: lib/Prefs/Special/Columnselect.php:53 +msgid "Choose which columns to display, and in what order:" +msgstr "Valitse mitkä sarakkeet näytetään ja missä järjestyksessä:" + +#: clipboard.php:25 templates/manager/manager.html:93 +msgid "Clear" +msgstr "Tyhjennä" + +#: clipboard.php:53 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "Leikepöytä" + +#: quota.php:26 +msgid "Close" +msgstr "Sulje" + +#: lib/Prefs/Special/Columnselect.php:57 +msgid "Columns that will not be displayed:" +msgstr "Sarakkeet, joita ei näytetä:" + +#: clipboard.php:28 templates/manager/manager.html:74 +msgid "Copy" +msgstr "Kopioi" + +#: manager.php:314 templates/javascript_defs.php:16 +msgid "Create Folder" +msgstr "Luo hakemisto" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Luotiin tyhjä oikeus - \"%s\". Sinun pitää erikseen antaa oikeudet tälle " +"taustajärjestelmälle." + +#: templates/clipboard/clipboard.html:21 +msgid "Current directory:" +msgstr "Nykyinen hakemisto:" + +#: clipboard.php:27 templates/manager/manager.html:76 +msgid "Cut" +msgstr "Leikkaa" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Oletusjärjestys:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Oletusjärjestyksensuunta:" + +#: templates/manager/manager.html:80 +msgid "Delete" +msgstr "Poista" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Poista hakemistot rekursiivisesti." + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Laskeva" + +#: selectlist.php:80 +msgid "Done" +msgstr "Valmis" + +# php-format +#: manager.php:450 +#, php-format +msgid "Download %s" +msgstr "Tallenna %s" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "VIRHE:" + +#: templates/edit/edit.inc:8 +#, php-format +msgid "Edit %s" +msgstr "Muokkaa %s" + +#: templates/manager/manager.html:24 +msgid "Execute" +msgstr "Suorita" + +#: templates/javascript_defs.php:21 templates/manager/manager.html:168 +msgid "File" +msgstr "Tiedosto" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Tiedostotoiminnot" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Tiedostonäkymä" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Tiedoston muokkauspäivämäärä" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Tiedoston nimi" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Tiedoston koko" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Tiedoston tyyppi" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Tiedostotoimintojen asetukset." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Tiedosto poistettiin: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Tiedstojen näyttämisen asetukset." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Tiedosto vastaanotettiin: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Tiedostot pitää kirjoittaa VFS-taustajärjestään." + +#: templates/manager/manager.html:91 +msgid "Filter" +msgstr "Suodatin" + +#: templates/manager/manager.html:90 +msgid "Filter:" +msgstr "Suodatin:" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Kansio poistettiin: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Kansiot pitää tehdä VFS-taustajärjestelmään." + +#: manager.php:555 templates/manager/manager.html:8 +msgid "Group" +msgstr "Ryhmä" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Epäkelpo taustajärjestelmäpyyntö: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Objekti kopioitiin leikepöydälle: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Objekti leikattiin leikepöydälle: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Objektia sivulla" + +#: templates/login/login.html:67 +msgid "Language" +msgstr "Kieli" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Listaa ensin hakemistot." + +#: manager.php:527 +msgid "Modified" +msgstr "Muokattu" + +#: manager.php:501 +msgid "Name" +msgstr "Nimi" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Luotiin uusi kansio: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Ei" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "Kiintiötä ei löytynyt." + +#: manager.php:287 +msgid "OK" +msgstr "OK" + +#: manager.php:549 templates/manager/manager.html:7 +msgid "Owner" +msgstr "Omistaja" + +#: clipboard.php:26 +msgid "Paste" +msgstr "Liitä" + +#: manager.php:543 +msgid "Permission" +msgstr "Oikeus" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Käyttö estetty %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Kansion \"%s\" käyttö estetty: %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Tämän taustajärjestelmän käyttö on estetty." + +#: templates/javascript_defs.php:22 +msgid "Permissions" +msgstr "Oikeudet" + +#: templates/javascript_defs.php:12 +msgid "Please provide your password." +msgstr "Anna salasanasi." + +#: templates/javascript_defs.php:11 +msgid "Please provide your username." +msgstr "Anna käyttäjätunnuksesi." + +#: templates/javascript_defs.php:24 +msgid "Please select an item before this action." +msgstr "Valitse objekti ennen tätä toimintoa." + +#: templates/javascript_defs.php:25 +msgid "Please specify at least one file to upload." +msgstr "Valitso ainakin yksi tiedosto tuotavaksi." + +#: quota.php:59 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "Kiintiönäkymä" + +#: templates/manager/manager.html:12 +msgid "Read" +msgstr "Luku" + +#: manager.php:292 +msgid "Refresh" +msgstr "Päivitä" + +#: templates/javascript_defs.php:23 templates/manager/manager.html:83 +msgid "Rename" +msgstr "Nimeä uudelleen" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Uudelleen nimeäminen eri taustajärjestelmien välillä ei ole tuettu." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Taustajärjestelmien uudelleennimeäminen ei ole sallittu." + +#: templates/edit/edit.inc:12 +msgid "Reset" +msgstr "Palauta" + +#: manager.php:285 templates/edit/edit.inc:11 +msgid "Save" +msgstr "Tallenna" + +#: clipboard.php:47 templates/clipboard/clipboard.html:28 +msgid "Select All" +msgstr "Valitse kaikki" + +#: clipboard.php:48 +msgid "Select None" +msgstr "Tyhjennä valinnat" + +#: lib/Prefs/Special/Columnselect.php:55 +msgid "Select a backend:" +msgstr "Valitse taustajärjestelmä:" + +#: templates/login/login.html:31 +msgid "Server" +msgstr "Palvelin" + +#: manager.php:305 manager.php:407 +msgid "Share Folder" +msgstr "Jaa hakemisto" + +#: manager.php:407 +msgid "Shared Folder" +msgstr "Jaettu hakemisto" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Näytä pistetiedostot." + +#: manager.php:535 +msgid "Size" +msgstr "Koko" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Ohjelmakansiota ei voi poistaa." + +#: templates/javascript_defs.php:19 +msgid "The following item(s) are folders:" +msgstr "Seuraavat objektit ovat kansioissa: " + +#: templates/javascript_defs.php:17 +msgid "The following items will be permanently deleted:" +msgstr "Seuraavat objektit poistetaan lopullisesti:" + +#: templates/javascript_defs.php:28 +msgid "The original opener window has been closed. Exiting." +msgstr "Alkuperäinen aukaisuikkuna on suljettu. Poistutaan." + +#: selectlist.php:176 templates/manager/manager.html:102 +msgid "There are no files in this folder." +msgstr "Tässä hakemistossa ei ole tiedostoja." + +#: lib/Prefs/Special/Columnselect.php:54 +msgid "These columns will display in this order:" +msgstr "Nämä sarakkeet näytetään tässä järjestyksessä:" + +#: templates/clipboard/clipboard.html:17 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Poistaaksesi objekteja leikepöydältä, valitse tiedostonnimen vieressä " +"valintalaatikko ja napsauta "Tyhjennä"-painiketta." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Liittääksesi objekteja nykyisestä hakemistosta leikepöydälle, valitse " +"tiedostonnimen vieressä valintalaatikko ja napsauta "Liitä"-" +"painiketta." + +#: manager.php:493 +msgid "Type" +msgstr "Tyyppi" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Ei voida luoda Gollem-istuntoa" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Ei voida luoda taustajärjestelmäoikeutta: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Ei voi poistaa tiedostoa %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Ei voi poistaa kansiota %s: %s" + +#: lib/Gollem.php:617 lib/Gollem.php:627 +#, php-format +msgid "Up to %s" +msgstr "Ylöspäin %s" + +#: manager.php:310 +msgid "Upload File(s)" +msgstr "Tuo tiedostoja" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Käyttöliittymä" + +#: manager.php:296 +msgid "View Clipboard" +msgstr "Näytä leikepöytä" + +#: templates/manager/manager.html:18 +msgid "Write" +msgstr "Kirjoitus" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Kyllä" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Sinulla ei ole oikeusia jakaa tätä hakemistoa" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Sinulla pitää olla ainakin yksi taustajärjestelmä määriteltynä, jotta voit " +"määritellä oikeuksia." + +#: lib/Gollem.php:651 lib/Gollem.php:654 +msgid "_Change Server" +msgstr "_Vaihda palvelinta" + +#: lib/Application.php:211 +msgid "_My Home" +msgstr "_Oma koti" + +#: lib/Application.php:214 +msgid "_Permissions" +msgstr "_Oikeudet" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/fr/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/fr/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/fr/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/fr/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/fr/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/fr/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,545 @@ +# translation of gollem to French +# Gollem 1.1-cvs French translation. +# Copyright 2001 Rémi Cohen-Scali. +# Copyright 2004 Benoit St-André +# Copyright 2005 Thierry Thomas +# Rémi Cohen-Scali , 2001. +# Benoit St-André , 2004. +# Thierry Thomas , 2005, 2007. +# Paul De Vlieger , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Gollem (3.0.0-git)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-14 09:19+0100\n" +"PO-Revision-Date: 2013-01-14 10:19+0100\n" +"Last-Translator: Paul De Vlieger \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Lokalize 1.4\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "« %s » renommé en « %s »" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMo / %.2fMo (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d élément" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d éléments" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s a été enregistré avec succès." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s a été copié avec succès." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Accès à %s refusé" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Accès refusé au dossier « %s »." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Ajouter" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Tout" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Êtes-vous réellement certain de vouloir continuer ?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Êtes-vous certain ?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Croissant" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Demander" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Partage" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Dorsaux" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Voir ci-dessous le contenu de votre presse-papiers." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Annuler" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Impossible de modifier les permissions de %s : %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Impossible de copier les éléments dans le presse-papiers" + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Impossible de créer le dossier d'accueil : %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Impossible de couper les éléments vers le presse-papiers" + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Impossible de coller « %s » (presse-papiers vidé) : %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Changer de dossier" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Changer les permissions" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Vérifier les quotas" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Vérifier _Tout/Rien" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Altération du mode (permissions) effectué : " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "" +"Choisir les champs à afficher dans le gestionnaire de fichiers, selon cet " +"ordre:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Effacer" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Presse-papiers" + +#: quota.php:25 +msgid "Close" +msgstr "Fermer" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Colonnes non affichées:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Copier" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Créer un dossier" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Permissions vierges créées pour « %s ». Vous devez maintenant explicitement " +"attribuer des permissions sur ce module." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Répertoire courant :" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Couper" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Critère de tri par défaut :" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Ordre de tri par défaut :" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Supprimer" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Supprimer les dossiers récursivement ?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Décroissant" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Terminé" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Télécharger %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "ERREUR :" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Éditer %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Exécuter" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Fichier" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Actions" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Affichage des fichiers" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Heure de modification du fichier" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Nom du fichier" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Taille du fichier" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Type de fichier" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Paramètres d'action sur les fichiers" + +#: manager.php:100 +msgid "File deleted: " +msgstr "Fichier supprimé : " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Préférences d'affichage." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Fichier reçu : %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Les fichiers doivent être créés au sein d'un partage" + +#: manager.php:341 +msgid "Filter" +msgstr "Filtre" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Dossier supprimé : " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Les dossiers doivent être créés au sein d'un partage." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Groupe" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Partage %s invalide" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Élément copié dans le presse-papiers : %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Élément coupé vers le presse-papiers : %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Nombre d'éléments par page" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Afficher les dossiers en premier ?" + +#: manager.php:540 +msgid "Modified" +msgstr "Modifié" + +#: manager.php:514 +msgid "Name" +msgstr "Nom" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Nouveau dossier créé : " + +#: config/prefs.php:96 +msgid "No" +msgstr "Non" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Pas de quota trouvé." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Propriétaire" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Coller" + +#: manager.php:556 +msgid "Permission" +msgstr "Droits d'accès" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Accès refusé à %s : %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Accès refusé au dossier « %s » : %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Accès refusé à ce partage." + +#: manager.php:612 +msgid "Permissions" +msgstr "Droits d'accès" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Veuillez sélectionner un élément avant d'exécuter cette action." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Veuillez indiquer au moins un fichier à envoyer." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Affichage du quota" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Lire" + +#: manager.php:287 +msgid "Refresh" +msgstr "Actualiser" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Renommer" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Impossible de renommer un partage" + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Impossible de renommer un partage" + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Réinitialiser" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Enregistrer" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Tout sélectionner" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Sectionner Aucun" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Veuillez choisir un partage :" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Partager le dossier" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Dossier partagé" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Afficher les fichiers cachés?" + +#: manager.php:548 +msgid "Size" +msgstr "Taille" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Dossier Principal" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Le dossier ne peut pas être supprimé." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Les éléments suivants sont des dossiers :" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Les éléments suivants seront supprimés définitivement :" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "La fenêtre de départ s'est fermée. Sortie." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Il n'y a aucun fichier dans ce dossier." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Les colonnes vont s'afficher dans cet ordre :" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Pour retirer des éléments du presse-papiers, cochez la case à coté du nom du " +"fichier et cliquez sur « Effacer »." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Pour copier des éléments du presse-papiers vers le répertoire courant, " +"cochez la case à coté du nom du fichier et cliquez sur « Coller »." + +#: manager.php:506 +msgid "Type" +msgstr "Type" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Impossible de créer la session Gollem : %s" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Impossible de créer le module des permissions : %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Suppression impossible du fichier %s : %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Suppression impossible du dossier %s : %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "Aller à %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Envoyer fichier(s)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Interface utilisateur" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Écrire" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Oui" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Vous n'êtes pas autorisé à partager ce dossier" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Il faut avoir défini au moins un partage pour attribuer des permissions." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Permissions" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/gollem.pot php-horde-gollem-3.0.9/gollem-3.0.9/locale/gollem.pot --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/gollem.pot 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/gollem.pot 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,530 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Gollem\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2015-12-28 17:03+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" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "" + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "" + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "" + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "" + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "" + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "" + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "" + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "" + +#: clipboard.php:24 +msgid "Clear" +msgstr "" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "" + +#: quota.php:25 +msgid "Close" +msgstr "" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "" + +#: manager.php:100 +msgid "File deleted: " +msgstr "" + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "" + +#: manager.php:341 +msgid "Filter" +msgstr "" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "" + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "" + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "" + +#: manager.php:540 +msgid "Modified" +msgstr "" + +#: manager.php:514 +msgid "Name" +msgstr "" + +#: manager.php:50 +msgid "New folder created: " +msgstr "" + +#: config/prefs.php:96 +msgid "No" +msgstr "" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "" + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "" + +#: clipboard.php:25 +msgid "Paste" +msgstr "" + +#: manager.php:556 +msgid "Permission" +msgstr "" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "" + +#: manager.php:612 +msgid "Permissions" +msgstr "" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "" + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "" + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "" + +#: manager.php:287 +msgid "Refresh" +msgstr "" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "" + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "" + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "" + +#: clipboard.php:47 +msgid "Select None" +msgstr "" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "" + +#: manager.php:548 +msgid "Size" +msgstr "" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "" + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "" + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "" + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" + +#: manager.php:506 +msgid "Type" +msgstr "" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "" + +#: lib/Gollem.php:688 lib/Gollem.php:698 +#, php-format +msgid "Up to %s" +msgstr "" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/hr/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/hr/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/hr/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/hr/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,92 @@ + + + + + Datoteke: Akcije + Nova mapa + + Za dodavanje nove mape u kliknite na ikonu Nova mapa. Nakon unosa imena, + nova mapa se stvara unutar trenutno odabrane mape. + + Brisanje, izrezivanje, kopiranje i vraćanje datoteka + + Operacije brisanja, izrezivanja, kopiranja i vraćanja datoteka zahtijevaju + da je odabrana barem jedna datoteka. Datoteke se odabiru klikom na kućicu + ispred imena datoteke. Nakon toga je iz izbornika moguće odabrati akciju + koja će se primijeniti na odabrane datoteke. Operacije kopiranja i + izrezivanja spremaju odabrane datoteke u međuspremnik nakon čega ih je + moguće zalijepiti u neku drugu mapu. Nakon pozicioniranja u odredišnu + mapu, u međuspremniku se odaberu željene datoteke i klikne na Zalijepi. + Odabrane datoteke biti će premještene (ako su izrezane u međuspremnik) ili + kopirane (ako su kopirane u međuspremnik) u trenutnu mapu. + + Brisanje, izrezivanje, kopiranje i vraćanje mapa + + Uobičajeno se mogu brisati samo prazne mape, ali postoji mogućnost + brisanje mapa koje nisu prazne (rekurzivno brisanje). Ako ova opcija + nije uključena pokušaj brisanja mape koja nije prazna vratiti će grešku. + Da bi aktivirali ovu funkcionalnost potrebno je otići u postavke aplikacije + i za stavku Rekurzivno briši pod-mape odabrati vrijednost Da. Nakon toga + biti će moguće rekurzivno brisati sadržaj mape (zajedno sa mapom brišu se + pod-mape i datoteke koje ona sadrži). + + + + Operacije brisanja, izrezivanja, kopiranja i vraćanja mapa zahtijevaju + da je odabrana barem jedna mapa. Mape se odabiru klikom na kućicu + ispred imena mape. Nakon toga je iz izbornika moguće odabrati akciju + koja će se primijeniti na odabrane mape. Operacije kopiranja i + izrezivanja spremaju odabrane mape u međuspremnik nakon čega ih je + moguće zalijepiti u neku drugu mapu. Nakon pozicioniranja u odredišnu + mapu, u međuspremniku se odaberu željene mape i klikne na Zalijepi. + Odabrane mape biti će premještene (ako su izrezane u međuspremnik) ili + kopirane (ako su kopirane u međuspremnik) u trenutnu mapu. + + Rad sa međuspremnikom + + Izrezane ili kopirane datoteke i mape smještaju se u međuspremnik. Sadržaj + međuspremnika može se pregledati klikom na ikonu međuspremnika koja se + nalazi iznad popisa datoteka, desno od ikone za osvježavanje liste + datoteka. Ikona međuspremnika se pojavljuje samo ako međuspremnik nije + prazan. Datoteke koje su izrezane ili kopirane u međuspremnik i dalje se + nalaze u listi datoteka ali ispred njihovog imena više nema kućice za + označavanje. U sadržaju međuspremnika prikazane su sve izrezane ili + kopirane datoteke i mape. Datoteke iz međuspremnika moguće je zalijepiti u + trenutnu mapu, čije ime je prikazano iznad popisa datoteka u međuspremnika. + Odaberite datoteke koje želite zalijepiti i kliknite na Zalijepi. Odabrane + datoteke će biti premještene iz međuspremnika u trenutnu mapu. Nakon + završetka operacije prikazat će se sadržaj trenutne mape. Za brisanje + datoteka iz međuspremnika odaberite ih u sadržaju međuspremnika i kliknite + na Isprazni. Odabrane datoteke biti će vraćene u svoje originalne mape iz + kojih su kopirane u međuspremnik. + + + + + Datoteke: Prijenos + Prijenos datoteka na poslužitelj + + Za slanje jedne ili više datoteka prvo je potrebno otići u mapu u + koju će datoteke biti spremljene na poslužitelju. Kada se nalazite u + željenoj mapi kliknite na Browse. Otvorit će se dijalog za odabir + datoteka u kojemu treba pronaći i odabrati datoteku koju želite poslati sa + vašeg računala na poslužitelj. Istovremeno je moguće poslati više od jedne + datoteke. Nakon što se odabrali jednu datoteku za slanje, pojavit će se + novo polje za unos slijedeće datoteke. Kada ste odabrali sve datoteke koje + želite poslati, kliknite na Prenesi datoteke i sve odabrane datoteke biti + će poslane i spremljene u trenutnu mapu na poslužitelju. + + + + + Sortiranje + Sortiranje liste datoteka + + Prikaz liste datoteka i mapa može biti sortiran po bilo kojem polju. Da bi + sortirali listu po određenom polju kliknite na naslov stupca po kojem + želite sortirati. Popis datoteka će se ponovno prikazati sortiran po + odabranom stupcu. Smjer sortiranja može se promijeniti između uzlaznog i + silaznog klikom na ikonu strelice u naslovu stupca. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/hr/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/hr/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/hr/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/hr/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/hr/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/hr/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,577 @@ +# Croatian translations for Gollem package. +# Copyright 2009-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Valentin Vidic , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H3 (1.1)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2011-11-04 15:10+0100\n" +"PO-Revision-Date: 2011-11-08 16:49+0200\n" +"Last-Translator: Valentin Vidic \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\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" + +#: manager.php:62 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" je preimenovan u \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "Zauzeto %.2fMB od %.2fMB (%.2f%%)" + +#: manager.php:556 +#, php-format +msgid "%d item" +msgstr "%d datoteka" + +#: manager.php:556 +#, php-format +msgid "%d items" +msgstr "%d datoteke" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s uspješno spremljen." + +#: manager.php:177 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s uspješno dodan." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Odbijen pristup datoteci %s" + +#: lib/Gollem.php:48 lib/Gollem.php:295 lib/Gollem.php:344 lib/Gollem.php:366 +#: lib/Gollem.php:386 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Odbijen pristup mapi \"%s\"." + +#: templates/manager/manager.html:110 +msgid "Actions:" +msgstr "Akcije:" + +#: selectlist.php:79 +msgid "Add" +msgstr "Dodaj" + +#: templates/manager/manager.html:11 +msgid "All" +msgstr "Sve" + +#: templates/javascript_defs.php:20 +msgid "Are you sure you wish to continue?" +msgstr "Jeste li sigurni da želite nastaviti?" + +#: templates/javascript_defs.php:18 +msgid "Are you sure?" +msgstr "Jeste li sigurni?" + +#: config/prefs.php:67 +msgid "Ascending" +msgstr "Uzlazno" + +#: config/prefs.php:97 +msgid "Ask" +msgstr "Pitaj" + +#: templates/manager/manager.html:5 +msgid "Attributes" +msgstr "Atributi" + +#: lib/Application.php:124 +msgid "Backend" +msgstr "Poslužitelj datoteka" + +#: lib/Application.php:86 +msgid "Backends" +msgstr "Poslužitelji datoteka" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "U nastavku je prikazan trenutni sadržaj međuspremnika." + +#: selectlist.php:81 manager.php:281 clipboard.php:24 +#: templates/edit/edit.inc:13 +msgid "Cancel" +msgstr "Odustani" + +#: manager.php:82 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Nije uspjela promjena dozvola %s: %s" + +#: manager.php:152 +msgid "Cannot copy items onto clipboard." +msgstr "Nije uspjelo kopiranje datoteka u međuspremnik." + +#: manager.php:223 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Stvaranje početne mape korisnika nije uspjelo: %s" + +#: manager.php:154 +msgid "Cannot cut items onto clipboard." +msgstr "Nije uspjelo izrezivanje datoteka u međuspremnik." + +#: manager.php:179 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "" +"Nije uspjelo kopiranje iz međuspremnika \"%s\" (datoteke su već obrisane iz " +"međuspremnika): %s" + +#: manager.php:307 templates/manager/manager.html:70 +msgid "Change Folder" +msgstr "Promijeni mapu" + +#: templates/manager/manager.html:112 +msgid "Change Permissions" +msgstr "Promijeni dozvole" + +#: lib/Gollem.php:588 +msgid "Change Server" +msgstr "Promijeni poslužitelj" + +#: lib/Application.php:286 +msgid "Check Quota" +msgstr "Provjeri kvotu" + +#: manager.php:552 +msgid "Check _All/None" +msgstr "Odaberi sve/ništa" + +#: manager.php:80 +msgid "Chmod done: " +msgstr "Promjena dozvola završena: " + +#: lib/Application.php:256 +msgid "Choose which columns to display, and in what order:" +msgstr "Odaberite stupce koje želite prikazati i kojim redoslijedom:" + +#: clipboard.php:25 templates/manager/manager.html:131 +msgid "Clear" +msgstr "Isprazni" + +#: clipboard.php:44 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "Međuspremnik" + +#: quota.php:26 +msgid "Close" +msgstr "Zatvori" + +#: lib/Application.php:260 +msgid "Columns that will not be displayed:" +msgstr "Stupci koji neće biti prikazati:" + +#: clipboard.php:28 templates/manager/manager.html:115 +msgid "Copy" +msgstr "Kopiraj" + +#: manager.php:300 templates/manager/manager.html:58 +msgid "Create Folder" +msgstr "Nova mapa" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Postavljenje prazne dozvole za \"%s\". Za pristup ovom poslužitelju datoteka " +"sada je potrebno eksplicitno dozvoliti pristup." + +#: templates/clipboard/clipboard.html:21 +msgid "Current directory:" +msgstr "Trenutna mapa:" + +#: clipboard.php:27 templates/manager/manager.html:116 +msgid "Cut" +msgstr "Izreži" + +#: config/prefs.php:59 +msgid "Default sorting criteria:" +msgstr "Podrazumijevani kriterij sortiranja:" + +#: config/prefs.php:70 +msgid "Default sorting direction:" +msgstr "Podrazumijevani smjer sortiranja:" + +#: templates/manager/manager.html:119 +msgid "Delete" +msgstr "Obriši" + +#: config/prefs.php:99 +msgid "Delete folders recursively?" +msgstr "Rekurzivno briši pod-mape?" + +#: config/prefs.php:68 +msgid "Descending" +msgstr "Silazno" + +#: selectlist.php:80 +msgid "Done" +msgstr "Završeno" + +#: manager.php:427 +#, php-format +msgid "Download %s" +msgstr "Preuzmi %s" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "Greška:" + +#: templates/edit/edit.inc:8 +#, php-format +msgid "Edit %s" +msgstr "Uredi %s" + +#: templates/manager/manager.html:26 +msgid "Execute" +msgstr "Izvršavanje" + +#: templates/javascript_defs.php:22 templates/manager/manager.html:201 +msgid "File" +msgstr "Datoteka" + +#: config/prefs.php:86 +msgid "File Actions" +msgstr "Akcije na datoteci" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Prikaz datoteka" + +#: config/prefs.php:56 +msgid "File Modification Time" +msgstr "Posljednja izmjena" + +#: config/prefs.php:55 +msgid "File Name" +msgstr "Ime datoteke" + +#: config/prefs.php:57 +msgid "File Size" +msgstr "Veličina datoteke" + +#: config/prefs.php:54 +msgid "File Type" +msgstr "Tip datoteke" + +#: config/prefs.php:87 +msgid "File action settings." +msgstr "Postavke akcija na datotekama." + +#: manager.php:97 +msgid "File deleted: " +msgstr "Datoteka obrisana: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Postavke prikaza datoteka." + +#: manager.php:118 +#, php-format +msgid "File received: %s" +msgstr "Datoteka primljena: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Datoteke se mogu zapisati samo na VFS poslužitelja datoteka." + +#: templates/manager/manager.html:129 +msgid "Filter" +msgstr "Filtriraj" + +#: templates/manager/manager.html:128 +msgid "Filter:" +msgstr "Filter:" + +#: manager.php:89 +msgid "Folder removed: " +msgstr "Mapa obrisana: " + +# virtual file system? pozadinske procese? +#: lib/Api.php:155 lib/Api.php:186 +msgid "Folders must be created inside a VFS backend." +msgstr "Mape se mogu napraviti samo na VFS poslužitelju datoteka." + +#: templates/manager/manager.html:72 +msgid "Go to:" +msgstr "Idi u:" + +#: manager.php:531 templates/manager/manager.html:10 +msgid "Group" +msgstr "Grupa" + +#: lib/Api.php:405 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Traženi poslužitelj datoteka ne postoji: %s" + +#: manager.php:146 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Datoteka prekopirana u međuspremnik: %s" + +#: manager.php:148 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Datoteka premještena u međuspremnik: %s" + +#: config/prefs.php:77 +msgid "Items per page" +msgstr "Broj datoteka po stranici" + +#: templates/login/login.html:67 +msgid "Language" +msgstr "Jezik" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Prvo prikaži mape?" + +#: manager.php:501 +msgid "Modified" +msgstr "Posljednja izmjena" + +#: manager.php:479 +msgid "Name" +msgstr "Ime" + +#: templates/manager/manager.html:46 templates/manager/manager.html:60 +msgid "Name:" +msgstr "Ime:" + +#: manager.php:47 +msgid "New folder created: " +msgstr "Nova mapa napravljena: " + +#: config/prefs.php:95 +msgid "No" +msgstr "Ne" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "Kvota nije nađena." + +#: manager.php:282 +msgid "OK" +msgstr "U redu" + +#: manager.php:524 templates/manager/manager.html:9 +msgid "Owner" +msgstr "Vlasnik" + +#: clipboard.php:26 +msgid "Paste" +msgstr "Zalijepi" + +#: manager.php:517 +msgid "Permission" +msgstr "Dozvola" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Odbijen pristup datoteci %s: %s" + +#: manager.php:216 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Odbijen pristup u mapu \"%s\": %s" + +#: lib/Api.php:413 +msgid "Permission denied to this backend." +msgstr "Odbijen pristup odabranom poslužitelju datoteka." + +#: templates/javascript_defs.php:13 +msgid "Please provide your password." +msgstr "Molim unesite svoju lozinku." + +#: templates/javascript_defs.php:12 +msgid "Please provide your username." +msgstr "Molim unesite svoje korisničko ime." + +#: templates/javascript_defs.php:16 +msgid "Please select an item before this action." +msgstr "Molim odaberite datoteku prije nego odaberete akciju." + +#: templates/javascript_defs.php:21 +msgid "Please specify at least one file to upload." +msgstr "Molim odaberite barem jednu datoteku za prijenos." + +#: quota.php:57 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "Prikaz kvote" + +#: templates/manager/manager.html:14 +msgid "Read" +msgstr "Čitanje" + +#: manager.php:287 +msgid "Refresh" +msgstr "Osvježi" + +#: templates/manager/manager.html:44 templates/manager/manager.html:122 +msgid "Rename" +msgstr "Preimenuj" + +#: lib/Api.php:200 +msgid "Renaming across backends is not supported." +msgstr "Preimenovanje između poslužitelja datoteka nije podržano." + +#: lib/Api.php:194 +msgid "Renaming of backends is not allowed." +msgstr "Nije dozvoljeno mijenjati ime poslužitelja datoteka." + +#: templates/edit/edit.inc:12 +msgid "Reset" +msgstr "Resetiraj" + +#: manager.php:280 templates/edit/edit.inc:11 +msgid "Save" +msgstr "Spremi" + +#: clipboard.php:48 templates/clipboard/clipboard.html:28 +msgid "Select All" +msgstr "Odaberi sve" + +#: clipboard.php:49 +msgid "Select None" +msgstr "Označiti ništa" + +#: lib/Application.php:258 +msgid "Select a backend:" +msgstr "Odaberite poslužitelj datoteka:" + +#: templates/login/login.html:31 +msgid "Server" +msgstr "Poslužitelj" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Prikaži skrivene datoteke?" + +#: manager.php:509 +msgid "Size" +msgstr "Veličina" + +#: lib/Api.php:229 +msgid "The application folder can not be deleted." +msgstr "Aplikacijska mapa se ne može obrisati." + +#: templates/javascript_defs.php:19 +msgid "The following item(s) are folders:" +msgstr "Slijedeće stavke su mape:" + +#: templates/javascript_defs.php:17 +msgid "The following items will be permanently deleted:" +msgstr "Slijedeće datoteke biti će nepovratno obrisane:" + +#: templates/javascript_defs.php:25 +msgid "The original opener window has been closed. Exiting." +msgstr "Originalni početni prozor je zatvoren. Završavam s radom." + +#: selectlist.php:176 templates/manager/manager.html:140 +msgid "There are no files in this folder." +msgstr "U ovoj mapi nema datoteka." + +#: lib/Application.php:257 +msgid "These columns will display in this order:" +msgstr "Stupci će biti prikazani slijedećim redoslijedom:" + +#: templates/clipboard/clipboard.html:17 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Za brisanje datoteka iz međuspremnika odaberite kućicu pored imena datoteke " +"i kliknite na "Isprazni"." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Za kopiranje datoteke iz međuspremnika u trenutni direktorij odaberite " +"kućicu pored imena datoteke i kliknite na "Zalijepi"." + +#: manager.php:471 +msgid "Type" +msgstr "Tip" + +#: lib/Api.php:409 +msgid "Unable to create Gollem session" +msgstr "Nije uspjelo stvaranje Gollem sjednice" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Nije uspjelo dodavanje dozvola na poslužitelj datoteka: %s" + +#: manager.php:99 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Nije uspjelo brisanje datoteke %s: %s" + +#: manager.php:91 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Nije uspjelo brisanje mape %s: %s" + +#: lib/Gollem.php:552 lib/Gollem.php:562 +#, php-format +msgid "Up to %s" +msgstr "Povratak u %s" + +#: manager.php:296 +msgid "Upload File(s)" +msgstr "Prenesi datoteke" + +#: config/prefs.php:14 config/prefs.php:85 +msgid "User Interface" +msgstr "Korisničko sučelje" + +#: manager.php:291 +msgid "View Clipboard" +msgstr "Pregledaj međuspremnik" + +#: templates/manager/manager.html:20 +msgid "Write" +msgstr "Pisanje" + +#: config/prefs.php:96 +msgid "Yes" +msgstr "Da" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Da bi postavili dozvole mora biti definiran bar jedan poslužitelj datoteka." + +#: lib/Gollem.php:586 lib/Gollem.php:589 +msgid "_Change Server" +msgstr "Promijeni poslužitelj" + +#: lib/Application.php:273 +msgid "_My Home" +msgstr "_Početna" + +#: lib/Application.php:276 +msgid "_Permissions" +msgstr "_Dozvole" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/.htaccess php-horde-gollem-3.0.9/gollem-3.0.9/locale/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/.htaccess 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/.htaccess 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,6 @@ + + Require all denied + + + Deny from all + diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/hu/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/hu/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/hu/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/hu/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,130 @@ + + + + Fájl menedzser: Műveletek + Mappák létrehozása + + Ha új almappát kívánunk létrehozni a jelenlegi mappán belül, válasszuk az 'Új mappa + létrehozása' funkciót a 'Műveletek' legördülő menüből. + + Fájlok törlése, vágóasztalra való áthelyezése, másolása ill. onnan történő + beillesztése + + Ezekhez a műveletekhez először ki kell jelölnie legalább egy fájlt. Miután a fájlok + bal oldalán levő kis négyzetekben megjelölte a megfelelőket, válassza ki a megfelelő + funkciót a 'Műveletek' legördülő menüből. Ha az 'Áthelyezés a vágóasztalra' vagy a + 'Másolás a vágóasztalra' műveletet választotta, akkor megjelenik a + 'Beillesztés a vágóasztalról' funkció. Keresse meg azt a mappát ahova be kívánja + illeszteni a fájlokat, majd válassza ki a 'Beillesztés a vágóasztalról' funkciót + a 'Műveletek' legördülő menüből. A korábban kiválasztott fájlok vagy átkerülnek + (áthelyzezés esetén) vagy átmásolódnak (másolás esetén) az új mappába. + + Mappák törlése, vágóasztalra való áthelyezése, másolása ill. onnan történő + beillesztése + + Alapértelmezett beállítás esetén csak olyan mappákat törölhet, melyek üresek, bár + az opciókban beállíthatja a nemüres mappák (rekurzív) törölhetőségét. Enélkül viszont + ha megkísérel kitörölni egy nemüres mappát, akkor ez nem fog sikerülni, hibajelzést + kap. A nemüres mappák rekurzív törléséhez kattintson az Opciókra, majd itt a + Beállítások pontra, ahol már beállítható a kívánt lehetőség. + Ha mappákat kíván törölni, áthelyezni, vagy másolni, akkor először válasszon ki + legalább egy mappát. Miután a mappák bal oldalán levő kis négyzetekben megjelölte + a megfelelőket, válassza ki a megfelelő funkciót a 'Műveletek' legördülő menüből. + Ha az 'Áthelyezés a vágóasztalra' vagy a 'Másolás a vágóasztalra' műveletet + választotta, akkor megjelenik a 'Beillesztés a vágóasztalról' funkció. Keresse meg + azt a mappát ahova be kívánja illeszteni a mappákat, majd válassza ki a + 'Beillesztés a vágóasztalról' funkciót a 'Műveletek' legördülő menüből. + A korábban kiválasztott mappák vagy átkerülnek (áthelyzezés esetén) vagy + átmásolódnak (másolás esetén) az új mappába. + + + + Fájl menedzser: Feltöltés + Fájlok feltöltése + + Ha egy vagy több fájlt kíván a szerverre feltölteni, először keresse meg a Fájl + menedzserben azt a mappát, ahova az állományokat el kívánja helyezni. Ez lesz az + éppen érvényes alkönyvtár. Ezután kattintson a 'Böngészés' (Browse) gombra, majd + a felbukkanó Fájlfeltöltés (File upload) ablakban keresse meg és jelölje ki + (a saját gépén) a feltöltendő fájlt és kattintson az OK (esetleg Megnyitás/Open) + gombra. Egyszerre több fájlt is feltölthet. Minden fájlkiválasztás után a Fájl + menedzser egy újabb sorban új 'Böngészés' (Browse) gombot jelenít meg. Ezt használva + több fájl is kijelölhető feltöltésre. Miután kijelölte a feltöltendő fájl(oka)t, + kattintson a Fájlfeltöltés gombra. Erre a kijelölt állományok a szerverre fognak + kerülni, a Fájl menedzserben korábban kiválasztott mappába. + + + + Sorbarendezés + Sorbarendezés + + Az állományok listázáskor bármely oszlop szerint sorbarendezhetők. Ehhez mindössze + a megfelelő oszlop fejlécére kell kattintania. Erre a lista újra megjelenik, mégpedig + a kívánt oszlop szerinti sorrendben. Ha a sorbarendezés irányát kívánja megváltoztatni, + akkor kattintson a fejlécben levő kis háromszög alakú nyílra. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/hu/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/hu/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/hu/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/hu/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/hu/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/hu/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,539 @@ +# Gollem Hungarian translation file. +# Copyright 2005-2008 Laszlo L. Tornoci +# This file is distributed under the same license as the Gollem package. +msgid "" +msgstr "" +"Project-Id-Version: Gollem H5 (3.0.4-git)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-29 11:44+0100\n" +"PO-Revision-Date: 2014-08-12 10:34+0200\n" +"Last-Translator: Andras Galos \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "A \"%s\" állományt átneveztük erre: \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d fájl" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d állomány" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s sikeresen elmentve." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s-t sikeresen beillesztettük." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "%s eléréséhez nem rendelkezik megfelelő jogosultsággal." + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "" +"A(z) %s mappába való belépéshez nem rendelkezik megfelelő jogosultsággal." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Bevitel" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Mindenki" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Biztos, hogy folytatni kívánja?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Biztos ebben?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "növekvő" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Kérdezzen meg a gép" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Tároló" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Tároló alrendszerek" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Alább látható a vágóasztal jelenlegi tartalma." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Mégse" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "%s elérési jogosultságait nem sikerült megváltoztatni: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Nem sikerült az állomány(oka)t a vágóasztalra másolni." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Nem sikerült az induló alkönyvár létrehozása: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Nem sikerült az állomány(oka)t a vágóasztalra áttenni." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Nem sikerült \"%s\"-t beilleszteni (a vágóasztal üres): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Mappaváltás" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Jogosultságok módosítása" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Ellenőrizzük a kvótát" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Mind/egyik sem kijelölése" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Az elérési jogosultságokat megváltoztattuk: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Mely mezők, és milyen sorrendben való megjelenítése:sorrendben:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Törlés" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Vágóasztal" + +#: quota.php:25 +msgid "Close" +msgstr "Bezárás" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Rejtett mezők:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Másoljuk át" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Új mappa létrehozása" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"\"%s\" számára nincsenek meghatározva az elérési jogosultságok. Ezeket most " +"közvetlenül meg kell adnia." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "A jelenlegi alkönyvtár:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Kivágás" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "A sorbarendezés alapértelmezés szerinti szempontja:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "A sorbarendezés alapértelmezés szerinti iránya:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Törlés" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "A mappákban levő almappák rekurzív törlése?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "csökkenő" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Kész" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Töltsük le %s-t" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "HIBA:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "%s módosítása" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Végrehajtás" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Fájl" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Fájlműveletek" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "A fájl megjelenítése" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "A fájl módosítási ideje" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Fájlnév" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Fájlméret" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Fájltípus" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Fájl műveletek." + +#: manager.php:100 +msgid "File deleted: " +msgstr "A fájlt töröltük: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Megjelenítés" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "A fájlt feltöltöttük: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "A fájlokat egy VFS alrendszeren belül kell menteni." + +#: manager.php:341 +msgid "Filter" +msgstr "Szűrő" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "A mappát töröltük:" + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "A mappákat egy VFS alrendszeren belül kell menteni." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Csoport" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Érvénytelen tároló: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Az állomány(oka)t a vágóasztalra másoltuk: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Az állomány(oka)t a vágóasztalra tettük át: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Egy oldalon megjelenő fájlok maximális száma" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "A listában a mappák legyenek elöl?" + +#: manager.php:540 +msgid "Modified" +msgstr "Módosítva" + +#: manager.php:514 +msgid "Name" +msgstr "Név" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Az új mappát létrehoztuk: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Nem" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Nincs kvóta adat." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Tulajdonos" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Beillesztés" + +#: manager.php:556 +msgid "Permission" +msgstr "Jogosultság" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "A hozzáférés megtagadva %s-hez: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "A hozzáférés megtagadva \"%s\" mappához: %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Hozzáférés megtagadva ehhez a tárolóhoz" + +#: manager.php:612 +msgid "Permissions" +msgstr "Jogosultság" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Kérem előbb válasszon ki egy állományt." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Kérem jelöljön ki legalább egy feltöltendő fájlt." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "A kvóta adatok" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Olvasás" + +#: manager.php:287 +msgid "Refresh" +msgstr "Frissítés" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Átnevezés" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Tárolók közötti átnevezés nem támogatott." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Tárolók átnevezése nem támogatott." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Újrakezdés" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Mentés" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Mind kijelölése" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Kijelölés törlése" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Kérem válasszon egy tárolót:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Mappa megosztása" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Megosztott mappa" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Mutassuk a rejtett fájlokat?" + +#: manager.php:548 +msgid "Size" +msgstr "Méret" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Kezdő mappa" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Az alkalmazás mappája nem törölhető." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "A következő fájlok mappák:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "A következő állományok végleges törlésre kerülnek: " + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "" +"Az ablak bezárult, amiből ezt eredetileg megnyitották. Kilépés következik." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Ebben a mappában nincsenek fájlok." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Az mezőkk megjelenítési sorrendje:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Úgy törölhet egyes állományokat a vágóasztalról, hogy kijelöli a megfelelő " +"állomány(ok) neve melletti ki négyzet(ek)et, majd a Törlés gombra kattint." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Úgy illeszthet be egyes állományokat a vágóasztalról a jelenleg érvényes " +"alkönyvtárba, hogy kijelöli a megfelelő állomány(ok) neve melletti kis " +"négyzet(ek)et, majd a Beillesztés gombra kattint." + +#: manager.php:506 +msgid "Type" +msgstr "Típus" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Fájlkezelési munkamenet nem hozható létre" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "A tároló alrendszerben nem hozható létre a jogosultság: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "\"%s\" törlése nem sikerült: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "A \"%s\" mappa törlése nem sikerült: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "%s-re" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Fájlfeltöltés" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "A program használata" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Írás" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Igen" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Ön nem jogosult e mappa megosztására." + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Az elérési jogok beállítása előtt legalább egy tároló alrendszert definiálni " +"kell." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Jogosultságok" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/it/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/it/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/it/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/it/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/it/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/it/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,537 @@ +# Gollem Italian translation. +# Copyright 2006-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Fabio Pedretti , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 1.1-cvs\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-29 11:44+0100\n" +"PO-Revision-Date: 2015-08-17 17:39+0200\n" +"Last-Translator: Massimo Balestrieri \n" +"Language-Team: Horde i18n \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" rinominato in \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d voci" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d voci" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s salvato con successo." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s è stato incollato con successo." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Accesso negato a %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Accesso negato alla cartella \"%s\"." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Aggiungi" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Tutti" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Sei sicuro di voler continuare?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Sei sicuro?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Crescente" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Chiedi" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Backend" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Backend" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Qui sotto c'è il contenuto degli appunti." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Annulla" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Impossibile cambiare i permessi di %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Impossibile copiare gli oggetti negli appunti." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Impossibile creare la cartella principale: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Impossibile tagliare gli oggetti negli appunti." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Impossibile incollare \"%s\" (file rimosso dagli appunti): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Cambia Cartella" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Cambia Permessi" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Spazio Disponibile" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Seleziona _Tutti/Nessuno" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Chmod fatto: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Scegli le colonne da visualizzare e come ordinarle." + +#: clipboard.php:24 +msgid "Clear" +msgstr "Azzera" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Appunti" + +#: quota.php:25 +msgid "Close" +msgstr "Chiudi" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Colonne che non verranno visualizzate:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Copia" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Crea Cartella" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Permessi vuoti creati per \"%s\". Ora devi esplicitamente assegnare " +"l'accesso a questo backend." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Cartella corrente:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Taglia" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Criterio predefinito di ordinamento:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Direzione di ordinamento predefinita:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Elimina" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Cancellare tutte le sottocartelle?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Decrescente" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Fatto" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Scarica %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "ERRORE:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Modifica %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Esegui" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "File" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Azioni File" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Visualizzazione File" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Ora di modifica del file" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Nome File" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Dimensione File" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Tipo File" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Configurazioni delle azioni" + +#: manager.php:100 +msgid "File deleted: " +msgstr "File eliminato: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Preferenze di Visualizzazione" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "File ricevuto: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "I file devono essere scritti all'interno di un backend VFS." + +#: manager.php:341 +msgid "Filter" +msgstr "Filtro" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Cartella eliminata: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Le cartelle devono essere create all'interno di un backend VFS." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Gruppo" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Richiesto un backend invalido: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Oggetto copiato negli appunti: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Oggetto tagliato negli appunti: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Elementi per pagina" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Elenca prima le cartelle?" + +#: manager.php:540 +msgid "Modified" +msgstr "Modificato" + +#: manager.php:514 +msgid "Name" +msgstr "Nome" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Nuova cartella creata: " + +#: config/prefs.php:96 +msgid "No" +msgstr "No" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Limiti allo spazio disponibile non impostati." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Proprietario" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Incolla" + +#: manager.php:556 +msgid "Permission" +msgstr "Permessi" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Permesso negato a %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Permesso negato alla cartella \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Permesso negato a questo backend." + +#: manager.php:612 +msgid "Permissions" +msgstr "Permessi" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Si prega di selezionare una voce prima di questa azione." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Si prega di specificare almeno un file da caricare." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Visualizza Spazio Disponibile" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Leggi" + +#: manager.php:287 +msgid "Refresh" +msgstr "Aggiorna" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Rinomina" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Rinominare tra backend non è supportato." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Rinominare i backend non è supportato." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Resetta" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Salva" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Seleziona Tutto" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Selezione nulla" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Selezionare un backend:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Condividi Cartelle" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Cartelle Condivise" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Mostra file preceduti dal punto?" + +#: manager.php:548 +msgid "Size" +msgstr "Dimensione" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Cartella Principale" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "La cartella applicazioni non può essere eliminata." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "I seguenti oggetti sono cartelle:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "I seguenti oggetti saranno definitivamente eliminati:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "La finestra originale è stata chiusa. Uscire." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Non ci sono file in questa cartella." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Queste colonne verrano mostrate in questo ordine:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Per rimuovere oggetti dagli appunti, seleziona la casella accanto al nome " +"del file e clicca su "Rimuovi"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Per incollare oggetti dagli appunti alla cartella corrente, seleziona la " +"casella accanto al nome del file e clicca su "Incolla"." + +#: manager.php:506 +msgid "Type" +msgstr "Tipo" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Impossibile creare la sessione Gollem" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Impossibile creare permessi del backend: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Impossibile eliminare il file %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Impossibile eliminare la cartella %s: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "Fino a %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Carica file" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Interfaccia Utente" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Scrivi" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Si" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Non sei abilitato a condividere questa cartella" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"E' necessario aver definito almeno un backend per impostare i permessi." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Permessi" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/ja/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/ja/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/ja/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/ja/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/ja/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/ja/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,538 @@ +# Japanese translation for Gollem. +# Copyright 2009-2013 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Hiromi Kimura +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H5 (3.0.2-git)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-29 11:44+0100\n" +"PO-Revision-Date: 2014-06-08 11:18+0900\n" +"Last-Translator: Hiromi Kimura \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 1.6.5\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" は \"%s\" に名前が変更されました" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d アイテム" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d アイテム" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s は保存されました。" + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s は正常に送られました。" + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "%s へのアクセスが拒否されました" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "フォルダー %s へのアクセスが拒否されました。" + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "追加" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "全て" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "本当に操作を続けますか?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "本当ですか?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "昇順" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "尋ねる" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "バックエンド" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "バックエンド" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "以下がクリップボードの内容です。" + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "取り消し" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "%s を chmod できません:%s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "クリップボードにコピーできません。" + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "ホームディレクトリを作成できません:%s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "クリップボードに移動できません。" + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "\"%s\" が貼り付けられません(クリップボードからクリアされました): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "フォルダの変更" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "権限の変更" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "クォータ確認" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "_A全て選択/解除" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Chmod 完了:" + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "どの欄をどの順序で表示するかを選択:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "クリア" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "クリップボード" + +#: quota.php:25 +msgid "Close" +msgstr "閉じる" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "表示させない欄:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "コピー" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "フォルダ作成" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"\"%s\" への空の権限を作成しました。このバックエンドでのアクセス許可を今すぐ指" +"定して下さい。" + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "現在のディレクトリ:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "切り取り" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "デフォルトのソート基準:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "デフォルトのソート方向:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "削除" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "フォルダの階層を削除しますか?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "降順" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "完了" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "ダウンロード %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "エラー:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "%s を編集" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "実行" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "ファイル" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "ファイル動作" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "ファイル表示" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "ファイルの更新日時" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "ファイルの名前" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "ファイルの大きさ" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "ファイルの種類" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "ファイル動作の設定をします。" + +#: manager.php:100 +msgid "File deleted: " +msgstr "ファイルは削除されました:" + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "ファイル表示の設定をします。" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "ファイルを受け取りました: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "ファイルは VFS バックエンドの内側に書かれなければなりません。" + +#: manager.php:341 +msgid "Filter" +msgstr "フィルタ" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "フォルダを削除しました:" + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "フォルダは VFS バックエンドの内側に作成しなければなりません。" + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "グループ" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "無効なバックエンドが要求されました:%s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "クリップボードにコピーされました: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "クリップボードに移動しました: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "1ページの項目数" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "フォルダを最初に表示しますか?" + +#: manager.php:540 +msgid "Modified" +msgstr "変更日" + +#: manager.php:514 +msgid "Name" +msgstr "名前" + +#: manager.php:50 +msgid "New folder created: " +msgstr "新しいフォルダが作成されました:" + +#: config/prefs.php:96 +msgid "No" +msgstr "いいえ" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "クォータが確認できません。" + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "所有者" + +#: clipboard.php:25 +msgid "Paste" +msgstr "貼り付け" + +#: manager.php:556 +msgid "Permission" +msgstr "権限" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "%s へのアクセスが拒否されました:%s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "フォルダー \"%s\" へのアクセスが拒否されました:%s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "このバックエンドへのアクセスが拒否されました。" + +#: manager.php:612 +msgid "Permissions" +msgstr "権限" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "先ずアイテムを選択して下さい。" + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "少なくとも1つのファイルを指定して下さい。" + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "クォータ表示" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "読み出し" + +#: manager.php:287 +msgid "Refresh" +msgstr "再表示" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "名前変更" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "バックエンド間の名前の変更はサポートされていません。" + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "バックエンドの名前の変更は許可されていません。" + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "リセット" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "保存" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "全て選択" + +#: clipboard.php:47 +msgid "Select None" +msgstr "どれも選択しない" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "バックエンドを選択:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "フォルダを共有" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "共有フォルダ" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "ドットで始まるファイルを表示しますか?" + +#: manager.php:548 +msgid "Size" +msgstr "サイズ" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "先頭フォルダ" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "アプリケーションフォルダは削除できません。" + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "以下の項目はフォルダーです:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "以下のアイテムは完全に削除されます:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "元のウインドーが閉じられました。終了します。" + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "このフォルダにファイルはありません。" + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "これらの欄はこの順に表示されます:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"クリップボードからアイテムをクリアするには、以下から選択し、「クリア」をク" +"リックして下さい。" + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"クリップボードから現在のディレクトリに貼り付けるには、以下から選択し、「貼り" +"付け」をクリックして下さい。" + +#: manager.php:506 +msgid "Type" +msgstr "種類" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Gollem のセッションを作成できません" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "バックエンドの権限が作成できません:%s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "ファイル %s を削除できません: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "フォルダ %s を削除できません: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "上の %s へ" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "ファイルをアップロード" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "ユーザインターフェイス" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "書き込み" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "はい" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "あなたはこのフォルダーの共有を許可されていません" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"権限を設定するには少なくとも1つのバックエンドを定義する必要があります。" + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_P権限" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/ko/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/ko/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/ko/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/ko/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/ko/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/ko/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,318 @@ +# Gollem Korean translation. +# Copyright 2001 J.I Kim. +# J.I Kim , 2001. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 0.0.1-cvs\n" +"POT-Creation-Date: 2001-12-31 13:59+0900\n" +"PO-Revision-Date: 2001-11-09 16:29+0900\n" +"Last-Translator: J.I Kim \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid " to: " +msgstr "의 파일이름 변경:" + +#, c-format +msgid "%d items in %s" +msgstr "%d 항목 (%s)" + +#, c-format +msgid "%s renamed to %s" +msgstr "%s는 %s로 이름 변경되었습니다." + +msgid "Note: These settings won't take effect until your next login." +msgstr "참조: 이 설정값은 다음 로그인시에 반영됩니다." + +msgid "An illegal value was specified." +msgstr "잘못된 값입니다." + +msgid "Are you sure?" +msgstr "확실합니까?" + +msgid "Ascending" +msgstr "오름차순" + +#, c-format +msgid "Cannot chmod %s" +msgstr "%s의 접근설정을 변경할 수 없습니다." + +#, c-format +msgid "Cannot delete %s" +msgstr "%s를 삭제할 수 없습니다." + +msgid "Change your file sorting options." +msgstr "파일 정렬 옵션 변경" + +msgid "Checkbox" +msgstr "체크박스" + +msgid "Chmod Items" +msgstr "접근설정값 변경" + +msgid "Chmod done: " +msgstr "접근설정값 변경 완료: " + +msgid "Choose Action:" +msgstr "명령어 선택:" + +msgid "Create Folder" +msgstr "새로운 폴더 만들기" + +msgid "Default sorting criteria:" +msgstr "기본 정렬 범주:" + +msgid "Default sorting direction:" +msgstr "기본 정렬 방향:" + +msgid "Delete Items" +msgstr "파일 삭제" + +msgid "Descending" +msgstr "내림차순" + +msgid "Directory removed: " +msgstr "디렉토리 삭제: " + +msgid "Display Options" +msgstr "화면 출력 옵션" + +msgid "" +"Either you have logged in incorrectly or your login has expired. Please " +"login again." +msgstr "" +"정확하게 로그인하지 않았거나 로그인이 만료 되었습니다. 다시 로그인하세요." + +msgid "Error creating new folder: " +msgstr "새로운 폴더 만들기 오류: " + +msgid "Error renaming: " +msgstr "파일 이름 변경 오류: " + +msgid "Error uploading file: " +msgstr "파일 업로드 오류: " + +msgid "Error" +msgstr "오류" + +msgid "File Modification Time" +msgstr "파일 변경 시간" + +msgid "File Name" +msgstr "파일 이름" + +msgid "File Size" +msgstr "파일 크기" + +msgid "File Type" +msgstr "파일 유형" + +msgid "File deleted: " +msgstr "파일 삭제: " + +msgid "File received: " +msgstr "파일 올리기: " + +msgid "Gollem is not properly configured" +msgstr "Gollem이 정상 설정되지 않았습니다." + +msgid "Group" +msgstr "그룹" + +msgid "Help" +msgstr "도움말" + +msgid "Home" +msgstr "홈" + +msgid "Incorrect number of items." +msgstr "잘못된 항목수" + +msgid "Language" +msgstr "언어" + +msgid "Log in" +msgstr "로그인" + +msgid "" +"Login failed for some reason. Most likely your username or password was " +"entered incorrectly." +msgstr "" +"어떤 이유로 로그인이 실패했습니다. 대부분의 경우 사용자이름 또는 비밀번호가 " +"올바르지 않기 때문입니다." + +msgid "Logout" +msgstr "종료" + +msgid "Message" +msgstr "메세지" + +msgid "Modified" +msgstr "변경일자" + +msgid "Name" +msgstr "이름" + +msgid "New User Introduction" +msgstr "새로운 사용자를 위한 도움말" + +msgid "New folder created: " +msgstr "새로운 폴더 생성: " + +msgid "No such directory: " +msgstr "디렉토리가 없습니다: " + +msgid "Options" +msgstr "옵션" + +msgid "Other Options" +msgstr "다른 옵션" + +msgid "Owner" +msgstr "소유자" + +msgid "Password" +msgstr "비밀 번호" + +msgid "Permission" +msgstr "파일접근모드" + +msgid "Please enter the mode in numeric format:" +msgstr "숫자형식으로 입력하세요:" + +msgid "Please enter the name of the new folder:" +msgstr "새로운 폴더의 이름을 입력하세요:" + +msgid "Please provide your password." +msgstr "비밀번호를 입력하세요." + +msgid "Please provide your username." +msgstr "사용자이름을 입력하세요." + +msgid "Please select an item before this action." +msgstr "실행할 항목을 선택하세요" + +msgid "Please specify a file to upload." +msgstr "업로드할 파일을 선택하세요." + +msgid "Problem?" +msgstr "문제?" + +msgid "Refresh" +msgstr "다시 읽기" + +msgid "Rename " +msgstr "이름 변경 " + +msgid "Rename Items" +msgstr "파일 이름 변경" + +msgid "Select your preferred language:" +msgstr "자주 사용하는 언어를 선택하세요:" + +msgid "Server" +msgstr "서버" + +msgid "Set the language that menu items, explanations, and help are in." +msgstr "메뉴, 설명, 도움말을 표시할 언어를 선택하세요." + +msgid "Size" +msgstr "크기" + +msgid "Some of Gollem's configuration files are missing:" +msgstr "일부 Gollem의 설정파일이 없습니다:" + +msgid "Sort Direction" +msgstr "정렬 순서" + +msgid "Success" +msgstr "완료" + +msgid "The following items will be permenantly deleted: " +msgstr "다음의 항목이 영구 삭제될것입니다:" + +msgid "There are no files in this directory." +msgstr "디렉토리에 파일이 없습니다." + +msgid "" +"This file controls the default preferences for Gollem, and also controls " +"which preferences users can alter." +msgstr "" +"이파일은 Gollem의 기본 환경설정과 사용자가 변경할 수 있는 환경 설정을 제어합" +"니다." + +msgid "" +"This file controls the default settings for Gollem, and also defines the " +"list of available servers if you are using the server list." +msgstr "이파일은 Gollem의 기본 설정값과 사용가능한 서버 목록을 명시합니다." + +msgid "" +"This is the main Gollem configuration file. It contains paths and options " +"for the Gollem scripts." +msgstr "" +"이파일은 기본 Gollem환경설정 파일입니다. Gollem 스크립트의 경로와 옵션을 갖" +"고 있습니다." + +msgid "This number must be at least one." +msgstr "최소한 1이상의 값이어야 합니다." + +msgid "This value must be a number." +msgstr "숫자로 된 값이어야 합니다." + +msgid "Type" +msgstr "종류" + +msgid "Up to parent" +msgstr "상위로" + +msgid "Upload File" +msgstr "파일 올리기" + +msgid "User Preferences" +msgstr "사용자 환경설정" + +msgid "Username" +msgstr "사용자 이름" + +msgid "Warning" +msgstr "경고" + +#, c-format +msgid "Warning: %s requires Javascript to perform certain functions." +msgstr "경고: %s가 실행되기 위해서는 자바스크립트를 필요로 합니다." + +#, c-format +msgid "Welcome to %s" +msgstr "환영합니다. %s 입니다." + +msgid "Welcome" +msgstr "환영합니다." + +#, c-format +msgid "" +"You have been logged out of %s. Thank you for using the system. If you wish " +"to log in again, please use the form below." +msgstr "" +"%s에서 로그아웃하셨습니다. 이 시스템을 사용해주셔서 감사합니다. 다시 로그인하" +"시려면, 아래의 폼을 사용하시기 바랍니다." + +msgid "Your Information" +msgstr "사용자 정보" + +msgid "Your preferences have been updated." +msgstr "환경설정이 저장되었습니다." + +msgid "Your preferred FTP server:" +msgstr "자주 사용하는 FTP 서버:" + +msgid "[home]" +msgstr "[홈]" + +msgid "folder" +msgstr "폴더" + +msgid "symlink" +msgstr "심볼 링크" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/lv/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/lv/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/lv/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/lv/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,119 @@ + + + + + Failu pārvaldnieks: Darbības + Mapju izveidošana + + Lai izveidotu mapi aktuālajā katalogā, uzklikšķiniet ikonai Izveidot mapi Failu pārvaldnieka rīkjoslā. + + Failu dzēšana, izgriešana, kopēšana, ielīmēšana + + Lai dzēstu, izgrieztu vai nokopētu failu(s), ir jāizvēlas vismaz viens fails, atzīmējot to(s) izvēles rūtiņā(s) pa kreisi no faila nosaukuma. Pēc tam, kad ir atzīmēti nepieciešami faili, no izkrītošās komandkartes Darbības izvēlieties nepieciešamo darbību. Ja izvēlējāties Kopēt vai Izgriezt, atzīmētie faili tiks nokopēti vai pārvietoti uz Starpliktuvi un lietotāja saskarnē parādīsies jauna ikona Skatīt starpliktuvi. No Starpliktuves Jums ir iespēja ielīmēt atbilstošos failus jebkurā Failu pārvaldnieka vietā. Pārejiet uz vietu direktoriju kokā, kurā nepieciešams novietot failu(s), atveriet Starpliktuvi, atzīmējiet nepieciešamo(s) failu(s) rūtiņā(s) pa kreisi no faila nosaukuma un uzklikšķiniet uz Ielīmēt. Pēc šīs darbības faili tiks ielīmēti aktuālajā katalogā un Starpliktuve – attīrīta. + + Katalogu dzēšana, izgriešana, kopēšana, ielīmēšana + +Pēc noklusēšanas, izdzēst katalogu iespējams tikai gadījumā, ja tajā nav failu. Ja vēlaties dzēst katalogus ar visu to saturu, varat ieslēgt rekursīvu katalogu dzēšanu. Lai to ieslēgtu, uzklikšķiniet ikonai Opcijas, izvēlieties Iestatījumi un no izkrītošajā komandkartē piedāvātajām iespējām - Jums vēlamo variantu. +Ja mēģināsiet dzēst katalogu ar failiem, neieslēdzot minēto opciju, dzēšanas mēģinājums beigsies ar kļūdu. + +Lai dzēstu, izgrieztu vai nokopētu katalogu(s), ir jāizvēlas vismaz viens katalogs, atzīmējot to(s) izvēles rūtiņā(s) pa kreisi no kataloga nosaukuma. Pēc tam, kad ir atzīmēti nepieciešami katalogi, no izkrītošās komandkartes Darbības izvēlieties nepieciešamo darbību. Ja izvēlējāties Kopēt vai Izgriezt, atzīmētie katalogi tiks nokopēti vai pārvietoti uz Starpliktuvi un lietotāja saskarnē parādīsies jauna ikona Skatīt starpliktuvi. No Starpliktuves Jums ir iespēja ielīmēt atbilstošos katalogus jebkurā katalogu pārvaldnieka vietā. Pārejiet uz vietu direktoriju kokā, kurā nepieciešams novietot katalogu(s), atveriet Starpliktuvi, atzīmējiet nepieciešamo(s) katalogu(s) rūtiņā(s) pa kreisi no kataloga nosaukuma un uzklikšķiniet uz Ielīmēt. Pēc šīs darbības katalogi tiks ielīmēti aktuālajā katalogā un Starpliktuve – attīrīta. + + + Darbs ar starpliktuvi + +Ja Jūs kopējat vai izgreižat failu vai katalogu, tas tiek novietots starpliktuvē, kuras saturu varat apskatīt, uzklikšķinot ikonai Starpliktuve, kas atrodas virs failu un katalogu saraksta pa labio no Atsvaidzināt skatu ikonas. +Šī ikona parādās lietotāja saskarnē tikai tad, kad starpliktuvē atrodas kāds objekts.Pēc tam, kad kāds fails vai katalogs ir nokopēts vai izgriezts, blakus tā tā nosaukumam Failu pārvaldnieka galvenajā logā vairs nebūs izvēles rūtiņa. + + +Kad atvērsiet Starpliktuves pārlūku, redzēsiet uz starpliktuvi kopēto vai izgriezto objektu sarakstu, kur katram objektam blakus ir attēlota iepriekš veikto darbību atainojoša piktogramma. No šejienes Jūs varat ielīmēt objektus aktuālajā katalogā, kas parādīts virs objektu saraksta – atzīmējiet ielīmējamos failus un nospiediet pogu Ielīmēt, objekti tiks ievietoti aktuālajā katalogā un notīrīti no starpliktuves. Pēc objektu ielīmēšanas Failu pārvaldnieks atgriezīsies aktuālajā katalogā. Ja vēlaties vienkārši notīrīt kādu objektu no starpliktuves, atzīmējiet to un nospiediet pogu Notīrīt. Objekts(-i) tiks notīrīti no starpliktuves un Failu pārvaldnieks atgriezīsies aktuālajā katalogā. + + +Piezīme: ja objekts tika izgriezts uz starpliktuvi, pēc notīrīšanas no starpliktuves objekts paliek savā iepriekšējā vietā. + + + + + Failu pārvaldnieks: Augšupielādēšana + Failu augšupielādēšana + +Piezīme: failu augšupielādēšana darbojas tikai gadījumā, ja ir pareizi konfigurētas VFS palīgmoduļa pieejas tiesības. To var izdarīt tikai sistēmas administrators. + + + Lai augšupielādētu failus, pārejiet uz vietu katalogu kokā, kurā vēlaties tos novietot. Tas būs aktuālais katalogs. Kad esat atvēruši vajadzīgo katalogu, Failu pārvaldnieka loga apakšā nospiediet pogu Browse... (pārlūkot). Tas atvērs File Upload logu, kurā Jums jāsameklē augšupielādējamais fails, jāuzklikšķina tā nosaukumam un OK pogai. + + +Vienlaikus ir iespējams augšupielādēt vairākus failus – Failu pārvaldnieks automātiski pievienos jaunu Browse... pogu pēc katra faila izvēles. Kad ir sameklēti visi faili, nospiediet pogu Augšupielādēt failu(s) un tie tiks augšupielādēti aktuālajā Failu pārvaldnieka katalogā. + + + + + Šķirošana + Šķirošana + + Apskatot failu vai katalogu sarakstus, Jūs varat to sakārtot pēc jebkuras slejas. Lai to izdarītu, uzklikšķiniet atbilstošās slejas virsrakstam un saraksts tiks atsvaidzināts, sakārtojot objektus atbilstoši Jūsu izvēlētajai slejai. Lai mainītu kārtošanas secību no augošas uz dilstošu un otrādi, uzklikšķiniet slejas virsrakstam blakus esošajai bultiņai. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/lv/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/lv/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/lv/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/lv/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/lv/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/lv/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,553 @@ +# Latvian translations for Gollem H4 package. +# Copyright 2011-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Automatically generated, 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H4 (2.0-git)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-29 11:44+0100\n" +"PO-Revision-Date: 2013-06-03 14:08+0300\n" +"Last-Translator: Jānis Eisaks \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" +"X-Poedit-Language: Latvian\n" +"X-Poedit-Country: LATVIA\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" pārdēvēts par \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d objekts" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d objekti" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s veiksmīgi saglabāts." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s veiksmīgi ielīmēts." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "%s pieeja liegta" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Mapei \"%s\" pieeja liegta." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Pievienot" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Visi" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Vai tiešām vēlaties turpināt?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Esat pārliecināti?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Augoši" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Jautāt" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Dzinis" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Dziņi" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Zemāk redzams pašreizējais starpliktuves saturs." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Atcelt" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "%s nevar izmanīt atribūtus: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Nevar nokopēt objektu uz starpliktuvi." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Nevar izveidot mājas mapi: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Nevar izgriezt objektu uz starpliktuvi." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Nevar ielīmēt \"%s\" (fails iztīrīts no starpliktuves): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Mainīt mapi" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Mainīt pieejas tiesības" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Pārbaudīt kvotu" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Pārbaudīt visus/nevienu" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Atribūti manīti:" + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Izvēlieties, kurus slejas un kādā secībā rādīt:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Notīrīt" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Starpliktuve" + +#: quota.php:25 +msgid "Close" +msgstr "Aizvērt" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Slejas, kas netiks parādītas:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopēt" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Izveidot mapi" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Izveidotas tukšas pieejas tiesības \"%s\". Tagad ir jānosaka precīzas " +"pieejas tiesības šim dzinim." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Aktuālā mape:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Izgriezt" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Noklusētais šķirošanas kritērijs:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Noklusētais kārtošanas virziens:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Dzēst" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Dzēst arī apakšmapes?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Dilstoši" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Darīts" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Lejupielādēt %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "KĻŪDA:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Labot %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Izpildīt" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Fails" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Failu darbības" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Faili" + +# #-#-#-#-# nag.po (Nag 2.1.4) #-#-#-#-# +# +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Faila izmaiņu datums" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Faila nosaukums" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Faila izmērs" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Faila tips" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Failu darbību iestatījumi." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Fails dzēsts:" + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Mapju pārlūkošanas iestatījumi" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Fails saņemts: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Failus jāieraksta VFS vidē." + +#: manager.php:341 +msgid "Filter" +msgstr "Filtrs" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Mape dzēsta:" + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Mapes jāizveido VFS vidē." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Grupa" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Pieprasīts neizmantojams dzinis: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Objekts nokopēts uz starpliktuvi: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Objekts izgriezts uz starpliktuvi: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Objektu skaits vienā lapā" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Mapes rādīt vispirms?" + +# #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# +# #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# +# +# #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# +# +#: manager.php:540 +msgid "Modified" +msgstr "Pēdējās izmaiņas" + +#: manager.php:514 +msgid "Name" +msgstr "Nosaukums" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Izveidota jauna mape:" + +#: config/prefs.php:96 +msgid "No" +msgstr "Nē" + +# +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Kvota nav atrasta." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Īpašnieks" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Ielīmēt" + +#: manager.php:556 +msgid "Permission" +msgstr "Tiesības" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Pieeja %s liegta: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Pieeja mapei \"%s\" liegta: %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Jums nav tiesību izmantot šo dzini." + +#: manager.php:612 +msgid "Permissions" +msgstr "Tiesības" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Pirms veikt šo darbību, lūdzu, izvēlieties objektu." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Norādiet vismaz vienu failu augšupielādei." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Kvota" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Lasīt" + +#: manager.php:287 +msgid "Refresh" +msgstr "Atsvaidzināt skatu" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Pārdēvēt" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Pārdēvēšana starp dažādiem dziņiem nav atbalstīta." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Dziņu pārdēvēšana nav atļauta." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Sākt no jauna" + +# #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# +# #-#-#-#-# lv_LV.po (Nag 2.1.4) #-#-#-#-# +# +# #-#-#-#-# nag.po (Nag 2.1.4) #-#-#-#-# +# +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Saglabāt" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Iezīmēt visu" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Neizvēlēties neko" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Izvēlieties dzini:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Koplietot mapi" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Koplietota mapes" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Rādīt slēptos failus?" + +#: manager.php:548 +msgid "Size" +msgstr "Izmērs" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Sākuma mape" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Aplikācijas mape nav izdzēšama." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Sekojošie objekts(-i) ir mape(s):" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Sekojošie objekti tiks neatgriezeniski izdzēsti:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Oriģinālais logs ir aizvērts. Veramies ciet." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Šajā mapē failu nav." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Šīs slejas tiks parādītas šādā secībā:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Lai iztīrītu objektus no starpliktuves, ieķeksējiet rūtiņu blakus faila " +"nosaukumam un uzklikšķiniet "Tīrīt"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Lai ielīmētu objektus no starpliktuves atvērtajā mapē, ieķeksējiet rūtiņu " +"blakus faila nosaukumam un uzklikšķiniet "Ielīmēt"." + +#: manager.php:506 +msgid "Type" +msgstr "Tips" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Nevar atvērt Gollem sesiju" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Nevar izveidot pieejas tiesības dzinim: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Failu %s nevar nodzēst: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Mapi %s nevar nodzēst: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "Atpakaļ uz %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Augšupielādēt failu(s)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Lietotāja saskarne" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Rakstīt" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Jā" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Jums nav atļauts koplietot šo mapi." + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "Lai noteiktu pieejas tiesības, jābūt definētam vismaz vienam dzinim" + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "Tiesības" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/nl/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/nl/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/nl/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/nl/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/nl/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/nl/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,540 @@ +# Gollem Dutch translation. +# Copyright 2001 Jan Kuipers. +# +# Jan Kuipers , 2001-2007. +# Arjen de Korte , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Gollem H3 (1.1-cvs)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2012-11-23 10:08+0100\n" +"PO-Revision-Date: 2012-11-30 10:27+0100\n" +"Last-Translator: Arjen de Korte \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Lokalize 1.4\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" hernoemd naar \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:597 +#, php-format +msgid "%d item" +msgstr "%d onderdeel" + +#: manager.php:597 +#, php-format +msgid "%d items" +msgstr "%d onderdelen" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s met succes opgeslagen." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s met succes geplakt." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Toegang tot %s geweigerd" + +#: lib/Gollem.php:49 lib/Gollem.php:300 lib/Gollem.php:360 lib/Gollem.php:393 +#: lib/Gollem.php:413 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Toegang tot map \"%s\" geweigerd." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Toevoegen" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Alle" + +#: manager.php:613 +msgid "Are you sure you wish to continue?" +msgstr "Weet u zeker dat u verder wilt gaan?" + +#: manager.php:611 +msgid "Are you sure?" +msgstr "Weet u het zeker?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Oplopend" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Vragen" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Backend" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Backends" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Hieronder staat de huidige inhoud van uw klembord." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Afbreken" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Kan niet chmod %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Kan onderdelen niet naar het klembord kopiëren." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Kan homedirectory niet maken: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Kan onderdelen niet naar het klembord knippen." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Kan \"%s\" niet plakken (bestand van klembord gewist): %s" + +#: manager.php:333 manager.php:608 +msgid "Change Folder" +msgstr "Wijzig map" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Wijzig rechten" + +#: lib/Application.php:242 +msgid "Check Quota" +msgstr "Controleer quota" + +#: manager.php:593 +msgid "Check _All/None" +msgstr "Controleer _Alles/Geen" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Rechten gewijzigd: " + +#: lib/Prefs/Special/Columnselect.php:53 +msgid "Choose which columns to display, and in what order:" +msgstr "" +"Kies de kolommen die weergegeven dienen te worden en in welke volgorde:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Leegmaken" + +#: clipboard.php:51 lib/Application.php:225 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Klembord" + +#: quota.php:25 +msgid "Close" +msgstr "Sluiten" + +#: lib/Prefs/Special/Columnselect.php:57 +msgid "Columns that will not be displayed:" +msgstr "Kolommen die niet zullen worden getoond:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopiëren" + +#: manager.php:321 manager.php:609 +msgid "Create Folder" +msgstr "Maak map" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Blanco rechten voor \"%s\" aangemaakt. U dient nu expliciete rechten aan dit " +"backend to te kennen." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Huidige map:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Knippen" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Standaard sorteercriteria:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Standaard sorteervolgorde:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Verwijderen" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Mappen recursief verwijderen?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Aflopend" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Uitgevoerd" + +#: manager.php:466 +#, php-format +msgid "Download %s" +msgstr "%s downloaden" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "FOUT:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "%s bewerken" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Uitvoeren" + +#: manager.php:614 templates/manager.html.php:146 +msgid "File" +msgstr "Bestand" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Bestandsbewerkingen" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Bestandsweergave" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Wijzigingstijd van bestand" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Bestandsnaam" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Bestandsgrootte" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Bestandstype" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Bestandsbewerking instellingen." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Bestand verwijderd: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Bestandsweergave voorkeuren." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Bestand ontvangen: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Bestanden dienen binnen een VFS backend geschreven te worden." + +#: manager.php:344 +msgid "Filter" +msgstr "Filter" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Map verwijderd: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Mappen dienen binnen een VFS backend gemaakt te worden." + +#: manager.php:571 templates/manager.html.php:8 +msgid "Group" +msgstr "Groep" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Ongeldig backend aangevraagd: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Onderdeel gekopieerd naar klembord: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Onderdeel geknipt naar klembord: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Aantal onderdelen per pagina" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Mappen eerst weergeven in lijst?" + +#: manager.php:543 +msgid "Modified" +msgstr "Gewijzigd" + +#: manager.php:517 +msgid "Name" +msgstr "Naam" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Nieuwe map gemaakt: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Nee" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Geen quota gevonden." + +#: manager.php:565 templates/manager.html.php:7 +msgid "Owner" +msgstr "Eigenaar" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Plakken" + +#: manager.php:559 +msgid "Permission" +msgstr "Toegang" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Toegang geweigerd aan %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Toegang geweigerd tot map \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Toegang geweigerd op dit backend." + +#: manager.php:615 +msgid "Permissions" +msgstr "Rechten" + +#: manager.php:617 +msgid "Please select an item before this action." +msgstr "Selecteer een onderdeel voor deze bewerking, a.u.b." + +#: manager.php:618 +msgid "Please specify at least one file to upload." +msgstr "Specificeer tenminste één bestand voor upload, a.u.b." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Quotaweergave" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Lezen" + +#: manager.php:290 +msgid "Refresh" +msgstr "Verversen" + +#: manager.php:616 templates/manager.html.php:72 +msgid "Rename" +msgstr "Hernoemen" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Hernoemen over backends wordt niet ondersteund." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Hernoemen van backends is niet toegestaan." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Herstellen" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Opslaan" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Selecteer alle" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Selecteer niets" + +#: lib/Prefs/Special/Columnselect.php:55 +msgid "Select a backend:" +msgstr "Selecteer een backend:" + +#: manager.php:304 manager.php:423 +msgid "Share Folder" +msgstr "Map delen" + +#: manager.php:423 +msgid "Shared Folder" +msgstr "Gedeelde map" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Verborgen bestanden weergeven?" + +#: manager.php:551 +msgid "Size" +msgstr "Grootte" + +#: lib/Application.php:213 +msgid "Start Folder" +msgstr "Initiële map" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "De applicatiemap kan niet worden verwijderd." + +#: manager.php:612 +msgid "The following item(s) are folders:" +msgstr "De volgende onderdelen zijn mappen:" + +#: manager.php:610 +msgid "The following items will be permanently deleted:" +msgstr "De volgende onderdelen zullen definitief worden verwijderd:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Het originele opener scherm is gesloten. Afsluiten." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Er zijn geen bestanden in deze map." + +#: lib/Prefs/Special/Columnselect.php:54 +msgid "These columns will display in this order:" +msgstr "Deze kolommen zullen worden weergegeven in deze volgorde:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Om onderdelen van het klembord te verwijderen, vink het vakje naast de " +"bestandsnaam aan en klik op "Verwijderen"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Om onderdelen van het klembord naar de huidige directory te plakken, vink " +"het vakje naast de bestandsnaam en klik op "Plakken"." + +#: manager.php:509 +msgid "Type" +msgstr "Type" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Niet in staat om Gollem sessie te maken" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Niet in staat om backend recht te maken: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Niet in staat om bestand %s te verwijderen: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Niet in staat om map %s te verwijderen: %s" + +#: lib/Gollem.php:617 lib/Gollem.php:627 +#, php-format +msgid "Up to %s" +msgstr "Tot aan %s" + +#: manager.php:316 +msgid "Upload File(s)" +msgstr "Upload bestand(en)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Gebruikersinterface" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Schrijven" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Ja" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "U mag deze map niet delen" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"U dient tenminste één backend gedefinieerd te hebben om rechten in te kunnen " +"stellen." + +#: lib/Application.php:248 +msgid "_Permissions" +msgstr "_Rechten" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/nn/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/nn/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/nn/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/nn/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/nn/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/nn/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,334 @@ +# Gollem Norwegian Nynorsk translation +# Copyright 2002 Per-Stian Vatne +# This file is distributed under the same license as the Gollem package. +# Per-Stian Vatne , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 0.0.1-cvs\n" +"POT-Creation-Date: 2002-06-08 22:16+0200\n" +"PO-Revision-Date: 2002-06-08 22:23+0100\n" +"Last-Translator: Per-Stian Vatne \n" +"Language-Team: Norwegian Nynorsk \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid " to: " +msgstr " til:" + +#, c-format +msgid "%d items in %s" +msgstr "%d element i %s" + +#, c-format +msgid "%s Standard" +msgstr "%s Standard" + +#, c-format +msgid "'%s' renamed to '%s'" +msgstr "'%s' endra namn til '%s'" + +msgid "Note: These settings won't take effect until your next login." +msgstr "" +"Merk: Desse endringane vil ikkje setjast i verk før neste innlogging." + +msgid "Are you sure?" +msgstr "Er du sikker?" + +msgid "Ascending" +msgstr "Stigande" + +msgid "Barbie" +msgstr "Barbie" + +msgid "Brown" +msgstr "Brun" + +msgid "Burnt Orange" +msgstr "Brent oransje" + +msgid "Camouflage" +msgstr "Kamuflasje" + +#, c-format +msgid "Cannot chmod %s" +msgstr "Kan ikkje chmod %s" + +#, c-format +msgid "Cannot delete '%s'" +msgstr "Kan ikkje slette '%s'" + +msgid "Change your file sorting options." +msgstr "Endre alternativ for sortering av filer" + +msgid "Checkbox" +msgstr "Avkryssingboks" + +msgid "Cherry" +msgstr "Kirsebær" + +msgid "Chmod Items" +msgstr "Chmod-element" + +msgid "Chmod done: " +msgstr "Chmod-ferdig:" + +msgid "Choose Action:" +msgstr "Vel handling:" + +msgid "Create Folder" +msgstr "Opprett mappe" + +msgid "Default sorting criteria:" +msgstr "Standard sorteringskriterium:" + +msgid "Default sorting direction:" +msgstr "Standard sorteringsrekkefølgje:" + +msgid "Delete Items" +msgstr "Slett element" + +msgid "Descending" +msgstr "Synkande" + +msgid "Directory removed: " +msgstr "Katalog fjerna:" + +msgid "Display Options" +msgstr "Visingsalternativ" + +msgid "" +"Either you have logged in incorrectly or your login has expired. Please " +"login again." +msgstr "" +"Enten logga du inn feil, eller så har økta di gått ut på tid. Logg inn på " +"nytt." + +msgid "Error creating new folder: " +msgstr "Feil ved oppretting av ny mappe:" + +#, c-format +msgid "Error renaming: '%s'" +msgstr "Kunne ikkje endre namn: '%s'" + +msgid "Error uploading file: " +msgstr "Kunne ikkje laste opp fil:" + +msgid "File Modification Time" +msgstr "Fil sist endra" + +msgid "File Name" +msgstr "Filnamn" + +msgid "File Size" +msgstr "Filstorleik" + +msgid "File Type" +msgstr "Filtype" + +msgid "File deleted: " +msgstr "Fil sletta:" + +msgid "File received: " +msgstr "Fil motteken:" + +msgid "Gollem is not properly configured" +msgstr "Gollem er ikkje ordentleg konfigurert" + +msgid "Green" +msgstr "Grøn" + +msgid "Grey" +msgstr "Grå" + +msgid "Group" +msgstr "Gruppe" + +msgid "Help" +msgstr "Hjelp" + +msgid "Home" +msgstr "Heim" + +msgid "Incorrect number of items." +msgstr "Feil tal på element." + +msgid "Language" +msgstr "Språk" + +msgid "Light Blue" +msgstr "Lys blå" + +msgid "Log in" +msgstr "Logg inn" + +msgid "" +"Login failed for some reason. Most likely your username or password was " +"entered incorrectly." +msgstr "" +"Kunne av ein eller annan grunn ikkje logge inn. Sannsynlegvis er brukarnamn " +"eller passord tasta inn feil." + +msgid "Logout" +msgstr "Logg ut" + +msgid "Modified" +msgstr "Endra" + +msgid "Name" +msgstr "Namn" + +msgid "New folder created: " +msgstr "Ny mappe oppretta:" + +msgid "No such directory: " +msgstr "Ingen slik katalog:" + +msgid "Options" +msgstr "Alternativ" + +msgid "Orange" +msgstr "Oransje" + +msgid "Other Options" +msgstr "Andre alternativ" + +msgid "Owner" +msgstr "Eigar" + +msgid "Password" +msgstr "Passord" + +msgid "Permission" +msgstr "Tilgang" + +msgid "Please enter the mode in numeric format:" +msgstr "Skriv inn modus i numerisk format:" + +msgid "Please enter the name of the new folder:" +msgstr "Skriv inn namnet på den nye mappa:" + +msgid "Please provide your password." +msgstr "Skriv inn ditt passord." + +msgid "Please provide your username." +msgstr "Skriv inn ditt brukarnamn." + +msgid "Please select an item before this action." +msgstr "Vel eit element før denne handlinga." + +msgid "Please specify a file to upload." +msgstr "Spesifiser ei fil for opplasting." + +msgid "Problem?" +msgstr "Problem?" + +msgid "Refresh" +msgstr "Frisk opp" + +msgid "Rename " +msgstr "Gi nytt namn" + +msgid "Rename Items" +msgstr "Gi nytt namn til elementa" + +msgid "Select your color scheme." +msgstr "Vel fargeskjema." + +msgid "Select your preferred language:" +msgstr "Vel ønska språk:" + +msgid "Server" +msgstr "Tenar" + +msgid "Set the language that menu items, explanations, and help are in." +msgstr "Vel språk for menyar, forklaringar og hjelp." + +msgid "Size" +msgstr "Storleik" + +msgid "Some of Gollem's configuration files are missing:" +msgstr "Nokre av Gollem sine konfigurasjonsfiler manglar:" + +msgid "Sort Direction" +msgstr "Sorteringsrekkefølgje" + +msgid "Sun" +msgstr "Sol" + +msgid "The following items will be permenantly deleted: " +msgstr "Følgjande element vil bli sletta permanent:" + +msgid "There are no files in this directory." +msgstr "Ingen filer i denne katalogen." + +msgid "" +"This file controls the default preferences for Gollem, and also controls " +"which preferences users can alter." +msgstr "" +"Denne fila kontrollerer standardinnstillingane for Gollem, og kontrollerer " +"også kva innstillingar brukarane kan endre." + +msgid "" +"This file controls the default settings for Gollem, and also defines the " +"list of available servers if you are using the server list." +msgstr "" +"Denne fila kontrollerer standardvala for Gollem, og definerer også lista " +"over tilgjengelege tenarar dersom du brukar tenarlista." + +msgid "" +"This is the main Gollem configuration file. It contains paths and options " +"for the Gollem scripts." +msgstr "" +"Dette er hovedkonfigurasjonsfila for Gollem. Den inneheld katalognamn og " +"alternativ for Gollem-skripta." + +msgid "Type" +msgstr "Type" + +msgid "Up to parent" +msgstr "Opp til overordna" + +msgid "Upload File" +msgstr "Last opp fil" + +msgid "User Options" +msgstr "Brukarval" + +msgid "Username" +msgstr "Brukarnamn" + +#, c-format +msgid "Warning: %s requires Javascript to perform certain functions." +msgstr "Åtvaring: %s krever Javascript for å utføre enkelte funksjonar." + +#, c-format +msgid "Welcome to %s" +msgstr "Velkomen til %s" + +msgid "Welcome" +msgstr "Velkomen" + +#, c-format +msgid "" +"You have been logged out of %s. Thank you for using the system. If you wish " +"to log in again, please use the form below." +msgstr "" +"Du er logga ut av %s. Takk for at du brukar dette systemet. Om du ønskjer å " +"logge inn igjen, bruk skjemaet under." + +msgid "Your Information" +msgstr "Din informasjon" + +msgid "Your preferred FTP server:" +msgstr "Føretrekt FTP-tenar:" + +msgid "[home]" +msgstr "[heim]" + +msgid "folder" +msgstr "mappe" + +msgid "symlink" +msgstr "symlink" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/pl/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/pl/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/pl/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/pl/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/pl/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/pl/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,543 @@ +# Polish translations for Gollem package +# Polskie tlumaczenia dla pakietu Gollem. +# Copyright 2007-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Automatically generated, 2007. +# Krzysztof Kozlowski , 2005. +# Piotr Tarnowski , 2007. +# Maciej Uhlig , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H3 (1.1-cvs)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2014-04-15 09:06+0200\n" +"PO-Revision-Date: 2014-04-15 09:18+0100\n" +"Last-Translator: Maciej Uhlig \n" +"Language-Team: Polish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"X-Generator: Poedit 1.6.4\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "Zmieniono nazwę \"%s\" na \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d element" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d elementów" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "Pomyślnie zapisano %s." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s został pomyślnie wklejony." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Brak dostępu do %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Brak dostępu do folderu \"%s\"." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Dodaj" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Wszyscy" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Czy na pewno chcesz kontynuować?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Czy jesteś pewny(a)?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Rosnąco" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Zapytaj" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Backend" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Backendy" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Poniżej jest bieżąca zawartość Twojego schowka." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Anuluj" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Nie można wykonać chmod %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Nie można skopiować elementów do schowka." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Nie można utworzyć katalogu domowego: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Nie można wyciąć elementów do schowka." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Nie można wkleić \"%s\" (plik wyczyszczono ze schowka): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Zmień folder" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Zmień uprawnienia" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Sprawdź wolne miejsce" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Zaznacz wszystko/nic" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Wykonano chmod: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Wybierz. które kolumny wyświetlać, i w jakim porządku:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Wyczyść" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Schowek" + +#: quota.php:25 +msgid "Close" +msgstr "Zamknij" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Kolumny, które nie będą wyświetlane:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopiuj" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Utwórz folder" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Utworzono puste uprawnienia dla \"%s\". Musisz formalnie przyznać dostęp do " +"tego backendu." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Bieżący katalog:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Wytnij" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Domyślne kryteria sortowania:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Domyślny kierunek sortowania:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Usuń" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Czy usuwać foldery rekursywnie?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Malejąco" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Wykonano" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Pobierz %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "BŁĄD:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Edycja %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Wykonaj" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Plik" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Działania na plikach" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Wyświetlanie plików" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Czas modyfikacji pliku" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Nazwa pliku" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Wielkość pliku" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Typ pliku" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Ustawienia działań na plikach" + +#: manager.php:100 +msgid "File deleted: " +msgstr "Plik usunięty: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Preferencje wyświetlania plików" + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Plik odebrany: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Pliki muszą być zapisywane za pomocą backendu VFS." + +#: manager.php:341 +msgid "Filter" +msgstr "Filtr" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Folder usunięty: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Pliki muszą być tworzone za pomocą backendu VFS." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Grupa" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Zażądano nieprawidłowego backendu: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Element skopiowany do schowka: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Element wycięty i skopiowany do schowka: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Liczba elementów na stronie" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Czy wyświetlać najpierw foldery?" + +#: manager.php:540 +msgid "Modified" +msgstr "Zmodyfikowany" + +#: manager.php:514 +msgid "Name" +msgstr "Nazwa" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Utworzono nowy folder: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Nie" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Nie znaleziono quoty." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Właściciel" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Wklej" + +#: manager.php:556 +msgid "Permission" +msgstr "Uprawnienie" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Brak uprawnień do %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Brak uprawnień do folderu \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Brak uprawnień do tego backendu." + +#: manager.php:612 +msgid "Permissions" +msgstr "Uprawnienia" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Proszę wybrać element przed wykonaniem tej akcji." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Proszę określić przynajmniej jeden plik do załadowania." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Wyświetlanie quoty" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Czytaj" + +#: manager.php:287 +msgid "Refresh" +msgstr "Odśwież" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Zmień nazwę" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Ta operacja nie jest możliwa." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Zmiana nazw backendów nie jest dozwolona." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Przywróć" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Zapisz" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Wybierz wszystko" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Nie wybieraj niczego" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Proszę wybrać backend:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Udostępniaj folder" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Udostępniony folder" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Czy wyświetlać pliki ukryte?" + +#: manager.php:548 +msgid "Size" +msgstr "Wielkość" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Folder początkowy" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Nie można usunąć folderu aplikacji." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Następujące elementy są folderami:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Następujące elementy zostaną trwale usunięte:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Oryginalne okno zostało zamnkięte. Wychodzę." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "W tym folderze nie ma żadnych plików." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Te kolumny będą wyświetlane w następującej kolejności:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Aby wyczyścić elementy ze schowka zaznacz kwadrat obok nazwy pliku i kliknij " +"na "Wyczyść"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Aby wkleić elementy ze schowka do bieżącego katalogu zaznacz kwadrat obok " +"nazwy pliku i kliknij na "Wklej"." + +#: manager.php:506 +msgid "Type" +msgstr "Typ" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Nie można utworzyć sesji Gollema" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Nie można utworzyć uprawnień backendu: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Nie można usunąć pliku %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Nie można usunąć folderu %s: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "W górę do %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Załaduj plik(i)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Interfejs użytkownika" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Zapisz" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Tak" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Nie możesz udostępnić tego folderu" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Musisz zdefiniować przynajmniej jeden backend, aby ustawić uprawnienia." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "U_prawnienia" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/pt_BR/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/pt_BR/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/pt_BR/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/pt_BR/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/pt_BR/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/pt_BR/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,539 @@ +# translation of pt_BR.po to Português brasileiro +# Copyright 2012-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# +# Fábio Gomes , 2006. +# Luis Felipe Marzagao , 2008. +msgid "" +msgstr "" +"Project-Id-Version: pt_BR\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2016-05-11 00:06+0000\n" +"PO-Revision-Date: 2016-05-10 21:34-0300\n" +"Last-Translator: Luis Felipe Marzagao \n" +"Language-Team: Português brasileiro \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.5.4\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" renomeado para \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:595 +#, php-format +msgid "%d item" +msgstr "%d item" + +#: manager.php:595 +#, php-format +msgid "%d items" +msgstr "%d itens" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s gravado com sucesso." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s foi colado com sucesso." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Acesso negado a %s" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Acesso negado à pasta \"%s\"." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Adicionar" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Todos" + +#: manager.php:611 +msgid "Are you sure you wish to continue?" +msgstr "Deseja realmente continuar?" + +#: manager.php:609 +msgid "Are you sure?" +msgstr "Você tem certeza?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Ascendente" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Perguntar" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Estrutura" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Estruturas" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Abaixo está o conteúdo atual da área de transferência." + +#: clipboard.php:23 templates/edit.html.php:15 templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Cancelar" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Impossível mudar permissões de %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Impossível copiar ítens para a área de transferência." + +#: manager.php:225 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Impossível criar diretório pessoal: %s" + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Impossível cortar itens da área de transferência." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "" +"Impossível colar \"%s\" (arquivo excluído da área de transferência): %s" + +#: manager.php:331 manager.php:606 +msgid "Change Folder" +msgstr "Mudar Pasta" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Alterar Permissões" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Verificar Quota" + +#: manager.php:591 +msgid "Check _All/None" +msgstr "Verific_ar Todos/Nenhum" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Alteração de permissões terminada: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Escolha quais colunas para mostrar, e em qual ordem:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Limpar" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Área de Transferência" + +#: quota.php:25 +msgid "Close" +msgstr "Fechar" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Colunas que não serão exibidas:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Copiar" + +#: manager.php:319 manager.php:607 +msgid "Create Folder" +msgstr "Criar Pasta" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Criadas permissões vazias para \"%s\". Você deve explicitamente dar acesso a " +"esta estrutura agora." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Diretório atual:" + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Cortar" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Critério padrão de ordenação:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Direção padrão de ordenação:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Excluir" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Excluir pastas e subpastas?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Descendente" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Feito" + +#: manager.php:464 +#, php-format +msgid "Download %s" +msgstr "Baixar %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "ERRO:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Editar %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Executar" + +#: manager.php:612 templates/manager.html.php:146 +msgid "File" +msgstr "Arquivo" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Ações de Arquivo" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Exibir Arquivo" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Data de Modificação do Arquivo" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Nome do Arquivo" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Tamanho do Arquivo" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Tipo do Arquivo" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Ajuste de ações de arquivo." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Arquivo excluído: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Preferências de exibição de arquivo." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Arquivo recebido: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Arquivos devem ser gravados em uma estrutura VFS." + +#: manager.php:342 +msgid "Filter" +msgstr "Filtro" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Pasta removida: " + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Pastas devem ser criadas em uma estrutura VFS." + +#: manager.php:569 templates/manager.html.php:8 +msgid "Group" +msgstr "Grupo" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Pedido inválido à estrutura: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Item copiado para a área de transferência: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Item cortado da área de transferência: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Itens por página" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Listar pastas primeiro?" + +#: manager.php:541 +msgid "Modified" +msgstr "Modificado" + +#: manager.php:515 +msgid "Name" +msgstr "Nome" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Nova pasta criada: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Não" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Nenhuma quota encontrada." + +#: manager.php:563 templates/manager.html.php:7 +msgid "Owner" +msgstr "Dono" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Colar" + +#: manager.php:557 +msgid "Permission" +msgstr "Permissão" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Permissão negada para %s: %s" + +#: manager.php:218 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Permissão negada para a pasta \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Permissão negada para essa estrutura." + +#: manager.php:613 +msgid "Permissions" +msgstr "Permissões" + +#: manager.php:615 +msgid "Please select an item before this action." +msgstr "Por favor selecione um item antes desta ação." + +#: manager.php:616 +msgid "Please specify at least one file to upload." +msgstr "Por favor especifique pelo menos um arquivo para enviar." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Exibição de Quota" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Ler" + +#: manager.php:288 +msgid "Refresh" +msgstr "Atualizar" + +#: manager.php:614 templates/manager.html.php:72 +msgid "Rename" +msgstr "Renomear" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Não é possível renomear entre estruturas." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Não é permitido renomear estruturas." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Limpar" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Gravar" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Selecionar Todas" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Selecionar Nenhum" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Selecione uma estrutura:" + +#: manager.php:302 manager.php:421 +msgid "Share Folder" +msgstr "Compartilhar Pasta" + +#: manager.php:421 +msgid "Shared Folder" +msgstr "Pasta Compartilhada" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Mostrar arquivos ocultos?" + +#: manager.php:549 +msgid "Size" +msgstr "Tamanho" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Pasta de Início" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "A pasta da aplicação não pode ser apagada." + +#: manager.php:610 +msgid "The following item(s) are folders:" +msgstr "Os seguintes itens são pastas:" + +#: manager.php:608 +msgid "The following items will be permanently deleted:" +msgstr "Os seguintes itens serão excluídos permanentemente: " + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "A janela original de abertura foi fechado. Saindo." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "Não existem arquivos nesta pasta." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Essas colunas serão exibidas nesta ordem:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Para limpar itens da área de transferência, marque a caixa ao lado do " +"arquivo e clique em "Limpar"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Para colar itens da área de transferência na pasta atual, marque a caixa ao " +"lado do arquivo e clique em "Colar"." + +#: manager.php:507 +msgid "Type" +msgstr "Tipo" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Não é possível criar sessão do Gollem" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Não é possível criar permissões da estrutura: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Não é possível apagar o arquivo %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Não é possível apagar a pasta %s: %s" + +#: lib/Gollem.php:688 lib/Gollem.php:698 +#, php-format +msgid "Up to %s" +msgstr "Até %s" + +#: manager.php:314 +msgid "Upload File(s)" +msgstr "Enviar Arquivo(s)" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Interface do Usuário" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Gravar" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Sim" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Você não pode compartilhar esta pasta" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"Você precisa definir pelo menos uma estrutura para configurar permissões." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Permissões" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/ro/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/ro/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/ro/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/ro/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/ro/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/ro/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,468 @@ +# Romanian translations for Gollem package. +# Copyright 2003-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Eugen Hoanca , 2003. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 0.0.1\n" +"POT-Creation-Date: 2003-03-04 13:46+0100\n" +"PO-Revision-Date: 2003-03-27 13:50+0200\n" +"Last-Translator: Eugen Hoanca \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: templates/manager/header.inc:34 +msgid "%d items in %s" +msgstr "%d elemente in %s" + +#: templates/login/login.inc:83 +msgid "%s Login" +msgstr "Intrare %s" + +#: manager.php:152 +msgid "%s was succesfully copied, but not deleted: %s" +msgstr "%s a fost copiat cu succes, dar nu sters: %s" + +#: manager.php:180 manager.php:189 +msgid "%s was sucesfully copied to %s." +msgstr "%s a fost copiat cu succes in %s." + +#: manager.php:139 manager.php:150 +msgid "%s was sucesfully moved to %s." +msgstr "%s a fost mutat cu succes in %s." + +#: manager.php:75 +msgid "'%s' renamed to '%s'" +msgstr "'%s' redenumit in '%s'" + +#: templates/manager/header.inc:34 +msgid "1 item in %s" +msgstr "1 element in %s" + +#: view.php:41 view.php:70 +msgid "Access denied to %s" +msgstr "Acces interzis in %s" + +#: templates/manager/javascript.inc:135 +msgid "Are you sure?" +msgstr "Sunteti sigur?" + +#: config/prefs.php.dist:52 +msgid "Ascending" +msgstr "Crescator" + +#: templates/manager/prompts.inc:181 +msgid "Attributes" +msgstr "Atribute" + +#: templates/view/header.inc:8 templates/view/header.inc:9 +msgid "Back To Folder" +msgstr "Inapoi la director" + +#: templates/manager/prompts.inc:209 templates/manager/prompts.inc:243 +#: templates/manager/prompts.inc:276 templates/manager/prompts.inc:310 +msgid "Cancel" +msgstr "Renuntare" + +#: manager.php:107 +msgid "Cannot chmod %s" +msgstr "Nu se poate face chmod %s" + +#: manager.php:182 +msgid "Cannot copy '%s': %s" +msgstr "Nu se poate copia '%s': %s" + +#: manager.php:94 +msgid "Cannot delete '%s'" +msgstr "Nu se poate sterge '%s'" + +#: manager.php:141 +msgid "Cannot move '%s': %s" +msgstr "Nu se poate muta '%s': %s" + +#: manager.php:158 manager.php:194 +msgid "Cannot read '%s': %s" +msgstr "Nu se poate citi '%s': %s" + +#: manager.php:155 manager.php:191 +msgid "Cannot write '%s': %s" +msgstr "Nu se poate scrie '%s': %s" + +#: templates/menu/menu.inc:9 templates/manager/actions.inc:25 +#: templates/manager/prompts.inc:291 +msgid "Change Directory" +msgstr "Schimbare director" + +#: config/prefs.php.dist:16 +msgid "Change your file sorting options." +msgstr "Schimbare optiuni sortare fisier." + +#: templates/manager/file_headers.inc:4 +msgid "Checkbox" +msgstr "Casuta confirmare" + +#: templates/manager/actions.inc:30 +msgid "Chmod Items" +msgstr "Chmod elemente" + +#: manager.php:105 +msgid "Chmod done: " +msgstr "Chmod efectuat:" + +#: templates/manager/actions.inc:24 +msgid "Choose Action:" +msgstr "Alege actiune:" + +#: templates/login/login.inc:112 +msgid "Connect to: %s" +msgstr "Conectare catre: %s" + +#: templates/manager/actions.inc:14 +msgid "Copy" +msgstr "Copiere" + +#: templates/menu/menu.inc:8 templates/manager/actions.inc:26 +msgid "Create Directory" +msgstr "Creare director" + +#: templates/manager/prompts.inc:257 +msgid "Create Folder" +msgstr "Creare dosar" + +#: config/prefs.php.dist:44 +msgid "Default sorting criteria:" +msgstr "Criteriu implicit de sortare:" + +#: config/prefs.php.dist:54 +msgid "Default sorting direction:" +msgstr "Directie implicita de sortare:" + +#: templates/login/login.inc:110 +msgid "Defaulted to: %s" +msgstr "Intoarcere la: %s" + +#: templates/manager/actions.inc:29 +msgid "Delete Items" +msgstr "Stergere elemente" + +#: config/prefs.php.dist:53 +msgid "Descending" +msgstr "Descrescator" + +#: manager.php:92 +msgid "Directory removed: " +msgstr "Director sters: " + +#: config/prefs.php.dist:15 +msgid "Display Options" +msgstr "Optiuni afisaj" + +#: manager.php:279 templates/manager/file_headers.inc:14 +msgid "Download" +msgstr "Download" + +#: login.php:19 +msgid "" +"Either you have logged in incorrectly or your login has expired. Please " +"login again." +msgstr "" +"Ori v-ati loginat incorect ori loginul a expirat. Va rugam intrati din nou." + +#: config/credentials.php.dist:28 +msgid "Email" +msgstr "Email" + +#: manager.php:223 +msgid "Error retrieving directory listing" +msgstr "Eroare la aducerea listingului directorului" + +#: config/prefs.php.dist:42 +msgid "File Modification Time" +msgstr "Momentul modificarii fisierului" + +#: config/prefs.php.dist:41 +msgid "File Name" +msgstr "Nume fisier" + +#: config/prefs.php.dist:43 +msgid "File Size" +msgstr "Marime fisier" + +#: config/prefs.php.dist:40 +msgid "File Type" +msgstr "Tip fisier" + +#: manager.php:90 +msgid "File deleted: " +msgstr "Fisier sters: " + +#: manager.php:121 +msgid "File received: %s" +msgstr "Fisier primit: %s" + +#: view.php:66 +msgid "File type can't be viewed inline, download the file instead" +msgstr "Tipul fisierului nu poate fi vizualizat, downloadati fisierul" + +#: manager.php:220 +msgid "Files to" +msgstr "Fisiere catre" + +#: templates/manager/prompts.inc:299 +msgid "Go to:" +msgstr "Du-te la:" + +#: templates/index/notconfigured.inc:4 +msgid "Gollem is not properly configured" +msgstr "Gollem nu este corect configurat" + +#: templates/manager/file_headers.inc:31 +msgid "Group" +msgstr "Grup" + +#: templates/menu/menu.inc:21 +msgid "Help" +msgstr "Ajutor" + +#: templates/menu/menu.inc:6 +msgid "Home" +msgstr "Acasa" + +#: manager.php:81 +msgid "Incorrect number of items." +msgstr "Numar incorect de elemente." + +#: config/prefs.php.dist:9 +msgid "Language" +msgstr "Limba" + +#: login.php:90 +msgid "Locked" +msgstr "Incuiat" + +#: login.php:136 templates/login/login.inc:140 +msgid "Log in" +msgstr "Intrare" + +#: login.php:21 +msgid "" +"Login failed for some reason. Most likely your username or password was " +"entered incorrectly." +msgstr "" +"Login esuat din diverse motive. Cel mai probabil username sau parola " +"introduse incorect." + +#: templates/menu/menu.inc:28 +msgid "Logout" +msgstr "Iesire" + +#: templates/manager/file_headers.inc:18 +msgid "Modified" +msgstr "Modificat" + +#: templates/manager/actions.inc:13 +msgid "Move" +msgstr "Mutare" + +#: templates/manager/file_headers.inc:11 +msgid "Name" +msgstr "Nume" + +#: templates/manager/prompts.inc:232 templates/manager/prompts.inc:265 +msgid "Name:" +msgstr "Nume:" + +#: manager.php:50 +msgid "New directory created: " +msgstr "Director nou creat: " + +#: templates/manager/prompts.inc:242 templates/manager/prompts.inc:275 +#: templates/manager/prompts.inc:309 +msgid "OK" +msgstr "OK" + +#: templates/menu/menu.inc:13 +msgid "Options" +msgstr "Optiuni" + +#: config/prefs.php.dist:14 +msgid "Other Options" +msgstr "Alte optiuni" + +#: templates/manager/file_headers.inc:28 +msgid "Owner" +msgstr "Proprietar" + +#: config/credentials.php.dist:23 +msgid "Password" +msgstr "Parola" + +#: templates/manager/file_headers.inc:25 +msgid "Permission" +msgstr "Permisune" + +#: manager.php:236 +msgid "Permission denied to %s: %s." +msgstr "Permisiune interzisa in %s: %s." + +#: templates/login/login.inc:25 +msgid "Please provide your password." +msgstr "Introduceti parola." + +#: templates/login/login.inc:20 +msgid "Please provide your username." +msgstr "Introduceti username." + +#: templates/manager/javascript.inc:75 +msgid "Please select an item before this action." +msgstr "Selectati un element inainte de actiune." + +#: templates/manager/javascript.inc:150 +msgid "Please specify a file to upload." +msgstr "Specificati un fisier pentru trimitere." + +#: templates/manager/header.inc:14 templates/manager/header.inc:15 +msgid "Refresh" +msgstr "Reimprospatare" + +#: templates/manager/prompts.inc:224 +msgid "Rename" +msgstr "Redenumire" + +#: templates/manager/actions.inc:28 +msgid "Rename Items" +msgstr "Redenumire elemente" + +#: templates/manager/prompts.inc:208 +msgid "Save" +msgstr "Salvare" + +#: templates/login/login.inc:103 +msgid "Select" +msgstr "Selectare" + +#: config/prefs.php.dist:25 +msgid "Select your preferred language:" +msgstr "Selectare limba favorita:" + +#: templates/login/login.inc:99 templates/login/login.inc:120 +msgid "Server" +msgstr "Server" + +#: config/prefs.php.dist:10 +msgid "Set the language that menu items, explanations, and help are in." +msgstr "Setare limba in care vor fi meniurile, explicatiile shi helpul." + +#: config/prefs.php.dist:32 +msgid "Show dotfiles?" +msgstr "Afisare fisiere cu punct?" + +#: templates/manager/file_headers.inc:22 +msgid "Size" +msgstr "Marime" + +#: templates/index/notconfigured.inc:39 +msgid "Some of Gollem's configuration files are missing:" +msgstr "Anumite fisiere de configurare Gollem lipsesc:" + +#: templates/manager/file_headers.inc:6 templates/manager/file_headers.inc:10 +#: templates/manager/file_headers.inc:17 templates/manager/file_headers.inc:21 +msgid "Sort Direction" +msgstr "Directie sortare" + +#: templates/manager/javascript.inc:135 +msgid "The following items will be permenantly deleted: " +msgstr "Urmatoarele elemente vor fi sterse permanent: " + +#: templates/manager/empty_dir.inc:2 +msgid "There are no files in this directory." +msgstr "Nu exista fisiere in acest director." + +#: lib/MIME/Viewer/plain.php:33 +msgid "There was an error viewing this file" +msgstr "S-a produs o eroare la vizualizarea fisierului" + +#: templates/index/notconfigured.inc:51 +msgid "" +"This file controls the default preferences for Gollem, and also controls " +"which preferences users can alter." +msgstr "" +"Acest fisier controleaza atat preferintele implicite pentru Gollem, cat si " +"alte preferinte pentru utilizatori." + +#: templates/index/notconfigured.inc:58 +msgid "This file controls what backends are available from Gollem." +msgstr "Acest fisier controleaza suporturile disponibile pentru Gollem." + +#: templates/index/notconfigured.inc:65 +msgid "This file defines types of credentials that a backend might request." +msgstr "Acest fisier defineste tipurile de credentiale cerute de suport." + +#: templates/index/notconfigured.inc:44 +msgid "" +"This is the main Gollem configuration file. It contains options for the " +"Gollem scripts." +msgstr "" +"Acesta este principalul fisier de configurare Gollem. Contine optiuni pentru " +"scripturile Gollem." + +#: templates/manager/file_headers.inc:7 +msgid "Type" +msgstr "Tip" + +#: templates/view/footer.inc:6 templates/view/footer.inc:8 +#: templates/view/footer.inc:10 templates/manager/header.inc:20 +#: templates/manager/header.inc:22 templates/manager/header.inc:25 +msgid "Up to parent" +msgstr "Inapoi la parinte" + +#: templates/manager/actions.inc:8 +msgid "Upload File" +msgstr "Trimitere fisier" + +#: prefs.php:36 +msgid "User Options" +msgstr "Optiuni utilizator" + +#: config/credentials.php.dist:18 +msgid "Username" +msgstr "Nume utilizator" + +#: templates/login/login.inc:61 +msgid "Warning: %s requires Javascript to perform certain functions." +msgstr "Avertisment: %s necesita Javascript pentru anumite functii." + +#: login.php:20 +msgid "" +"You have been logged out of %s. Thank you for using the system. If you wish " +"to log in again, please use the form below." +msgstr "" +"Ati iesit din %s. Multumim pentru utilizarea sistemului. Daca doriti sa " +"reintrati, folositi formularul de mai jos." + +#: config/prefs.php.dist:8 +msgid "Your Information" +msgstr "Detalii personale" + +#: lib/MIME/Viewer/images.php:39 +msgid "Your browser does not support inline display of this image type" +msgstr "Browserul dumneavoastra nu poate afisa acest tip de imagine" + +#: lib/Gollem.php:335 +msgid "[ Home ]" +msgstr "[ Acasa ]" + +#: lib/Gollem.php:233 lib/Gollem.php:241 +msgid "[home]" +msgstr "[acasa]" + +#: templates/manager/file_summaries.inc:9 +msgid "folder" +msgstr "dosar" + +#: templates/manager/file_summaries.inc:7 +msgid "symlink" +msgstr "link simbolic" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/ru/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/ru/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/ru/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/ru/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/ru/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/ru/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,311 @@ +# Gollem 0.0.1 Russian Translation. +# Copyright 2001 Anton Nekhoroshih. +# Anton Nekhoroshih , 2001 +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 0.0.1\n" +"POT-Creation-Date: 2001-08-28 15:56\n" +"PO-Revision-Date: 2001-08-28 15:56\n" +"Last-Translator: Anton Nekhoroshih \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" + +msgid " renamed to " +msgstr " переименовать в " + +msgid " to: " +msgstr " в: " + +#, c-format +msgid "%d items in %s" +msgstr "%d элементов в %s" + +msgid "Note: These settings won't take effect until your next login." +msgstr "" +" Обратить внимание: Эти параметры настройки не будут вступать в " +"силу до вашего следующего входа в систему." + +msgid "An illegal value was specified." +msgstr "Указано не верное значение." + +msgid "Are you sure?" +msgstr "Вы уверены?" + +msgid "Ascending" +msgstr "По возрастанию" + +msgid "Cannot chmod " +msgstr "Невозможно изменить атрибуты" + +msgid "Cannot delete " +msgstr "Невозможнго удалить" + +msgid "Change your file sorting options." +msgstr "Изменить Ваш порядок сортировки." + +msgid "Change your ftp server" +msgstr "Изменить Ваш ftp сервер" + +msgid "Chmod Items" +msgstr "Сменить атрибуты" + +msgid "Chmod done: " +msgstr "Атрибуты изменены:" + +msgid "Choose Action:" +msgstr "Выберите действите:" + +msgid "Create Folder" +msgstr "Создать папку" + +msgid "Default sorting criteria:" +msgstr "Критерий сортировки по умолчанию:" + +msgid "Default sorting direction:" +msgstr "Направление сортировки по умолчанию:" + +msgid "Delete Items" +msgstr "Удалить элемент" + +msgid "Descending" +msgstr "По убыванию" + +msgid "Directory removed: " +msgstr "Директоря перемещена:" + +msgid "Display Options" +msgstr "Настройки экрана" + +msgid "" +"Either you have logged in incorrectly or your login has expired. Please " +"login again." +msgstr "" +"Или Вы вошли неправильно, или ваш вход в систему истек. Пожалуйста войдите " +"снова. " + +msgid "Error creating new folder: " +msgstr "Ошибка создания новой папки: " + +msgid "Error renaming: " +msgstr "Ошибка преименования: " + +msgid "Error uploading file: " +msgstr "Ошибка загрузки файла: " + +msgid "Error" +msgstr "Ошибка" + +msgid "File Modification Time" +msgstr "Время изменения файла" + +msgid "File Name" +msgstr "Имя файла" + +msgid "File Size" +msgstr "Размер файла" + +msgid "File Type" +msgstr "Тип файла" + +msgid "File deleted: " +msgstr "Файл удален: " + +msgid "File received: " +msgstr "Файл принят: " + +msgid "Forwards" +msgstr "Перенаправления" + +msgid "Gollem is not fully configured." +msgstr "Gollem не отконфигурирован." + +msgid "Group" +msgstr "Группа" + +msgid "Help" +msgstr "Помощь" + +msgid "Home" +msgstr "Домой" + +msgid "Incorrect number of items." +msgstr "Не верное кол-во элементов." + +msgid "Language" +msgstr "Язык" + +msgid "Log in" +msgstr "Войти" + +msgid "" +"Login failed for some reason. Most likely your username or password was " +"entered incorrectly." +msgstr "" +"Вход в систему, неудавшийся по некоторым причинам. Наиболее вероятно ваше " +"имя пользователя или пароль были введены неправильно." + +msgid "Logout" +msgstr "Выйти" + +msgid "Mail Forwards" +msgstr "Почтовая переадресация" + +msgid "Message" +msgstr "Сообщение" + +msgid "Modified" +msgstr "Изменен" + +msgid "Name" +msgstr "Имя" + +msgid "New User Introduction" +msgstr "Вступление для новеньких" + +msgid "New folder created: " +msgstr "Новая папка создад: " + +msgid "No such directory: " +msgstr "Несуществующая директория: " + +msgid "Options" +msgstr "Параметры" + +msgid "Other Options" +msgstr "Другие параметры" + +msgid "Owner" +msgstr "Владелец" + +msgid "Password Change" +msgstr "Смена пароля" + +msgid "Password" +msgstr "Пароль" + +msgid "Permission" +msgstr "Права" + +msgid "Please enter the mode in numeric format:" +msgstr "Пажулайста введите атрибут в цифровом формате:" + +msgid "Please enter the name of the new folder:" +msgstr "Пажулайста введите имя для новой папки:" + +msgid "Please provide your password." +msgstr "Пожалуйста укажите свой пароль." + +msgid "Please provide your username." +msgstr "Пожалуйста укажите свое Имя." + +msgid "Please select an item before this action." +msgstr "Пожалуйста выбирете элемент перед действием." + +msgid "Please specify a file to upload." +msgstr "Пажалуйста укажите имя файла для загрузки." + +msgid "Problem?" +msgstr "Проблемы?" + +msgid "Refresh" +msgstr "Обновить" + +msgid "Rename " +msgstr "Переименовать" + +msgid "Rename Items" +msgstr "Переименовать элементы" + +msgid "Server Information" +msgstr "Информация о сервере" + +msgid "Server" +msgstr "Сервер" + +msgid "Set the language that menu items, explanations, and help are in." +msgstr "Установите язык на котором будут пункты меню, объяснения, справки." + +msgid "Size" +msgstr "Размер" + +msgid "Some of Gollem's configuration files are missing:" +msgstr "Некоторые из файлов конфигурации Gollem отсутствуют:" + +msgid "Sort Direction" +msgstr "Направление сортировки" + +msgid "Success" +msgstr "Успешно" + +msgid "The following items will be permenantly deleted: " +msgstr "Следующие элементы будут удаленный: " + +msgid "There are no files in this directory." +msgstr "Нет никаких файлов в этом каталоге." + +msgid "This file lists each FTP server that Gollem makes available." +msgstr "Этот файл перечисляет FTP сервера, которые будут достпуны в Gollem." + +msgid "" +"This file sets the default user options for Gollem, and controls which ones " +"are user editable." +msgstr "" +"Этот файл устанавливает опции по умолчанию для пользователя Gollem, " +"доступными для редактирования." + +msgid "" +"This is the main Gollem configuration file. It contains paths and options " +"for the Gollem scripts." +msgstr "" +"Это главный файл конфигурации Gollem. Он содержит пути и опции для сценариев " +"Gollem." + +msgid "This number must be at least one." +msgstr "Этот номер должен быть по крайней мере один." + +msgid "This value must be a number." +msgstr "Значение должно быть цифрой." + +msgid "Type" +msgstr "Тип " + +msgid "Upload File" +msgstr "Загрузка файла" + +msgid "User Preferences" +msgstr "Настройки пользователя" + +msgid "Username" +msgstr "Пользователь" + +msgid "Warning" +msgstr "Внимание" + +#, c-format +msgid "Warning: %s requires Javascript to perform certain functions." +msgstr "Внимание: %s нужен Javascript для выполнения функций." + +#, c-format +msgid "Welcome to %s" +msgstr "Добро пожаловать в %s" + +msgid "Welcome" +msgstr "Добро пожаловать" + +#, c-format +msgid "" +"You have been logged out of %s. Thank you for using the system. If you wish " +"to log in again, please use the form below." +msgstr "Вы покинули систему %s. Спасибо за использование." + +msgid "Your Information" +msgstr "Ваша информация" + +msgid "Your preferences have been updated." +msgstr "Ваши настройки изменены." + +msgid "Your preferred FTP server:" +msgstr "Ваш основной FTP сервер:" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/sk/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/sk/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/sk/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/sk/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/sk/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/sk/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,537 @@ +# Slovak translations for Gollem package. +# Copyright 2008-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Martin Matuška , 2008 +# Jozef Sudolský , 2012-2014 +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H3 (1.0.4-cvs)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-01-13 21:04+0100\n" +"PO-Revision-Date: 2013-02-01 17:54+0200\n" +"Last-Translator: Jozef Sudolsky \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: manager.php:65 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" premenované na \"%s\"" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:594 +#, php-format +msgid "%d item" +msgstr "%d položka" + +#: manager.php:594 +#, php-format +msgid "%d items" +msgstr "%d položiek" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s bolo úspešne uložené." + +#: manager.php:178 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s bolo úspešne vložené." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "Prístup do %s bol odopretý" + +#: lib/Gollem.php:56 lib/Gollem.php:306 lib/Gollem.php:373 lib/Gollem.php:410 +#: lib/Gollem.php:433 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Prístup do priečinka \"%s\" bol odopretý." + +#: templates/selectlist.html.php:28 +msgid "Add" +msgstr "Pridať" + +#: templates/manager.html.php:9 +msgid "All" +msgstr "Všetky" + +#: manager.php:610 +msgid "Are you sure you wish to continue?" +msgstr "Naozaj chcete pokračovať?" + +#: manager.php:608 +msgid "Are you sure?" +msgstr "Ste si istý?" + +#: config/prefs.php:68 +msgid "Ascending" +msgstr "Vzostupne" + +#: config/prefs.php:98 +msgid "Ask" +msgstr "Spýtať sa" + +#: lib/Application.php:136 +msgid "Backend" +msgstr "Backend" + +#: lib/Application.php:83 +msgid "Backends" +msgstr "Backendy" + +#: templates/clipboard.html.php:12 +msgid "Below is the current contents of your clipboard." +msgstr "Nižšie je aktuálny obsah Vašej schránky." + +#: clipboard.php:23 templates/edit.html.php:15 +#: templates/selectlist.html.php:30 +msgid "Cancel" +msgstr "Zrušiť" + +#: manager.php:85 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "Nepodarilo sa vykonať chmod %s: %s" + +#: manager.php:153 +msgid "Cannot copy items onto clipboard." +msgstr "Nepodarilo sa skopírovať položky do schránky." + +#: manager.php:224 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Nepodarilo sa vytvoriť domovský priečinok %s." + +#: manager.php:155 +msgid "Cannot cut items onto clipboard." +msgstr "Nepodarilo sa vystrihnúť položky do schránky." + +#: manager.php:180 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Nepodarlio sa vložiť \"%s\" (súbor bol zmazaný zo schránky): %s" + +#: manager.php:330 manager.php:605 +msgid "Change Folder" +msgstr "Zmeniť priečinok" + +#: templates/manager.html.php:60 +msgid "Change Permissions" +msgstr "Zmeniť prístupové práva" + +#: lib/Application.php:244 +msgid "Check Quota" +msgstr "Skontrolovať kvóta" + +#: manager.php:590 +msgid "Check _All/None" +msgstr "Vybrať _všetky/žiadne" + +#: manager.php:83 +msgid "Chmod done: " +msgstr "Chmod vykonaný: " + +#: lib/Prefs/Special/Columnselect.php:47 +msgid "Choose which columns to display, and in what order:" +msgstr "Vyberte, ktoré stĺpce sa majú zobraziť a v akom poradí:" + +#: clipboard.php:24 +msgid "Clear" +msgstr "Odstrániť" + +#: clipboard.php:51 lib/Application.php:227 templates/clipboard.html.php:7 +msgid "Clipboard" +msgstr "Schránka" + +#: quota.php:25 +msgid "Close" +msgstr "Zavrieť" + +#: lib/Prefs/Special/Columnselect.php:51 +msgid "Columns that will not be displayed:" +msgstr "Stĺpce, ktoré nebudú zobrazené:" + +#: clipboard.php:27 templates/manager.html.php:63 +msgid "Copy" +msgstr "Kopírovať" + +#: manager.php:318 manager.php:606 +msgid "Create Folder" +msgstr "Vytvoriť priečinok" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Vytvorené prázdne práva pre \"%s\". Teraz musíte jednotlivo povoliť prístup " +"do tohto backendu." + +#: templates/clipboard.html.php:22 +msgid "Current directory:" +msgstr "Aktuálny priečinok: " + +#: clipboard.php:26 templates/manager.html.php:65 +msgid "Cut" +msgstr "Vystrihnúť" + +#: config/prefs.php:60 +msgid "Default sorting criteria:" +msgstr "Prednastavený spôsob triedenia:" + +#: config/prefs.php:71 +msgid "Default sorting direction:" +msgstr "Prednastavený smer triedenia:" + +#: templates/manager.html.php:69 +msgid "Delete" +msgstr "Vymazať" + +#: config/prefs.php:100 +msgid "Delete folders recursively?" +msgstr "Vymazať priečinky a ich obsah?" + +#: config/prefs.php:69 +msgid "Descending" +msgstr "Zostupne" + +#: templates/selectlist.html.php:29 +msgid "Done" +msgstr "Vykonané" + +#: manager.php:463 +#, php-format +msgid "Download %s" +msgstr "Stiahnuť %s" + +#: templates/quota.html.php:7 +msgid "ERROR:" +msgstr "CHYBA:" + +#: templates/edit.html.php:8 +#, php-format +msgid "Edit %s" +msgstr "Upraviť %s" + +#: templates/manager.html.php:24 +msgid "Execute" +msgstr "Spustiť" + +#: manager.php:611 templates/manager.html.php:146 +msgid "File" +msgstr "Súbor" + +#: config/prefs.php:87 +msgid "File Actions" +msgstr "Operácie" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Zobrazenie súborov" + +#: config/prefs.php:57 +msgid "File Modification Time" +msgstr "Čas modifikácie súborov" + +#: config/prefs.php:56 +msgid "File Name" +msgstr "Meno súboru" + +#: config/prefs.php:58 +msgid "File Size" +msgstr "Veľkosť súboru" + +#: config/prefs.php:55 +msgid "File Type" +msgstr "Typ súboru" + +#: config/prefs.php:88 +msgid "File action settings." +msgstr "Nastavenie operácií súborov." + +#: manager.php:100 +msgid "File deleted: " +msgstr "Súbor vymazaný:" + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Nastavenie zobrazovania súborov." + +#: manager.php:121 +#, php-format +msgid "File received: %s" +msgstr "Súbor prijatý: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "Súbory musia byť zapisované v backende VFS." + +#: manager.php:341 +msgid "Filter" +msgstr "Filter" + +#: manager.php:92 +msgid "Folder removed: " +msgstr "Priečinok vymazaný:" + +#: lib/Api.php:157 lib/Api.php:190 +msgid "Folders must be created inside a VFS backend." +msgstr "Priečinky musia byť vytvárané v backende VFS." + +#: manager.php:568 templates/manager.html.php:8 +msgid "Group" +msgstr "Skupina" + +#: lib/Api.php:413 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Neplatný backend: %s" + +#: manager.php:147 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Položka skopírovaná do schránky: %s" + +#: manager.php:149 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Položka vystrihnutá do schránky: %s" + +#: config/prefs.php:78 +msgid "Items per page" +msgstr "Počet položiek na stránku" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Zobraziť najprv priečinky?" + +#: manager.php:540 +msgid "Modified" +msgstr "Zmenené" + +#: manager.php:514 +msgid "Name" +msgstr "Meno" + +#: manager.php:50 +msgid "New folder created: " +msgstr "Nový priečinok bol vytvorený: " + +#: config/prefs.php:96 +msgid "No" +msgstr "Nie" + +#: templates/quota.html.php:12 +msgid "No quota found." +msgstr "Žiadne kvóta neboli nájdené." + +#: manager.php:562 templates/manager.html.php:7 +msgid "Owner" +msgstr "Vlastník" + +#: clipboard.php:25 +msgid "Paste" +msgstr "Vložiť" + +#: manager.php:556 +msgid "Permission" +msgstr "Právo" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Prístup zamietnutý do %s: %s" + +#: manager.php:217 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Prístup zamietnutý do priečinka \"%s\": %s" + +#: lib/Api.php:421 +msgid "Permission denied to this backend." +msgstr "Prístup do tohto backendu bol odopretý." + +#: manager.php:612 +msgid "Permissions" +msgstr "Práva" + +#: manager.php:614 +msgid "Please select an item before this action." +msgstr "Prosím vyberte položku pred vykonaním tejto operácie." + +#: manager.php:615 +msgid "Please specify at least one file to upload." +msgstr "Prosím vyberte aspoň jeden súbor na nahranie." + +#: quota.php:58 templates/quota.html.php:2 +msgid "Quota Display" +msgstr "Zobrazenie kvót" + +#: templates/manager.html.php:12 +msgid "Read" +msgstr "Čítať" + +#: manager.php:287 +msgid "Refresh" +msgstr "Obnoviť" + +#: manager.php:613 templates/manager.html.php:72 +msgid "Rename" +msgstr "Premenovať" + +#: lib/Api.php:206 +msgid "Renaming across backends is not supported." +msgstr "Premenovanie medzi backendami nie je podporované." + +#: lib/Api.php:198 +msgid "Renaming of backends is not allowed." +msgstr "Premenovanie backendov nie je povolené." + +#: templates/edit.html.php:14 +msgid "Reset" +msgstr "Zrušiť" + +#: templates/edit.html.php:13 +msgid "Save" +msgstr "Uložiť" + +#: clipboard.php:46 templates/clipboard.html.php:32 +msgid "Select All" +msgstr "Vybrať všetko" + +#: clipboard.php:47 +msgid "Select None" +msgstr "Vybrať žiadne" + +#: lib/Prefs/Special/Columnselect.php:49 +msgid "Select a backend:" +msgstr "Prosím vyberte backend:" + +#: manager.php:301 manager.php:420 +msgid "Share Folder" +msgstr "Zdielať priečinok" + +#: manager.php:420 +msgid "Shared Folder" +msgstr "Zdielaný priečinok" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Zobraziť súbory začínajúce bodkou?" + +#: manager.php:548 +msgid "Size" +msgstr "Veľkosť" + +#: lib/Application.php:215 +msgid "Start Folder" +msgstr "Počiatočný priečinok" + +#: lib/Api.php:235 +msgid "The application folder can not be deleted." +msgstr "Priečinok aplikácií nemôže byť zmazaný." + +#: manager.php:609 +msgid "The following item(s) are folders:" +msgstr "Nasledujúce položky sú priečinky:" + +#: manager.php:607 +msgid "The following items will be permanently deleted:" +msgstr "Nasledujúce položky budú trvale vymazané:" + +#: selectlist.php:174 +msgid "The original opener window has been closed. Exiting." +msgstr "Pôvodné okno bolo zavreté. Koniec." + +#: templates/manager.html.php:80 templates/selectlist.html.php:15 +msgid "There are no files in this folder." +msgstr "V tomto priečinku nie sú žiadne súbory." + +#: lib/Prefs/Special/Columnselect.php:48 +msgid "These columns will display in this order:" +msgstr "Zobrazia sa tieto stĺpce v uvedenom poradí:" + +#: templates/clipboard.html.php:18 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Ak chcete odstrániť položky zo schránky, zaškrtnite štvorček vedľa súboru a " +"kliknite na "Odstrániť"." + +#: templates/clipboard.html.php:16 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Ak chcete vložiť položky zo schránky do aktuálneho priečinka, zaškrtnite " +"štvorček vedľa súboru a kliknite na "Vložiť"." + +#: manager.php:506 +msgid "Type" +msgstr "Typ" + +#: lib/Api.php:417 +msgid "Unable to create Gollem session" +msgstr "Nepodarilo sa vytvoriť sedenie Gollem" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Nepodarilo sa vytvoriť právo pre backend: %s" + +#: manager.php:102 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Nepodarilo sa vymazať súbor %s: %s" + +#: manager.php:94 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Nepodarilo sa vymazať priečinok %s: %s" + +#: lib/Gollem.php:687 lib/Gollem.php:697 +#, php-format +msgid "Up to %s" +msgstr "Vyššie na %s" + +#: manager.php:313 +msgid "Upload File(s)" +msgstr "Nahrať súbory" + +#: config/prefs.php:14 config/prefs.php:86 +msgid "User Interface" +msgstr "Používateľské rozhranie" + +#: templates/manager.html.php:18 +msgid "Write" +msgstr "Zapísať" + +#: config/prefs.php:97 +msgid "Yes" +msgstr "Áno" + +#: share.php:29 +msgid "You are not allowed to share this folder" +msgstr "Nemáte právo na zdielanie tohto priečinku." + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "Musíte mať nastavený aspoň jeden backend na nastavenie práv." + +#: lib/Application.php:251 +msgid "_Permissions" +msgstr "_Práva" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/sl/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/sl/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/sl/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/sl/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/sl/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/sl/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,641 @@ +# Slovenian translations for Gollem packaga +# Slovenski prevod Gollem paketa +# Copyright 2006-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the horde package. +# Automatically generated, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: gollem\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2006-07-25 11:30+0200\n" +"PO-Revision-Date: 2006-04-30 10:32+0100\n" +"Last-Translator: duck@obala.net\n" +"Language-Team: sl_SI \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: manager.php:52 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "'%s' je bil preimenovan v '%s'" + +#: quota.php:59 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:267 +#, php-format +msgid "%d items" +msgstr "%d datotek" + +#: manager.php:429 +#, php-format +msgid "%s Folders and %s Files (%s Kb)" +msgstr "%s Imenikov in %s Datotek (%s Kb)" + +#: manager.php:427 +#, php-format +msgid "%s Folders and 1 File (%s Kb)" +msgstr "%s Imenikov in 1 Datoteka (%s Kb)" + +#: login.php:143 +#, php-format +msgid "%s Login" +msgstr "%s se Prijavlja" + +#: edit.php:33 +#, fuzzy, php-format +msgid "%s successfully saved." +msgstr "%s je bil uspeno prilepljen." + +#: manager.php:159 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s je bil uspeno prilepljen." + +#: manager.php:424 +#, php-format +msgid "1 Folder and %s Files (%s Kb)" +msgstr "1 Imenik in %s Datotek (%s Kb)" + +#: manager.php:422 +#, php-format +msgid "1 Folder and 1 File (%s Kb)" +msgstr "1 Imenik in 1 Datoteka (%s Kb)" + +#: manager.php:267 +msgid "1 item" +msgstr "1 datoteka" + +#: templates/javascript/src/popup.js:58 +msgid "" +"A popup window could not be opened. Perhaps you have set your browser to " +"block popup windows?" +msgstr "" + +#: templates/javascript/popup.js:9 +msgid "" +"A popup window could not be opened.Perhaps you have set your browser to " +"block popup windows?" +msgstr "" + +#: edit.php:31 edit.php:41 view.php:31 +#, php-format +msgid "Access denied to %s" +msgstr "Dostop do %s je bil zavrnjen" + +#: lib/Gollem.php:116 lib/Gollem.php:390 lib/Gollem.php:452 lib/Gollem.php:473 +#: lib/Gollem.php:490 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Dostop do %s je bil zavrnjen." + +#: templates/manager/manager.html:102 +msgid "Actions:" +msgstr "Akcije:" + +#: selectlist.php:100 +msgid "Add" +msgstr "Dodaj" + +#: templates/prefs/columnselect.inc:42 +msgid "Add column" +msgstr "Dodaj stolpec" + +#: templates/manager/manager.html:11 +msgid "All" +msgstr "Vse" + +#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:209 +msgid "Are you sure you wish to continue?" +msgstr "Ste sigurni?" + +#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:205 +msgid "Are you sure?" +msgstr "Ali ste preprieani?" + +#: config/prefs.php.dist:69 +msgid "Ascending" +msgstr "Vzpenjajoe" + +#: config/prefs.php.dist:93 +msgid "Ask" +msgstr "Vpraaj" + +#: templates/manager/manager.html:5 +msgid "Attributes" +msgstr "Lastnosti" + +#: templates/prefs/columnselect.html:20 +msgid "Available Columns:" +msgstr "Na razpolago so stolpci:" + +#: lib/api.php:46 +msgid "Backends" +msgstr "Viri podatkov" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "Spodaj je navedena vsebina vašega pomnilnika (clipboard)." + +#: manager.php:261 selectlist.php:102 clipboard.php:37 +#: templates/edit/edit.inc:13 +msgid "Cancel" +msgstr "Razveljavi" + +#: manager.php:72 +#, php-format +msgid "Cannot chmod %s" +msgstr "Ne morem spremeniti dovoljenja za dostop v datoteko %s " + +#: manager.php:133 +msgid "Cannot copy items onto clipboard." +msgstr "Ne morem kopirati datotek na tablico." + +#: manager.php:192 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Ne morem ustvariti imenika: %s" + +#: manager.php:135 +msgid "Cannot cut items onto clipboard." +msgstr "Ne morem izrezati datotek na tablici." + +#: manager.php:80 +#, php-format +msgid "Cannot delete \"%s\": %s" +msgstr "Ne morem zbrisati '%s': %s" + +#: manager.php:157 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "Ne morem prilepiti '%s' (pomnilnik je bil počiščen): %s" + +#: lib/Gollem.php:777 templates/manager/manager.html:70 +msgid "Change Folder" +msgstr "Sprenenite imenik" + +#: selectlist.php:110 lib/Gollem.php:821 +msgid "Change Server" +msgstr "Sprenenite strežnik" + +#: config/prefs.php.dist:21 +msgid "Change file and folder handling settings." +msgstr "Spremite datotekine in mapine nastavitve." + +#: config/prefs.php.dist:14 +msgid "Change your file sorting options." +msgstr "Spremenite vae monosti za zbiranje datotek." + +#: lib/Gollem.php:795 +msgid "Check Quota" +msgstr "Prevezi zasedenost" + +#: manager.php:513 +msgid "Check _All/None" +msgstr "Izberite Vse/Nobene" + +#: templates/manager/manager.html:104 +msgid "Chmod" +msgstr "Dovljenja" + +#: manager.php:70 +msgid "Chmod done: " +msgstr "Spremenjeno je dovoljenje za dostop v datoteko: " + +#: templates/prefs/columnselect.html:12 +msgid "Choose the columns to display in the file manager." +msgstr "Izberite stolpec, ki elite, da se prikae v manager datoteki." + +#: clipboard.php:38 +msgid "Clear" +msgstr "Počisti" + +#: clipboard.php:17 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "Vmesni pomnilnik" + +#: quota.php:31 +msgid "Close" +msgstr "Zapri" + +#: login.php:256 +#, php-format +msgid "Connect to: %s" +msgstr "Povei se na: %s " + +#: clipboard.php:41 templates/manager/manager.html:107 +msgid "Copy" +msgstr "Kopiraj" + +#: lib/Gollem.php:774 templates/manager/manager.html:58 +msgid "Create Folder" +msgstr "Ustvari Imenik" + +#: permissions.php:47 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"Tvorjenje pravice za \"%s\". Sedaj morate resnično dodeliti pravice dostop " +"do tega podatkovnega vira." + +#: templates/clipboard/clipboard.html:17 +msgid "Current directory:" +msgstr "Trenutni imenik: %s" + +#: clipboard.php:40 templates/manager/manager.html:108 +msgid "Cut" +msgstr "Odreži" + +#: config/prefs.php.dist:59 +msgid "Default sorting criteria:" +msgstr "Privzeta razvreevalna merila" + +#: config/prefs.php.dist:72 +msgid "Default sorting direction:" +msgstr "Privzeta razvreevalna smer:" + +#: templates/manager/manager.html:111 +msgid "Delete" +msgstr "Zbriši" + +#: config/prefs.php.dist:95 +msgid "Delete folders recursively?" +msgstr "PObrišem imenik in njegovo vsebino?" + +#: config/prefs.php.dist:70 +msgid "Descending" +msgstr "Padajoče" + +#: selectlist.php:101 +msgid "Done" +msgstr "Končano" + +#: manager.php:217 +msgid "Download" +msgstr "Nalagam" + +#: manager.php:396 +#, php-format +msgid "Download %s" +msgstr "Shrani %s" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "NAPAKA:" + +#: manager.php:216 +msgid "Edit" +msgstr "" + +#: templates/edit/edit.inc:8 +#, php-format +msgid "Edit %s" +msgstr "" + +#: config/credentials.php.dist:28 +msgid "Email" +msgstr "Elektronski naslov" + +#: templates/manager/manager.html:26 +msgid "Execute" +msgstr "Izvedi" + +#: templates/javascript/manager.js:96 templates/javascript/src/manager.js:492 +#: templates/manager/manager.html:179 +msgid "File" +msgstr "Datoteke" + +#: config/prefs.php.dist:13 +msgid "File Display" +msgstr "Prikazujem Ddtoteko" + +#: config/prefs.php.dist:56 +msgid "File Modification Time" +msgstr "Datoteka Spreminjanje Easa" + +#: config/prefs.php.dist:55 +msgid "File Name" +msgstr "Ime datoteke" + +#: config/prefs.php.dist:57 +msgid "File Size" +msgstr "Velikost Datoteke" + +#: config/prefs.php.dist:54 +msgid "File Type" +msgstr "Vrsta Datoteke" + +#: manager.php:76 +msgid "File deleted: " +msgstr "Zbrisana Datoteka: " + +#: manager.php:101 +#, php-format +msgid "File received: %s" +msgstr "Sprejeta datoteka: %s" + +#: manager.php:78 +msgid "Folder removed: " +msgstr "Imenik pobrisan: " + +#: templates/manager/manager.html:72 +msgid "Go to:" +msgstr "Pojdi:" + +#: permissions.php:21 +msgid "Gollem Backend Permissions Administration" +msgstr "Gollem Pravice dostopa do podatkovnega vira" + +#: manager.php:492 templates/manager/manager.html:10 +msgid "Group" +msgstr "Skupina" + +#: lib/Gollem.php:770 +msgid "Home" +msgstr "Domov" + +#: manager.php:56 +msgid "Incorrect number of items." +msgstr "Nepravilno tevilo datotek." + +#: manager.php:126 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Enota je bila kopirna na tablico: %s" + +#: manager.php:128 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Enota je bila izrezana za tablico: %s" + +#: templates/login/login.html:67 +msgid "Language" +msgstr "Jezik" + +#: config/prefs.php.dist:81 +msgid "List folders first?" +msgstr "Izpiši najprej imenike?" + +#: login.php:305 +msgid "Login" +msgstr "Prijavi se" + +#: quota.php:62 +msgid "MB free" +msgstr "MB prosto " + +#: quota.php:62 +msgid "MB used" +msgstr "MB zasedeno" + +#: lib/Block/tree_menu.php:3 +msgid "Menu List" +msgstr "Meni" + +#: manager.php:466 +msgid "Modified" +msgstr "Spremenjen" + +#: templates/prefs/columnselect.inc:44 +msgid "Move left" +msgstr "Premakni v levo" + +#: templates/prefs/columnselect.inc:45 +msgid "Move right" +msgstr "Premakni v desno" + +#: manager.php:447 +msgid "Name" +msgstr "Ime" + +#: templates/manager/manager.html:46 templates/manager/manager.html:60 +msgid "Name:" +msgstr "Ime:" + +#: manager.php:35 +msgid "New folder created: " +msgstr "Ustvarjen nov imenik: " + +#: config/prefs.php.dist:91 +msgid "No" +msgstr "Ne" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "Ni omejitev prostora" + +#: manager.php:262 +msgid "OK" +msgstr "OK" + +#: manager.php:486 templates/manager/manager.html:9 +msgid "Owner" +msgstr "Lastnik" + +#: config/credentials.php.dist:23 +msgid "Password" +msgstr "Geslo" + +#: clipboard.php:39 +msgid "Paste" +msgstr "Prilepi" + +#: manager.php:480 +msgid "Permission" +msgstr "Dovoljenje" + +#: selectlist.php:63 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Dovoljenje za %s: %s je bilo zavrnjeno." + +#: manager.php:200 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Dovoljenje za %s je bilo zavrnjeno: %s." + +#: lib/Gollem.php:784 +msgid "Permissions" +msgstr "Dovoljenja" + +#: templates/javascript/login.js:6 templates/javascript/src/login.js:43 +msgid "Please provide your password." +msgstr "Prosim, izberite si vae geslo." + +#: templates/javascript/login.js:6 templates/javascript/src/login.js:38 +msgid "Please provide your username." +msgstr "Prosim, izberite si vae uporabniko ime." + +#: templates/prefs/columnselect.html:5 +msgid "Please select a backend:" +msgstr "Prosim, izberite backend:" + +#: templates/javascript/manager.js:28 templates/javascript/src/manager.js:139 +msgid "Please select an item before this action." +msgstr "Prosim, izberite datoteko preden zaenete s tem dejanjem." + +#: templates/javascript/manager.js:93 templates/javascript/src/manager.js:463 +msgid "Please specify at least one file to upload." +msgstr "Prosim, doloeite vsaj eno datoteko, ki jo elite posodobiti." + +#: quota.php:18 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "Razpoložljiv prostor" + +#: quota.php:61 +msgid "Quota Usage" +msgstr "Porabljen prostor" + +#: templates/manager/manager.html:14 +msgid "Read" +msgstr "Breanje" + +#: manager.php:269 +msgid "Refresh" +msgstr "Osveži" + +#: templates/prefs/columnselect.inc:43 +msgid "Remove column" +msgstr "Odstrani stolpec" + +#: templates/manager/manager.html:44 templates/manager/manager.html:114 +msgid "Rename" +msgstr "Preimenuj" + +#: templates/edit/edit.inc:12 +msgid "Reset" +msgstr "" + +#: lib/Gollem.php:734 lib/Gollem.php:739 +msgid "Root" +msgstr "Koren" + +#: manager.php:260 templates/edit/edit.inc:11 +msgid "Save" +msgstr "Shrani" + +#: templates/prefs/columnselect.html:30 +msgid "Selected Columns:" +msgstr "Izbrani stolpci:" + +#: templates/login/login.html:31 +msgid "Server" +msgstr "Strenik" + +#: config/prefs.php.dist:20 +msgid "Settings" +msgstr "Nastavitve" + +#: config/prefs.php.dist:30 +msgid "Show dotfiles?" +msgstr "Ali pokaem dotdatoteke?" + +#: manager.php:473 +msgid "Size" +msgstr "Velikost" + +#: manager.php:499 +msgid "Sort Direction" +msgstr "Izberi Smer" + +#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:209 +msgid "The following item(s) are folders: " +msgstr "Sledeče datoteke so direktoriji: " + +#: templates/javascript/manager.js:39 templates/javascript/src/manager.js:205 +msgid "The following items will be permanently deleted: " +msgstr "Naslednje datoteke bodo zbrisane za vedno: " + +#: templates/javascript/selectlist.js:2 +#: templates/javascript/src/selectlist.js:16 +msgid "The original opener window has been closed. Exiting." +msgstr "Izvorno okno je bilo zaprto. Zapiram." + +#: login.php:150 +msgid "There are no backends available for the current user." +msgstr "Ni podatkovnih virov za trenutnega uporabnika." + +#: selectlist.php:193 templates/manager/manager.html:125 +msgid "There are no files in this folder." +msgstr "V tem imeniku ni datotek." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "Za izbrisanje s pomnilika izberite daoteke in klinite 'Počisti'." + +#: templates/clipboard/clipboard.html:13 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "Za prilepiti datoteke jih izberite in kliknite 'Prilepi'" + +#: manager.php:440 +msgid "Type" +msgstr "Vrsta" + +#: permissions.php:42 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Nimate priavice dostopa do podatkovnega vira: %s." + +#: lib/Gollem.php:739 lib/Gollem.php:749 +#, php-format +msgid "Up to %s" +msgstr "Nazaj na %s " + +#: manager.php:282 +msgid "Upload File(s)" +msgstr "Naloži datoteke" + +#: config/prefs.php.dist:12 config/prefs.php.dist:19 +msgid "User Interface" +msgstr "Uporabniki vmesnik" + +#: config/credentials.php.dist:18 +msgid "Username" +msgstr "Uporabniko ime" + +#: manager.php:277 +msgid "View Clipboard" +msgstr "Preglej predpomnilnik" + +#: login.php:195 +#, php-format +msgid "Welcome to %s" +msgstr "Pozdravleni v %s " + +#: templates/manager/manager.html:20 +msgid "Write" +msgstr "Pisanje" + +#: config/prefs.php.dist:92 +msgid "Yes" +msgstr "Da" + +#: permissions.php:25 +msgid "You need at least one backend defined to set permissions." +msgstr "Morate navesti vsaj en podatkovni vir za spreminjat pravice dostpa." + +#: lib/MIME/Viewer/images.php:35 +msgid "Your browser does not support inline display of this image type" +msgstr "Vaš brskalnik ne podpira prikaza te vrste slike." + +#: lib/Gollem.php:819 lib/Gollem.php:822 +msgid "_Change Server" +msgstr "Sprenenite strenik" + +#: manager.php:218 selectlist.php:74 +msgid "folder" +msgstr "imenik" + +#: manager.php:219 selectlist.php:75 +msgid "symlink" +msgstr "blinica" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/sv/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/sv/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/sv/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/sv/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/sv/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/sv/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,593 @@ +# Gollem Swedish translation +# Copyright 2002-2005 Andreas Dahlén. +# Andreas Dahlén , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem 0.0.1-cvs\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2005-06-14 22:08+0200\n" +"PO-Revision-Date: 2005-06-16 08:48+0100\n" +"Last-Translator: Andreas Dahlén \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: templates/manager/header.inc:639 +#, php-format +msgid "%d items" +msgstr "%d poster" + +#: templates/manager/file_headers.inc:22 +#, php-format +msgid "%s Folders and %s Files (%s Kb)" +msgstr "%s mappar och %s filer (%s Kb)" + +#: templates/manager/file_headers.inc:20 +#, php-format +msgid "%s Folders and 1 File (%s Kb)" +msgstr "%s mappar och 1 fil (%s Kb)" + +#: templates/login/login.inc:72 templates/xppublish/backend.inc:10 +#, php-format +msgid "%s Login" +msgstr "%s inloggning" + +#: manager.php:171 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s klistrades in." + +#: manager.php:67 +#, php-format +msgid "'%s' renamed to '%s'" +msgstr "namet på '%s' byttes till '%s'" + +#: templates/manager/file_headers.inc:17 +#, php-format +msgid "1 Folder and %s Files (%s Kb)" +msgstr "1 mapp och %s fil (%s Kb)" + +#: templates/manager/file_headers.inc:15 +#, php-format +msgid "1 Folder and 1 File (%s Kb)" +msgstr "1 mapp och 1 fil (%s Kb)" + +#: templates/manager/header.inc:639 +msgid "1 item" +msgstr "1 post" + +#: view.php:23 +#, php-format +msgid "Access denied to %s" +msgstr "Access nekades till %s" + +#: lib/Gollem.php:119 lib/Gollem.php:413 lib/Gollem.php:448 lib/Gollem.php:471 +#: lib/Gollem.php:490 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Access nekades till mapp '%s'." + +#: templates/manager/header.inc:660 +msgid "Actions" +msgstr "Åtgärder" + +#: templates/selectlist/footer.inc:3 +msgid "Add" +msgstr "Lägg till" + +#: templates/prefs/columnselect.inc:234 +msgid "Add column" +msgstr "Lägg till kolumn" + +#: templates/manager/header.inc:499 +msgid "All" +msgstr "Alla" + +#: templates/manager/header.inc:180 +msgid "Are you sure you wish to continue?" +msgstr "Är det säkert att du vill fortsätta?" + +#: templates/manager/header.inc:176 +msgid "Are you sure?" +msgstr "Är du säker?" + +#: config/prefs.php.dist:69 +msgid "Ascending" +msgstr "Stigande" + +#: config/prefs.php.dist:94 +msgid "Ask" +msgstr "Fråga" + +#: templates/manager/header.inc:493 +msgid "Attributes" +msgstr "Attribut" + +#: templates/prefs/columnselect.inc:230 +msgid "Available Columns:" +msgstr "Tillgängliga kolumner:" + +#: lib/api.php:46 +msgid "Backends" +msgstr "Backends" + +#: templates/xppublish/browse.inc:7 +msgid "Browse to the folder to upload files to" +msgstr "Bläddra till den mapp som filer skall laddas upp till" + +#: templates/manager/header.inc:521 templates/manager/header.inc:554 +#: templates/manager/header.inc:586 templates/manager/header.inc:618 +#: templates/selectlist/footer.inc:5 +msgid "Cancel" +msgstr "Avbryt" + +#: manager.php:89 +#, php-format +msgid "Cannot chmod %s" +msgstr "Kan inte chmod %s" + +#: manager.php:147 +msgid "Cannot copy items onto clipboard." +msgstr "Kan inte kopiera poster till klippbord." + +#: manager.php:194 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Kan inte skapa hemmamapp: %s" + +#: manager.php:149 +msgid "Cannot cut items onto clipboard." +msgstr "Kan inte klippa ut poster till klippbord." + +#: manager.php:97 +#, php-format +msgid "Cannot delete '%s': %s" +msgstr "Kan inte radera '%s': %s" + +#: manager.php:169 +#, php-format +msgid "Cannot paste '%s' (clipboard cleared): %s" +msgstr "Kan inte klistra in '%s' (urklippshanteraren rensad): %s" + +#: lib/Gollem.php:751 templates/manager/header.inc:599 +#: templates/manager/header.inc:662 +msgid "Change Folder" +msgstr "Ändra mapp" + +#: templates/menu.inc:8 templates/selectlist/header.inc:17 +msgid "Change Server" +msgstr "_Ändra server" + +#: config/prefs.php.dist:21 +msgid "Change file and folder handling settings." +msgstr "Ändra inställningar för hantering av mappar och filer." + +#: config/prefs.php.dist:14 +msgid "Change your file sorting options." +msgstr "Ändra inställningar för sortering av filer." + +#: templates/manager/file_headers.inc:28 +msgid "Check _All/None" +msgstr "Markera _Alla/Ingen" + +#: templates/manager/header.inc:675 +msgid "Chmod Items" +msgstr "Chmod poster" + +#: manager.php:87 +msgid "Chmod done: " +msgstr "Chmod klar: " + +#: templates/prefs/columnselect.inc:224 +msgid "Choose the columns to display in the file manager." +msgstr "Välj kolumner som visas i filhanteraren." + +#: templates/login/login.inc:95 templates/xppublish/backend.inc:33 +#, php-format +msgid "Connect to: %s" +msgstr "Anslut till: %s" + +#: templates/manager/header.inc:678 +msgid "Copy Items" +msgstr "Kopiera poster" + +#: lib/Gollem.php:748 templates/manager/header.inc:567 +#: templates/manager/header.inc:665 +msgid "Create Folder" +msgstr "Skapa mapp" + +#: templates/manager/header.inc:677 +msgid "Cut Items" +msgstr "Klipp ut poster" + +#: config/prefs.php.dist:59 +msgid "Default sorting criteria:" +msgstr "Förvald sorteringsordning:" + +#: config/prefs.php.dist:72 +msgid "Default sorting direction:" +msgstr "Förvald sorteringsriktning:" + +#: templates/manager/header.inc:672 +msgid "Delete Items" +msgstr "Radera post" + +#: config/prefs.php.dist:96 +msgid "Delete folders recursively?" +msgstr "Radera mappar rekursivt?" + +#: config/prefs.php.dist:70 +msgid "Descending" +msgstr "Fallande" + +#: templates/selectlist/footer.inc:4 +msgid "Done" +msgstr "Klar" + +#: manager.php:222 templates/manager/file_headers.inc:42 +msgid "Download" +msgstr "Hämta" + +#: xppublish.php:138 +#, php-format +msgid "ERROR: %s" +msgstr "Fel: %s" + +#: config/credentials.php.dist:28 +msgid "Email" +msgstr "E-post" + +#: templates/manager/header.inc:514 +msgid "Execute" +msgstr "Kör" + +#: templates/manager/header.inc:464 templates/manager/header.inc:649 +msgid "File" +msgstr "Fil" + +#: config/prefs.php.dist:13 +msgid "File Display" +msgstr "Visa fil" + +#: config/prefs.php.dist:56 +msgid "File Modification Time" +msgstr "Ändringstid" + +#: config/prefs.php.dist:55 +msgid "File Name" +msgstr "Filnamn" + +#: config/prefs.php.dist:57 +msgid "File Size" +msgstr "Filstorlek" + +#: config/prefs.php.dist:54 +msgid "File Type" +msgstr "Filtyp" + +#: templates/xppublish/javascript.inc:63 +msgid "File Upload" +msgstr "Ladda upp" + +#: manager.php:93 +msgid "File deleted: " +msgstr "Fil raderad: " + +#: manager.php:120 +#, php-format +msgid "File received: %s" +msgstr "Fil mottagen: %s" + +#: manager.php:95 +msgid "Folder removed: " +msgstr "Mapp raderad: " + +#: templates/manager/header.inc:607 +msgid "Go to:" +msgstr "Gå till:" + +#: templates/manager/header.inc:498 templates/manager/file_headers.inc:64 +msgid "Group" +msgstr "Grupp" + +#: lib/Gollem.php:744 +msgid "Home" +msgstr "Hem" + +#: manager.php:71 +msgid "Incorrect number of items." +msgstr "Felaktigt antal poster." + +#: manager.php:140 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Poster kopierade till klippbord: %s" + +#: manager.php:142 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Poster urklippta till klippbord: %s" + +#: config/prefs.php.dist:81 +msgid "List folders first?" +msgstr "Visa mappar först?" + +#: templates/login/login.inc:119 +msgid "Log in" +msgstr "Logga in" + +#: templates/xppublish/login.inc:2 +#, php-format +msgid "Login to %s" +msgstr "Logga in på %s" + +#: lib/Block/tree_menu.php:3 +msgid "Menu List" +msgstr "Menylista" + +#: templates/manager/file_headers.inc:47 +msgid "Modified" +msgstr "Ändrad" + +#: templates/prefs/columnselect.inc:244 +msgid "Move left" +msgstr "Flytta vänster" + +#: templates/prefs/columnselect.inc:246 +msgid "Move right" +msgstr "Flytta höger" + +#: templates/manager/file_headers.inc:38 +msgid "Name" +msgstr "Namn" + +#: templates/manager/header.inc:543 templates/manager/header.inc:575 +msgid "Name:" +msgstr "Namn:" + +#: manager.php:48 +msgid "New folder created: " +msgstr "Ny mapp skapades: " + +#: config/prefs.php.dist:92 +msgid "No" +msgstr "Nej" + +#: templates/manager/header.inc:553 templates/manager/header.inc:585 +#: templates/manager/header.inc:617 +msgid "OK" +msgstr "OK" + +#: templates/manager/header.inc:497 templates/manager/file_headers.inc:60 +msgid "Owner" +msgstr "Ägare" + +#: templates/xppublish/login.inc:14 config/credentials.php.dist:23 +msgid "Password" +msgstr "Lösenord" + +#: templates/manager/header.inc:684 +msgid "Paste Items" +msgstr "Klistra in post" + +#: templates/manager/file_headers.inc:56 +msgid "Permission" +msgstr "Behörighet" + +#: selectlist.php:65 templates/xppublish/browse.inc:28 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Behörighet nekades till %s: %s" + +#: manager.php:202 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Behörighet nekades till mapp '%s': %s" + +#: xppublish.php:55 +msgid "Please enter your Username and Password." +msgstr "Ange ditt användarnamn och lösenord." + +#: templates/login/login.inc:36 +msgid "Please provide your password." +msgstr "Ange ditt lösenord." + +#: templates/login/login.inc:31 +msgid "Please provide your username." +msgstr "Ange ditt användarnamn." + +#: templates/prefs/columnselect.inc:215 +msgid "Please select a backend:" +msgstr "Völj backend:" + +#: templates/manager/header.inc:109 +msgid "Please select an item before this action." +msgstr "Välj en post först." + +#: templates/manager/header.inc:435 +msgid "Please specify at least one file to upload." +msgstr "Ange minst en fil att ladda upp." + +#: templates/manager/header.inc:502 +msgid "Read" +msgstr "Läs" + +#: templates/manager/header.inc:642 +msgid "Refresh" +msgstr "Förnya" + +#: templates/prefs/columnselect.inc:236 +msgid "Remove column" +msgstr "Ta bort kolumn" + +#: templates/manager/header.inc:535 +msgid "Rename" +msgstr "Byt namn" + +#: templates/manager/header.inc:669 +msgid "Rename Items" +msgstr "Byt namn på poster" + +#: lib/Gollem.php:710 lib/Gollem.php:715 +msgid "Root" +msgstr "Root" + +#: templates/manager/header.inc:520 +msgid "Save" +msgstr "Spara" + +#: templates/xppublish/backend.inc:27 +msgid "Select" +msgstr "Välj" + +#: templates/prefs/columnselect.inc:240 +msgid "Selected Columns:" +msgstr "Valda kolumner:" + +#: templates/login/login.inc:85 templates/xppublish/backend.inc:22 +msgid "Server" +msgstr "Server" + +#: config/prefs.php.dist:20 +msgid "Settings" +msgstr "Inställningar" + +#: config/prefs.php.dist:30 +msgid "Show dotfiles?" +msgstr "Visa punktfiler?" + +#: templates/manager/file_headers.inc:52 +msgid "Size" +msgstr "Storlek" + +#: templates/manager/file_headers.inc:32 templates/manager/file_headers.inc:37 +#: templates/manager/file_headers.inc:46 templates/manager/file_headers.inc:51 +msgid "Sort Direction" +msgstr "Sorteringsriktning" + +#: templates/manager/header.inc:180 +msgid "The following item(s) are folders: " +msgstr "Följande post(er) är mappar: " + +#: templates/manager/header.inc:176 +msgid "The following items will be permanently deleted: " +msgstr "Följande post(er) kommer att raderas: " + +#: templates/manager/empty_dir.inc:1 templates/selectlist/empty_dir.inc:2 +msgid "There are no files in this folder." +msgstr "Det finns inga filer i aktuell mapp." + +#: templates/xppublish/browse.inc:74 +msgid "" +"There are no folders in the current folder; click 'Next' if you want to " +"upload files to this folder." +msgstr "" +"Det finns inga mappar i aktuell mapp; klicka 'Nästa' om du vill ladda upp " +"filer till aktuell mapp." + +#: templates/manager/file_headers.inc:33 +msgid "Type" +msgstr "Typ" + +#: lib/Gollem.php:715 lib/Gollem.php:725 +#, php-format +msgid "Up to %s" +msgstr "Upp till %s" + +#: templates/manager/header.inc:654 +msgid "Upload File(s)" +msgstr "Ladda upp fil(er)" + +#: templates/xppublish/javascript.inc:63 +#, php-format +msgid "Upload Files to %s" +msgstr "Ladda upp filer till %s" + +#: xppublish.php:37 +#, php-format +msgid "Upload to %s" +msgstr "Ladda upp till %s" + +#: xppublish.php:25 +#, php-format +msgid "Upload your files to %s on %s." +msgstr "Ladda upp filer till %s på %s." + +#: config/prefs.php.dist:12 config/prefs.php.dist:19 +msgid "User Interface" +msgstr "Användargränssnitt" + +#: templates/xppublish/login.inc:11 config/credentials.php.dist:18 +msgid "Username" +msgstr "Användarnamn" + +#: xppublish.php:51 +msgid "Username and Password are incorrect." +msgstr "Felaktigt användarnamn och/eller lösenord." + +#: login.php:167 +#, php-format +msgid "Welcome to %s" +msgstr "Välkommen till %s" + +#: templates/xppublish/browse.inc:10 +msgid "" +"When you are inside the folder you wish to upload to, click the 'Next' " +"button to upload files." +msgstr "" +"När du är i den mapp som du vill ladda upp till, klicka på 'Nästa' för att " +"ladda upp filer." + +#: templates/manager/header.inc:508 +msgid "Write" +msgstr "Skriv" + +#: config/prefs.php.dist:93 +msgid "Yes" +msgstr "Ja" + +#: manager.php:52 +msgid "You do not have permission to create this folder." +msgstr "Behörighet saknas för att skapa mapp." + +#: manager.php:153 +msgid "You do not have permission to cut/copy items." +msgstr "Behörighet saknas för att kopiera/klippa ut poster." + +#: manager.php:103 +msgid "You do not have permission to delete or change permissions on items." +msgstr "Behörighet saknas för att radera eller ändra behörigheter på poster." + +#: manager.php:179 +msgid "You do not have permission to paste items." +msgstr "Behörighet saknas för att klistra in poster." + +#: manager.php:74 +msgid "You do not have permission to rename items." +msgstr "Börighet saknas för att byta namn på poster." + +#: manager.php:125 +msgid "You do not have permission to upload items." +msgstr "Behörighet saknas för att ladda upp poster." + +#: lib/MIME/Viewer/images.php:39 +msgid "Your browser does not support inline display of this image type" +msgstr "Din webläsare stödjer inte inline-visning av den här bildtypen" + +#: lib/Gollem.php:183 lib/Gollem.php:194 +msgid "[home]" +msgstr "[hem]" + +#: templates/menu.inc:6 templates/menu.inc:19 +msgid "_Change Server" +msgstr "_Ändra server" + +#: manager.php:223 selectlist.php:76 +msgid "folder" +msgstr "mapp" + +#: manager.php:224 selectlist.php:77 +msgid "symlink" +msgstr "symlink" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/tr/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/tr/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/tr/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/tr/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/tr/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/tr/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,578 @@ +# Turkish language for Horde 4 +# Horde 4 için türkçe dili +# Copyright 2008-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Core package. +# İstanbul Technical University - Office of Information Technologies - System Support Group sistemdestek [at] itu.edu.tr +# İstanbul Teknik Üniversitesi - Bilgi İşleml Daire Başkanlığı - Sistem Destek Grubu - sistemdestek [at] itu.edu.tr +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H4 (2.0.1)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2012-05-13 11:20+0100\n" +"PO-Revision-Date: 2012-06-15 13:15+0200\n" +"Last-Translator: ITU-BIDB\n" +"Language-Team: i18n@lists.horde.org\n" +"Language: Turkish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: manager.php:62 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\", \"%s\" olarak yeniden isimlendirilmiştir" + +#: quota.php:50 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:556 +#, php-format +msgid "%d item" +msgstr "%d madde" + +#: manager.php:556 +#, php-format +msgid "%d items" +msgstr "%d madde" + +#: edit.php:33 +#, php-format +msgid "%s successfully saved." +msgstr "%s başarılı olarak kaydedildi." + +#: manager.php:177 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s başarılı olarak yapıştırıldı." + +#: edit.php:35 edit.php:49 +#, php-format +msgid "Access denied to %s" +msgstr "%s için erişim engellendi" + +#: lib/Gollem.php:48 lib/Gollem.php:299 lib/Gollem.php:348 lib/Gollem.php:370 +#: lib/Gollem.php:390 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "\"%s\" dizinine erişim engellendi." + +#: templates/manager/manager.html:110 +msgid "Actions:" +msgstr "Eylemler:" + +#: selectlist.php:79 +msgid "Add" +msgstr "Ekle" + +#: templates/manager/manager.html:11 +msgid "All" +msgstr "Tümü" + +#: templates/javascript_defs.php:20 +msgid "Are you sure you wish to continue?" +msgstr "Devam etmek istediğinize emin misiniz?" + +#: templates/javascript_defs.php:18 +msgid "Are you sure?" +msgstr "Emin misiniz?" + +#: config/prefs.php:67 +msgid "Ascending" +msgstr "Artan" + +#: config/prefs.php:97 +msgid "Ask" +msgstr "Sor" + +#: templates/manager/manager.html:5 +msgid "Attributes" +msgstr "Özellikler" + +#: lib/Application.php:124 +msgid "Backend" +msgstr "Öz Yapılandırma" + +#: lib/Application.php:86 +msgid "Backends" +msgstr "Öz Yapılandırma" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "Panodaki içerik aşağıda listelenmiştir." + +#: clipboard.php:24 manager.php:281 selectlist.php:81 +#: templates/edit/edit.inc:13 +msgid "Cancel" +msgstr "İptal" + +#: manager.php:82 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "%s için izin %s yapılamadı." + +#: manager.php:152 +msgid "Cannot copy items onto clipboard." +msgstr "Maddeler, panoya kopyalanamadı." + +#: manager.php:223 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Ev dizini %s yaratılamadı." + +#: manager.php:154 +msgid "Cannot cut items onto clipboard." +msgstr "Maddeler kesilip, panoya aktarilamadı." + +#: manager.php:179 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "\"%s\" yapıştırılamadı (dosya panodan kaldırıldı): %s" + +#: manager.php:307 templates/manager/manager.html:70 +msgid "Change Folder" +msgstr "Dizini Değiştir" + +#: templates/manager/manager.html:112 +msgid "Change Permissions" +msgstr "İzinleri Değiştir" + +#: lib/Gollem.php:592 +msgid "Change Server" +msgstr "Sunucu Değiştir" + +#: lib/Application.php:286 +msgid "Check Quota" +msgstr "Kotayı Kontrol Et" + +#: manager.php:552 +msgid "Check _All/None" +msgstr "_Hepsini/Hiçbirini Seç" + +#: manager.php:80 +msgid "Chmod done: " +msgstr "İzin değişimi yapıldı:" + +#: lib/Application.php:256 +msgid "Choose which columns to display, and in what order:" +msgstr "Gösterilecek sütunları ve sırasını seçin:" + +#: clipboard.php:25 templates/manager/manager.html:131 +msgid "Clear" +msgstr "Temizle" + +#: clipboard.php:44 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "Pano" + +#: quota.php:26 +msgid "Close" +msgstr "Kapat" + +#: lib/Application.php:260 +msgid "Columns that will not be displayed:" +msgstr "Gösterilmeyecek sütunlar:" + +#: clipboard.php:28 templates/manager/manager.html:115 +msgid "Copy" +msgstr "Kopyala" + +#: manager.php:300 templates/manager/manager.html:58 +msgid "Create Folder" +msgstr "Dizin Yarat" + +#: permissions.php:45 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" +"\"%s\" için boş izin yaratıldı. Şimdi bu yapılandırma için açıkca izin " +"vermelisiniz." + +#: templates/clipboard/clipboard.html:21 +msgid "Current directory:" +msgstr "Geçerli olan dizin:" + +#: clipboard.php:27 templates/manager/manager.html:116 +msgid "Cut" +msgstr "Kes" + +#: config/prefs.php:59 +msgid "Default sorting criteria:" +msgstr "Varsayılan sıralama ölçütü:" + +#: config/prefs.php:70 +msgid "Default sorting direction:" +msgstr "Varsayılan sıralama yönü:" + +#: templates/manager/manager.html:119 +msgid "Delete" +msgstr "Sil" + +#: config/prefs.php:99 +msgid "Delete folders recursively?" +msgstr "Dizinler özyineli olarak silinsin mi?" + +#: config/prefs.php:68 +msgid "Descending" +msgstr "Azalan" + +#: selectlist.php:80 +msgid "Done" +msgstr "Tamam" + +#: manager.php:427 +#, php-format +msgid "Download %s" +msgstr "%s indir" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "HATA:" + +#: templates/edit/edit.inc:8 +#, php-format +msgid "Edit %s" +msgstr "Düzenle %s" + +#: templates/manager/manager.html:26 +msgid "Execute" +msgstr "Çalıştır" + +#: templates/javascript_defs.php:22 templates/manager/manager.html:201 +msgid "File" +msgstr "Dosya" + +#: config/prefs.php:86 +msgid "File Actions" +msgstr "Dosya Eylemleri" + +#: config/prefs.php:15 +msgid "File Display" +msgstr "Dosya Görüntüle" + +#: config/prefs.php:56 +msgid "File Modification Time" +msgstr "Dosya Değişim Saati" + +#: config/prefs.php:55 +msgid "File Name" +msgstr "Dosya Adı" + +#: config/prefs.php:57 +msgid "File Size" +msgstr "Dosya Boyutu" + +#: config/prefs.php:54 +msgid "File Type" +msgstr "Dosya Tipi" + +#: config/prefs.php:87 +msgid "File action settings." +msgstr "Dosya eylem ayarları." + +#: manager.php:97 +msgid "File deleted: " +msgstr "Dosya silindi: " + +#: config/prefs.php:16 +msgid "File display preferences." +msgstr "Dosya görüntüleme seçenekleri." + +#: manager.php:118 +#, php-format +msgid "File received: %s" +msgstr "Dosya alındı: %s" + +#: lib/Api.php:124 +msgid "Files must be written inside a VFS backend." +msgstr "" +"Dizinler, bir VFS (sanal dosya sistemi) yapılandırması içerisine " +"yazılmalıdır." + +#: templates/manager/manager.html:129 +msgid "Filter" +msgstr "Süzgeç" + +#: templates/manager/manager.html:128 +msgid "Filter:" +msgstr "Süzgeç:" + +#: manager.php:89 +msgid "Folder removed: " +msgstr "Dizin silindi: " + +#: lib/Api.php:155 lib/Api.php:186 +msgid "Folders must be created inside a VFS backend." +msgstr "" +"Dizinler, bir VFS (sanal dosya sistemi) yapılandırması içerisine " +"yazılmalıdır." + +#: templates/manager/manager.html:72 +msgid "Go to:" +msgstr "Git:" + +#: manager.php:531 templates/manager/manager.html:10 +msgid "Group" +msgstr "Grup" + +#: lib/Api.php:405 +#, php-format +msgid "Invalid backend requested: %s" +msgstr "Geçersiz yapılandırma istemi: %s" + +#: manager.php:146 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "Madde, panoya kopyalandı: %s" + +#: manager.php:148 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "Madde, kesildi ve panoya yerleştirildi: %s" + +#: config/prefs.php:77 +msgid "Items per page" +msgstr "Sayfa başına madde" + +#: templates/login/login.html:67 +msgid "Language" +msgstr "Dil" + +#: config/prefs.php:34 +msgid "List folders first?" +msgstr "Dizinler önce listelensin mi?" + +#: manager.php:501 +msgid "Modified" +msgstr "Değiştirildi" + +#: manager.php:479 +msgid "Name" +msgstr "Ad" + +#: templates/manager/manager.html:46 templates/manager/manager.html:60 +msgid "Name:" +msgstr "Ad:" + +#: manager.php:47 +msgid "New folder created: " +msgstr "Yeni dizin yaratıldı: " + +#: config/prefs.php:95 +msgid "No" +msgstr "Hayır" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "Kota bulunamadı." + +#: manager.php:282 +msgid "OK" +msgstr "Tamam" + +#: manager.php:524 templates/manager/manager.html:9 +msgid "Owner" +msgstr "Sahip" + +#: clipboard.php:26 +msgid "Paste" +msgstr "Yapıştır" + +#: manager.php:517 +msgid "Permission" +msgstr "İzin" + +#: selectlist.php:65 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "%s için izin yok: %s" + +#: manager.php:216 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "\"%s\" dizini için izin yok: %s" + +#: lib/Api.php:413 +msgid "Permission denied to this backend." +msgstr "Bu arka araç için izin yok." + +#: templates/javascript_defs.php:13 +msgid "Please provide your password." +msgstr "Lütfen şifrenizi giriniz." + +#: templates/javascript_defs.php:12 +msgid "Please provide your username." +msgstr "Lütfen kullanıcı adınızı giriniz." + +#: templates/javascript_defs.php:16 +msgid "Please select an item before this action." +msgstr "Lütfen bu eylem için bir madde seçiniz." + +#: templates/javascript_defs.php:21 +msgid "Please specify at least one file to upload." +msgstr "Lütfen yüklemek için en az bir dosya belirtiniz." + +#: quota.php:57 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "Kota Görüntüle" + +#: templates/manager/manager.html:14 +msgid "Read" +msgstr "Okuma" + +#: manager.php:287 +msgid "Refresh" +msgstr "Tazale" + +#: templates/manager/manager.html:44 templates/manager/manager.html:122 +msgid "Rename" +msgstr "İsim değiştir" + +#: lib/Api.php:200 +msgid "Renaming across backends is not supported." +msgstr "Yapılandırmalar arası isim değişimi desteklenmemektedir." + +#: lib/Api.php:194 +msgid "Renaming of backends is not allowed." +msgstr "Yapılandırmaların isimleri değiştirilemez." + +#: templates/edit/edit.inc:12 +msgid "Reset" +msgstr "Sıfırla" + +#: manager.php:280 templates/edit/edit.inc:11 +msgid "Save" +msgstr "Kaydet" + +#: clipboard.php:48 templates/clipboard/clipboard.html:28 +msgid "Select All" +msgstr "Hepsini Seç" + +#: clipboard.php:49 +msgid "Select None" +msgstr "Seçimi sıfırla" + +#: lib/Application.php:258 +msgid "Select a backend:" +msgstr "Yapılandırma seç:" + +#: templates/login/login.html:31 +msgid "Server" +msgstr "Sunucu" + +#: config/prefs.php:27 +msgid "Show dotfiles?" +msgstr "Nokta ile başlayan dosyalar görüntülensin mi?" + +#: manager.php:509 +msgid "Size" +msgstr "Boyut" + +#: lib/Api.php:229 +msgid "The application folder can not be deleted." +msgstr "Uygulama dizini silinemez." + +#: templates/javascript_defs.php:19 +msgid "The following item(s) are folders:" +msgstr "Bu maddeler dizindir:" + +#: templates/javascript_defs.php:17 +msgid "The following items will be permanently deleted:" +msgstr "Bu maddeler kalıcı olarak silinecektir:" + +#: templates/javascript_defs.php:25 +msgid "The original opener window has been closed. Exiting." +msgstr "Kaynak pencere kapatıldı. Çıkılıyor." + +#: selectlist.php:176 templates/manager/manager.html:140 +msgid "There are no files in this folder." +msgstr "Bu dizinde hiç dosya yok." + +#: lib/Application.php:257 +msgid "These columns will display in this order:" +msgstr "Sütunlar şu sırada gösterilecek:" + +#: templates/clipboard/clipboard.html:17 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" +"Panodan maddeleri silmek için, yanındaki kutucuğu işaretleyip, "" +"Temizle" ye tıklayınız." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" +"Panodaki maddeleri geçerli dizine yapıştırmak için, yanındaki kutucuğu " +"işaretleyip, "Yapıştır" a tıklayınız." + +#: manager.php:471 +msgid "Type" +msgstr "Tip" + +#: lib/Api.php:409 +msgid "Unable to create Gollem session" +msgstr "Gollem oturumu açılamadı" + +#: permissions.php:40 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "Yapılandırma izni yaratılamadı: %s" + +#: manager.php:99 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "\"%s\" dosyası silinemedi: %s" + +#: manager.php:91 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "\"%s\" dizini silinemedi: %s" + +#: lib/Gollem.php:556 lib/Gollem.php:566 +#, php-format +msgid "Up to %s" +msgstr "%s e kadar" + +#: manager.php:296 +msgid "Upload File(s)" +msgstr "Dosya Yükleme" + +#: config/prefs.php:14 config/prefs.php:85 +msgid "User Interface" +msgstr "Kullanıcı Arayüzü" + +#: manager.php:291 +msgid "View Clipboard" +msgstr "Panoyu Göster" + +#: templates/manager/manager.html:20 +msgid "Write" +msgstr "Yazma" + +#: config/prefs.php:96 +msgid "Yes" +msgstr "Evet" + +#: permissions.php:20 +msgid "You need at least one backend defined to set permissions." +msgstr "" +"İzinleri belirleyebilmek için en az bir arka araç tanımlanmış olmalıdır." + +#: lib/Gollem.php:590 lib/Gollem.php:593 +msgid "_Change Server" +msgstr "_Sunucu Değiştir" + +#: lib/Application.php:273 +msgid "_My Home" +msgstr "_Evim" + +#: lib/Application.php:276 +msgid "_Permissions" +msgstr "İ_zinler" Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/uk/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/uk/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/uk/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/uk/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/uk/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/uk/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,634 @@ +# Ukrainian translations for Gollem package. +# Copyright 2007-2016 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Gollem package. +# Automatically generated, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: Gollem H3 (1.1-cvs)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2007-06-18 13:25+0300\n" +"PO-Revision-Date: 2007-06-19 12:05+0300\n" +"Last-Translator: Andriy Kopystyansky \n" +"Language-Team: Ukrainian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\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" + +#: manager.php:52 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" перейменовано на \"%s\"" + +#: quota.php:56 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:271 +#, php-format +msgid "%d items" +msgstr "%d items" + +#: manager.php:437 +#, php-format +msgid "%s Folders and %s Files (%s Kb)" +msgstr "%s папок і %s файлів (%s Кб)" + +#: manager.php:435 +#, php-format +msgid "%s Folders and 1 File (%s Kb)" +msgstr "%s папок і 1 файл (%s Кб)" + +#: login.php:144 +#, php-format +msgid "%s Login" +msgstr "" + +#: edit.php:35 +#, php-format +msgid "%s successfully saved." +msgstr "%s успішно збережено." + +#: manager.php:167 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s успішно вставлено." + +#: manager.php:432 +#, php-format +msgid "1 Folder and %s Files (%s Kb)" +msgstr "1 папка і %s файлів (%s Кб)" + +#: manager.php:430 +#, php-format +msgid "1 Folder and 1 File (%s Kb)" +msgstr "1 папка і 1 файл (%s Кб)" + +#: manager.php:271 +msgid "1 item" +msgstr "" + +#: gollem.js.php:44 +msgid "" +"A popup window could not be opened. Perhaps you have set your browser to " +"block popup windows?" +msgstr "" + +#: edit.php:33 edit.php:43 view.php:33 +#, php-format +msgid "Access denied to %s" +msgstr "Доступ до %s заборонено" + +#: lib/Gollem.php:109 lib/Gollem.php:383 lib/Gollem.php:445 lib/Gollem.php:466 +#: lib/Gollem.php:483 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "Доступ до папки \"%s\" заборонений." + +#: templates/manager/manager.html:124 +msgid "Actions:" +msgstr "Дії:" + +#: selectlist.php:99 +msgid "Add" +msgstr "Додати" + +#: templates/prefs/columnselect.inc:43 +msgid "Add column" +msgstr "Додати колонку" + +#: templates/manager/manager.html:11 +msgid "All" +msgstr "Всі" + +#: gollem.js.php:55 +msgid "Are you sure you wish to continue?" +msgstr " Впевнені, що хочете продовжити?" + +#: gollem.js.php:53 +msgid "Are you sure?" +msgstr "Ви впевнені?" + +#: config/prefs.php.dist:69 +msgid "Ascending" +msgstr "По зростанню" + +#: config/prefs.php.dist:93 +msgid "Ask" +msgstr "Питати" + +#: templates/manager/manager.html:5 +msgid "Attributes" +msgstr "Атрибути" + +#: templates/prefs/columnselect.html:20 +msgid "Available Columns:" +msgstr "Доступні колонки:" + +#: lib/api.php:50 +msgid "Backends" +msgstr "" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "" + +#: clipboard.php:38 manager.php:266 selectlist.php:101 +#: templates/edit/edit.inc:13 +msgid "Cancel" +msgstr "Відмінити" + +#: manager.php:72 +#, php-format +msgid "Cannot chmod %s: %s" +msgstr "" + +#: manager.php:141 +msgid "Cannot copy items onto clipboard." +msgstr "" + +#: manager.php:200 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "Не можу створити домашню папку: %s" + +#: manager.php:143 +msgid "Cannot cut items onto clipboard." +msgstr "" + +#: manager.php:165 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "" + +#: templates/manager/manager.html:70 +msgid "Change Folder" +msgstr "Змінити папку" + +#: templates/manager/manager.html:126 +msgid "Change Permissions" +msgstr "Змінити права" + +#: selectlist.php:109 lib/Gollem.php:813 +msgid "Change Server" +msgstr "Змінити сервер" + +#: lib/Gollem.php:770 +msgid "Change _Folder" +msgstr "Змінити папку" + +#: config/prefs.php.dist:21 +msgid "Change file and folder handling settings." +msgstr "" + +#: config/prefs.php.dist:14 +msgid "Change your file sorting options." +msgstr "Змініть опції сортування файлів." + +#: lib/Gollem.php:788 +msgid "Check Quota" +msgstr "" + +#: manager.php:528 +msgid "Check _All/None" +msgstr "Вибрати всі/жодного" + +#: manager.php:70 +msgid "Chmod done: " +msgstr "" + +#: templates/prefs/columnselect.html:12 +msgid "Choose the columns to display in the file manager." +msgstr "" + +#: clipboard.php:39 +msgid "Clear" +msgstr "Ясно" + +#: clipboard.php:18 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "" + +#: quota.php:32 +msgid "Close" +msgstr "Закрити" + +#: login.php:258 +#, php-format +msgid "Connect to: %s" +msgstr "З'єднання з: %s" + +#: clipboard.php:42 templates/manager/manager.html:129 +msgid "Copy" +msgstr "Копіювати" + +#: lib/Template.php:235 +#, php-format +msgid "Could not save the compiled template file '%s'." +msgstr "Не можу зберегти скомпільований файл шаблону '%s'." + +#: templates/manager/manager.html:58 +msgid "Create Folder" +msgstr "Створити папку" + +#: permissions.php:47 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "" + +#: templates/clipboard/clipboard.html:17 +msgid "Current directory:" +msgstr "Поточна папка:" + +#: clipboard.php:41 templates/manager/manager.html:130 +msgid "Cut" +msgstr "" + +#: config/prefs.php.dist:59 +msgid "Default sorting criteria:" +msgstr "Типовий критерій сортування:" + +#: config/prefs.php.dist:72 +msgid "Default sorting direction:" +msgstr "Типовий напрям сортування:" + +#: templates/manager/manager.html:133 +msgid "Delete" +msgstr "Витерти" + +#: config/prefs.php.dist:95 +msgid "Delete folders recursively?" +msgstr "" + +#: config/prefs.php.dist:70 +msgid "Descending" +msgstr "По спаданню" + +#: selectlist.php:100 +msgid "Done" +msgstr "" + +#: manager.php:226 +msgid "Download" +msgstr "Скачати" + +#: manager.php:404 +#, php-format +msgid "Download %s" +msgstr "Скачати %s" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "" + +#: manager.php:225 +msgid "Edit" +msgstr "Редагувати" + +#: templates/edit/edit.inc:8 +#, php-format +msgid "Edit %s" +msgstr "Редагувати %s" + +#: config/credentials.php.dist:28 +msgid "Email" +msgstr "Е-пошта" + +#: templates/manager/manager.html:26 +msgid "Execute" +msgstr "Виконати" + +#: gollem.js.php:57 templates/manager/manager.html:203 +msgid "File" +msgstr "Файл" + +#: config/prefs.php.dist:13 +msgid "File Display" +msgstr "" + +#: config/prefs.php.dist:56 +msgid "File Modification Time" +msgstr "Час зміни файлу" + +#: config/prefs.php.dist:55 +msgid "File Name" +msgstr "Назва файлу" + +#: config/prefs.php.dist:57 +msgid "File Size" +msgstr "Об'єм файлу" + +#: config/prefs.php.dist:54 +msgid "File Type" +msgstr "Тип файлу" + +#: manager.php:87 +msgid "File deleted: " +msgstr "Файл витерто: " + +#: manager.php:109 +#, php-format +msgid "File received: %s" +msgstr "Файл отримано: %s" + +#: manager.php:80 +msgid "Folder removed: " +msgstr "" + +#: templates/manager/manager.html:72 +msgid "Go to:" +msgstr "" + +#: permissions.php:21 +msgid "Gollem Backend Permissions Administration" +msgstr "" + +#: manager.php:508 templates/manager/manager.html:10 +msgid "Group" +msgstr "Група" + +#: manager.php:56 +msgid "Incorrect number of items." +msgstr "" + +#: manager.php:134 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "" + +#: manager.php:136 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "" + +#: templates/login/login.html:68 +msgid "Language" +msgstr "Мова" + +#: config/prefs.php.dist:81 +msgid "List folders first?" +msgstr "" + +#: login.php:307 +msgid "Login" +msgstr "Вхід" + +#: lib/Block/tree_menu.php:3 +msgid "Menu List" +msgstr "Список меню" + +#: manager.php:478 +msgid "Modified" +msgstr "" + +#: templates/prefs/columnselect.inc:45 +msgid "Move left" +msgstr "Посунути вліво" + +#: templates/prefs/columnselect.inc:46 +msgid "Move right" +msgstr "Посунути вправо" + +#: manager.php:456 +msgid "Name" +msgstr "Ім'я" + +#: templates/manager/manager.html:46 templates/manager/manager.html:60 +msgid "Name:" +msgstr "" + +#: manager.php:35 +msgid "New folder created: " +msgstr "Нову папку створено: " + +#: config/prefs.php.dist:91 +msgid "No" +msgstr "Ні" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "Квоту не знайдено." + +#: manager.php:267 +msgid "OK" +msgstr "ОК" + +#: manager.php:501 templates/manager/manager.html:9 +msgid "Owner" +msgstr "Власник" + +#: config/credentials.php.dist:23 +msgid "Password" +msgstr "Пароль" + +#: clipboard.php:40 +msgid "Paste" +msgstr "Вставити" + +#: manager.php:494 +msgid "Permission" +msgstr "Права" + +#: selectlist.php:64 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "Доступ до %s заборонено: %s" + +#: manager.php:208 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "Доступ до папки \"%s\" заборонено: %s" + +#: gollem.js.php:48 +msgid "Please provide your password." +msgstr "Будь-ласка, введіть пароль." + +#: gollem.js.php:47 +msgid "Please provide your username." +msgstr "Будь-ласка, вкажіть назву користувача." + +#: templates/prefs/columnselect.html:5 +msgid "Please select a backend:" +msgstr "" + +#: gollem.js.php:51 +msgid "Please select an item before this action." +msgstr "" + +#: gollem.js.php:56 +msgid "Please specify at least one file to upload." +msgstr "Будь-ласка, вкажіть хоча б один файл для підвантаження." + +#: quota.php:19 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "" + +#: templates/manager/manager.html:14 +msgid "Read" +msgstr "Читати" + +#: manager.php:273 +msgid "Refresh" +msgstr "Оновити" + +#: templates/prefs/columnselect.inc:44 +msgid "Remove column" +msgstr "Видалити колонку" + +#: templates/manager/manager.html:44 templates/manager/manager.html:136 +msgid "Rename" +msgstr "Перейменувати" + +#: templates/edit/edit.inc:12 +msgid "Reset" +msgstr "Очистити" + +#: lib/Gollem.php:727 lib/Gollem.php:732 +msgid "Root" +msgstr "" + +#: manager.php:265 templates/edit/edit.inc:11 +msgid "Save" +msgstr "Зберегти" + +#: templates/prefs/columnselect.html:30 +msgid "Selected Columns:" +msgstr "Вибрані колонки:" + +#: templates/login/login.html:32 +msgid "Server" +msgstr "Сервер" + +#: config/prefs.php.dist:20 +msgid "Settings" +msgstr "Налаштування" + +#: config/prefs.php.dist:30 +msgid "Show dotfiles?" +msgstr "" + +#: manager.php:486 +msgid "Size" +msgstr "Об'єм" + +#: gollem.js.php:54 +msgid "The following item(s) are folders:" +msgstr "" + +#: gollem.js.php:52 +msgid "The following items will be permanently deleted:" +msgstr "" + +#: gollem.js.php:60 +msgid "The original opener window has been closed. Exiting." +msgstr "" + +#: login.php:151 +msgid "There are no backends available for the current user." +msgstr "" + +#: selectlist.php:199 templates/manager/manager.html:147 +msgid "There are no files in this folder." +msgstr "В цій папці нема файлів." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "" + +#: templates/clipboard/clipboard.html:13 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "" + +#: manager.php:448 +msgid "Type" +msgstr "Тип" + +#: permissions.php:42 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "" + +#: manager.php:85 +#, php-format +msgid "Unable to delete file %s: %s" +msgstr "Не можу витерти файл %s: %s" + +#: manager.php:78 +#, php-format +msgid "Unable to delete folder %s: %s" +msgstr "Не можу витерти папку %s: %s" + +#: lib/Gollem.php:732 lib/Gollem.php:742 +#, php-format +msgid "Up to %s" +msgstr "" + +#: manager.php:286 +msgid "Upload File(s)" +msgstr "" + +#: config/prefs.php.dist:12 config/prefs.php.dist:19 +msgid "User Interface" +msgstr "Інтерфейс користувача" + +#: config/credentials.php.dist:18 +msgid "Username" +msgstr "Назва користувача" + +#: manager.php:281 +msgid "View Clipboard" +msgstr "" + +#: login.php:201 +#, php-format +msgid "Welcome to %s" +msgstr "Вас вітає %s" + +#: templates/manager/manager.html:20 +msgid "Write" +msgstr "" + +#: config/prefs.php.dist:92 +msgid "Yes" +msgstr "Так" + +#: permissions.php:25 +msgid "You need at least one backend defined to set permissions." +msgstr "" + +#: lib/MIME/Viewer/images.php:35 +msgid "Your browser does not support inline display of this image type" +msgstr "Ваш броузер не підтримує відображення по тексту зображень цього типу" + +#: lib/Gollem.php:811 lib/Gollem.php:814 +msgid "_Change Server" +msgstr "" + +#: lib/Gollem.php:767 +msgid "_Create Folder" +msgstr "Створити папку" + +#: lib/Gollem.php:763 +msgid "_My Home" +msgstr "" + +#: lib/Gollem.php:777 +msgid "_Permissions" +msgstr "Права" + +#: manager.php:227 selectlist.php:75 +msgid "folder" +msgstr "папка" + +#: manager.php:228 selectlist.php:76 +msgid "symlink" +msgstr "" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/zh_TW/help.xml php-horde-gollem-3.0.9/gollem-3.0.9/locale/zh_TW/help.xml --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/zh_TW/help.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/zh_TW/help.xml 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,204 @@ + + + + 檔案總管: 作用方式 + 作用方式 + + 再現行目錄下建立一個目錄, 你只要從作用方式功能表中選擇建立目錄即可. 其他的作用方式再執行前必須先選擇至少一個項目. 如果你想刪除目錄,請確定目錄是空的否則無 +法刪除. 或者你可以由"選項->設定->如果要刪除的目錄中還有子目錄,是否一併 +刪除 ?"勾選是. 以遞迴的方式刪除目錄. + + + + 檔案總管: 上傳檔案 + 上傳檔案 + + 點選瀏覽按鈕後選取檔案最後再點選上傳檔案, 可將檔案上傳到現行目錄中. 你可以 +一次附加數個檔案. + + + + 排列項目 + 排列項目 + + 藉由點選欄位標題名稱, 可自動依該欄位排列方便你檢視檔案清單. 若要變更排列方向請點選欄位名稱旁邊的箭頭圖示. + + + Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/locale/zh_TW/LC_MESSAGES/gollem.mo and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/locale/zh_TW/LC_MESSAGES/gollem.mo differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/locale/zh_TW/LC_MESSAGES/gollem.po php-horde-gollem-3.0.9/gollem-3.0.9/locale/zh_TW/LC_MESSAGES/gollem.po --- php-horde-gollem-3.0.8/gollem-3.0.9/locale/zh_TW/LC_MESSAGES/gollem.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/locale/zh_TW/LC_MESSAGES/gollem.po 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,629 @@ +# GOLLEM Traditional Chinese Translation +# Copyright 2001 David Chang. 張良文,台灣 +# David Chang , 2001. +# +msgid "" +msgstr "" +"Project-Id-Version: gollem H3 (1.1-cvs)\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2007-01-25 15:09+0800\n" +"PO-Revision-Date: 2003-01-08 10:53+0100\n" +"Last-Translator: David Chang \n" +"Language-Team: Chinese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: manager.php:52 +#, php-format +msgid "\"%s\" renamed to \"%s\"" +msgstr "\"%s\" 已更名為 \"%s\"" + +#: quota.php:56 +#, php-format +msgid "%.2fMB / %.2fMB (%.2f%%)" +msgstr "%.2fMB / %.2fMB (%.2f%%)" + +#: manager.php:271 +#, php-format +msgid "%d items" +msgstr "%d 個項目" + +#: manager.php:437 +#, php-format +msgid "%s Folders and %s Files (%s Kb)" +msgstr "%s 個目錄及 %s 個檔案 (%s 千位元組)" + +#: manager.php:435 +#, php-format +msgid "%s Folders and 1 File (%s Kb)" +msgstr "%s 個目錄及 1 個檔案 (%s 千位元組)" + +#: login.php:144 +#, php-format +msgid "%s Login" +msgstr "%s 登入" + +#: edit.php:35 +#, php-format +msgid "%s successfully saved." +msgstr "%s 已儲存完成." + +#: manager.php:167 +#, php-format +msgid "%s was successfully pasted." +msgstr "%s 已張貼完成." + +#: manager.php:432 +#, php-format +msgid "1 Folder and %s Files (%s Kb)" +msgstr "1 個目錄及 %s 個檔案 (%s 千位元組)" + +#: manager.php:430 +#, php-format +msgid "1 Folder and 1 File (%s Kb)" +msgstr "1 個目錄及 1 個檔案 (%s 千位元組)" + +#: manager.php:271 +msgid "1 item" +msgstr "1 個項目" + +#: js/gollem.js.php:3 js/src/gollem.js.php:45 +msgid "" +"A popup window could not be opened. Perhaps you have set your browser to " +"block popup windows?" +msgstr "無法開啟一個蹦彈視窗. 有可能你的瀏覽器已設定要封鎖蹦彈視窗?" + +#: edit.php:33 edit.php:43 view.php:33 +#, php-format +msgid "Access denied to %s" +msgstr "存取 %s 遭拒" + +#: lib/Gollem.php:118 lib/Gollem.php:392 lib/Gollem.php:454 lib/Gollem.php:475 +#: lib/Gollem.php:492 +#, php-format +msgid "Access denied to folder \"%s\"." +msgstr "存取目錄 \"%s\" 遭拒." + +#: templates/manager/manager.html:124 +msgid "Actions:" +msgstr "作用方式:" + +#: selectlist.php:99 +msgid "Add" +msgstr "新增" + +#: templates/prefs/columnselect.inc:43 +msgid "Add column" +msgstr "新增欄位" + +#: templates/manager/manager.html:11 +msgid "All" +msgstr "全部" + +#: js/gollem.js.php:3 js/src/gollem.js.php:56 +msgid "Are you sure you wish to continue?" +msgstr "你確定繼續嗎?" + +#: js/gollem.js.php:3 js/src/gollem.js.php:54 +msgid "Are you sure?" +msgstr "你確定?" + +#: config/prefs.php.dist:69 +msgid "Ascending" +msgstr "上升" + +#: config/prefs.php.dist:93 +msgid "Ask" +msgstr "詢問" + +#: templates/manager/manager.html:5 +msgid "Attributes" +msgstr "屬性" + +#: templates/prefs/columnselect.html:20 +msgid "Available Columns:" +msgstr "可用的欄位:" + +#: lib/api.php:46 +msgid "Backends" +msgstr "伺服端" + +#: templates/clipboard/clipboard.html:11 +msgid "Below is the current contents of your clipboard." +msgstr "以下是你目前剪貼簿的內容." + +#: clipboard.php:38 manager.php:266 selectlist.php:101 +#: templates/edit/edit.inc:13 +msgid "Cancel" +msgstr "取消" + +#: manager.php:72 +msgid "Cannot chmod %s: %s" +msgstr "無法變更存取模式 %s: %s" + +#: manager.php:141 +msgid "Cannot copy items onto clipboard." +msgstr "無法複製項目到剪貼簿上." + +#: manager.php:200 +#, php-format +msgid "Cannot create home directory: %s" +msgstr "無法建立家目錄: %s" + +#: manager.php:143 +msgid "Cannot cut items onto clipboard." +msgstr "無法剪下項目到剪貼簿上." + +#: manager.php:165 +#, php-format +msgid "Cannot paste \"%s\" (file cleared from clipboard): %s" +msgstr "無法貼上 \"%s\" (剪貼簿的檔案已清除): %s" + +#: templates/manager/manager.html:70 +msgid "Change Folder" +msgstr "切換路徑" + +#: templates/manager/manager.html:126 +msgid "Change Permissions" +msgstr "變更存取模式" + +#: selectlist.php:109 lib/Gollem.php:822 +msgid "Change Server" +msgstr "變更伺服器" + +#: lib/Gollem.php:779 +msgid "Change _Folder" +msgstr "切換路徑_F" + +#: config/prefs.php.dist:21 +msgid "Change file and folder handling settings." +msgstr "變更檔案及目錄控制設定." + +#: config/prefs.php.dist:14 +msgid "Change your file sorting options." +msgstr "變更檔案排列方式." + +#: lib/Gollem.php:797 +msgid "Check Quota" +msgstr "磁碟配置" + +#: manager.php:528 +msgid "Check _All/None" +msgstr "檢查 全部/無_A" + +#: manager.php:70 +msgid "Chmod done: " +msgstr "存取模式變更完成: " + +#: templates/prefs/columnselect.html:12 +msgid "Choose the columns to display in the file manager." +msgstr "選擇要顯示於檔案總管的欄位名稱." + +#: clipboard.php:39 +msgid "Clear" +msgstr "清除" + +#: clipboard.php:18 templates/clipboard/clipboard.html:7 +msgid "Clipboard" +msgstr "剪貼簿" + +#: quota.php:32 +msgid "Close" +msgstr "關閉" + +#: login.php:256 +#, php-format +msgid "Connect to: %s" +msgstr "無法連結至: %s" + +#: clipboard.php:42 templates/manager/manager.html:129 +msgid "Copy" +msgstr "複製" + +#: lib/Template.php:235 +#, php-format +msgid "Could not save the compiled template file '%s'." +msgstr "無法儲存已編譯的樣本檔案 '%s'." + +#: templates/manager/manager.html:58 +msgid "Create Folder" +msgstr "建立目錄" + +#: permissions.php:47 +#, php-format +msgid "" +"Created empty permissions for \"%s\". You must explicitly grant access to " +"this backend now." +msgstr "\"%s\"的空白權限已建妥. 你現在必須為此伺服端精確定義權限以保安全." + +#: templates/clipboard/clipboard.html:17 +msgid "Current directory:" +msgstr "現行目錄:" + +#: clipboard.php:41 templates/manager/manager.html:130 +msgid "Cut" +msgstr "剪下" + +#: config/prefs.php.dist:59 +msgid "Default sorting criteria:" +msgstr "內定排列的準則:" + +#: config/prefs.php.dist:72 +msgid "Default sorting direction:" +msgstr "內定的排列方向:" + +#: templates/manager/manager.html:133 +msgid "Delete" +msgstr "刪除" + +#: config/prefs.php.dist:95 +msgid "Delete folders recursively?" +msgstr "如果要刪除的目錄中還有子目錄,是否一併刪除?" + +#: config/prefs.php.dist:70 +msgid "Descending" +msgstr "下降" + +#: selectlist.php:100 +msgid "Done" +msgstr "完成" + +#: manager.php:226 +msgid "Download" +msgstr "下載" + +#: manager.php:404 +#, php-format +msgid "Download %s" +msgstr "下載 %s" + +#: templates/quota/quota.html:7 +msgid "ERROR:" +msgstr "錯誤:" + +#: manager.php:225 +msgid "Edit" +msgstr "編輯" + +#: templates/edit/edit.inc:8 +#, php-format +msgid "Edit %s" +msgstr "編輯 %s" + +#: config/credentials.php.dist:28 +msgid "Email" +msgstr "電子郵件" + +#: templates/manager/manager.html:26 +msgid "Execute" +msgstr "執行" + +#: js/gollem.js.php:3 js/src/gollem.js.php:58 +#: templates/manager/manager.html:203 +msgid "File" +msgstr "附件" + +#: config/prefs.php.dist:13 +msgid "File Display" +msgstr "檔案顯示" + +#: config/prefs.php.dist:56 +msgid "File Modification Time" +msgstr "檔案修改時間" + +#: config/prefs.php.dist:55 +msgid "File Name" +msgstr "檔案名稱" + +#: config/prefs.php.dist:57 +msgid "File Size" +msgstr "檔案大小" + +#: config/prefs.php.dist:54 +msgid "File Type" +msgstr "檔案型態" + +#: manager.php:87 +msgid "File deleted: " +msgstr "檔案已刪除: " + +#: manager.php:109 +#, php-format +msgid "File received: %s" +msgstr "已接收到檔案: %s" + +#: manager.php:80 +msgid "Folder removed: " +msgstr "目錄已刪除: " + +#: templates/manager/manager.html:72 +msgid "Go to:" +msgstr "到:" + +#: permissions.php:21 +msgid "Gollem Backend Permissions Administration" +msgstr "Gollem 伺服端權限管理" + +#: manager.php:508 templates/manager/manager.html:10 +msgid "Group" +msgstr "群組" + +#: manager.php:56 +msgid "Incorrect number of items." +msgstr "項目的號碼不正確." + +#: manager.php:134 +#, php-format +msgid "Item copied to clipboard: %s" +msgstr "項目已被複製到剪貼簿: %s" + +#: manager.php:136 +#, php-format +msgid "Item cut to clipboard: %s" +msgstr "項目已被剪下並送到剪貼簿: %s" + +#: templates/login/login.html:67 +msgid "Language" +msgstr "語言" + +#: config/prefs.php.dist:81 +msgid "List folders first?" +msgstr "先列出目錄?" + +#: login.php:305 +msgid "Login" +msgstr "登入" + +#: lib/Block/tree_menu.php:3 +msgid "Menu List" +msgstr "功能表" + +#: manager.php:478 +msgid "Modified" +msgstr "最近更新" + +#: templates/prefs/columnselect.inc:45 +msgid "Move left" +msgstr "調昇" + +#: templates/prefs/columnselect.inc:46 +msgid "Move right" +msgstr "調降" + +#: manager.php:456 +msgid "Name" +msgstr "檔名" + +#: templates/manager/manager.html:46 templates/manager/manager.html:60 +msgid "Name:" +msgstr "檔名:" + +#: manager.php:35 +msgid "New folder created: " +msgstr "新目錄已建妥: " + +#: config/prefs.php.dist:91 +msgid "No" +msgstr "否" + +#: templates/quota/quota.html:12 +msgid "No quota found." +msgstr "找不到磁碟配額." + +#: manager.php:267 +msgid "OK" +msgstr "確定" + +#: manager.php:501 templates/manager/manager.html:9 +msgid "Owner" +msgstr "擁有者" + +#: config/credentials.php.dist:23 +msgid "Password" +msgstr "密碼" + +#: clipboard.php:40 +msgid "Paste" +msgstr "貼上" + +#: manager.php:494 +msgid "Permission" +msgstr "權限" + +#: selectlist.php:64 +#, php-format +msgid "Permission denied to %s: %s" +msgstr "存取遭拒 %s: %s" + +#: manager.php:208 +#, php-format +msgid "Permission denied to folder \"%s\": %s" +msgstr "存取目錄 \"%s\": %s 遭拒" + +#: js/gollem.js.php:3 js/src/gollem.js.php:49 +msgid "Please provide your password." +msgstr "請輸入你的密碼." + +#: js/gollem.js.php:3 js/src/gollem.js.php:48 +msgid "Please provide your username." +msgstr "請輸入你的使用者名稱." + +#: templates/prefs/columnselect.html:5 +msgid "Please select a backend:" +msgstr "請選擇一個伺服端:" + +#: js/gollem.js.php:3 js/src/gollem.js.php:52 +msgid "Please select an item before this action." +msgstr "在執行此一動作前請選擇一個項目." + +#: js/gollem.js.php:3 js/src/gollem.js.php:57 +msgid "Please specify at least one file to upload." +msgstr "請至少選擇一個上傳檔案." + +#: quota.php:19 templates/quota/quota.html:2 +msgid "Quota Display" +msgstr "磁碟配置狀況" + +#: templates/manager/manager.html:14 +msgid "Read" +msgstr "讀取" + +#: manager.php:273 +msgid "Refresh" +msgstr "重新整理" + +#: templates/prefs/columnselect.inc:44 +msgid "Remove column" +msgstr "移除欄位" + +#: templates/manager/manager.html:44 templates/manager/manager.html:136 +msgid "Rename" +msgstr "更名" + +#: templates/edit/edit.inc:12 +msgid "Reset" +msgstr "重設" + +#: lib/Gollem.php:736 lib/Gollem.php:741 +msgid "Root" +msgstr "根目錄" + +#: manager.php:265 templates/edit/edit.inc:11 +msgid "Save" +msgstr "儲存" + +#: templates/prefs/columnselect.html:30 +msgid "Selected Columns:" +msgstr "已選擇的欄位:" + +#: templates/login/login.html:31 +msgid "Server" +msgstr "伺服器" + +#: config/prefs.php.dist:20 +msgid "Settings" +msgstr "設定" + +#: config/prefs.php.dist:30 +msgid "Show dotfiles?" +msgstr "顯示隱藏檔案?" + +#: manager.php:486 +msgid "Size" +msgstr "大小" + +#: js/gollem.js.php:3 js/src/gollem.js.php:55 +msgid "The following item(s) are folders:" +msgstr "下列項目屬於目錄: " + +#: js/gollem.js.php:3 js/src/gollem.js.php:53 +msgid "The following items will be permanently deleted:" +msgstr "下列項目將永遠刪除:" + +#: js/gollem.js.php:3 js/src/gollem.js.php:61 +msgid "The original opener window has been closed. Exiting." +msgstr "原開啟視窗已被關閉. 結束中." + +#: login.php:151 +msgid "There are no backends available for the current user." +msgstr "無任何伺服端可供目前的使用者操作." + +#: selectlist.php:199 templates/manager/manager.html:147 +msgid "There are no files in this folder." +msgstr "此目錄目前沒有任何檔案." + +#: templates/clipboard/clipboard.html:15 +msgid "" +"To clear items from the clipboard, check the box next to the filename and " +"click on "Clear"." +msgstr "欲清除剪貼簿上的項目, 勾選檔案然後點選"清除"." + +#: templates/clipboard/clipboard.html:13 +msgid "" +"To paste items from the clipboard to the current directory, check the box " +"next to the filename and click on "Paste"." +msgstr "欲將剪貼簿上的項目貼到現行目錄中, 勾選檔案然後點選"貼上"." + +#: manager.php:448 +msgid "Type" +msgstr "型態" + +#: permissions.php:42 +#, php-format +msgid "Unable to create backend permission: %s" +msgstr "無法建立伺服端權限: %s" + +#: manager.php:85 +msgid "Unable to delete file %s: %s" +msgstr "無法刪除檔案 %s: %s" + +#: manager.php:78 +msgid "Unable to delete folder %s: %s" +msgstr "無法刪除目錄 %s: %s" + +#: lib/Gollem.php:741 lib/Gollem.php:751 +#, php-format +msgid "Up to %s" +msgstr "回到 %s" + +#: manager.php:286 +msgid "Upload File(s)" +msgstr "上傳檔案" + +#: config/prefs.php.dist:12 config/prefs.php.dist:19 +msgid "User Interface" +msgstr "使用者介面" + +#: config/credentials.php.dist:18 +msgid "Username" +msgstr "使用者名稱" + +#: manager.php:281 +msgid "View Clipboard" +msgstr "檢視剪貼簿" + +#: login.php:200 +#, php-format +msgid "Welcome to %s" +msgstr "歡迎到 %s" + +#: templates/manager/manager.html:20 +msgid "Write" +msgstr "寫入" + +#: config/prefs.php.dist:92 +msgid "Yes" +msgstr "是" + +#: permissions.php:25 +msgid "You need at least one backend defined to set permissions." +msgstr "你必須定義至少一個伺服端以設定權限." + +#: lib/MIME/Viewer/images.php:35 +msgid "Your browser does not support inline display of this image type" +msgstr "你的瀏覽器並未支援這類型的影像檔做直接開啟的動作" + +#: lib/Gollem.php:820 lib/Gollem.php:823 +msgid "_Change Server" +msgstr "變更伺服器_C" + +#: lib/Gollem.php:776 +msgid "_Create Folder" +msgstr "建立目錄_C" + +#: lib/Gollem.php:772 +msgid "_My Home" +msgstr "我的家目錄_M" + +#: lib/Gollem.php:786 +msgid "_Permissions" +msgstr "權限_P" + +#: manager.php:227 selectlist.php:75 +msgid "folder" +msgstr "目錄" + +#: manager.php:228 selectlist.php:76 +msgid "symlink" +msgstr "符號連結" diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/manager.php php-horde-gollem-3.0.9/gollem-3.0.9/manager.php --- php-horde-gollem-3.0.8/gollem-3.0.9/manager.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/manager.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,625 @@ + + * @author Chuck Hagenbuch + * @author Michael Slusarz + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem'); + +$backkey = $session->get('gollem', 'backend_key'); +$clipboard = $session->get('gollem', 'clipboard', Horde_Session::TYPE_ARRAY); +$vars = Horde_Variables::getDefaultVariables(); + +/* Set directory. */ +try { + Gollem::changeDir(); +} catch (Gollem_Exception $e) { + $notification->push($e); +} +$old_dir = Gollem::$backend['dir']; + +/* Get permissions. */ +$delete_perms = Gollem::checkPermissions('backend', Horde_Perms::DELETE) && + Gollem::checkPermissions('directory', Horde_Perms::DELETE, Gollem::$backend['dir']); +$edit_perms = Gollem::checkPermissions('backend', Horde_Perms::EDIT) && + Gollem::checkPermissions('directory', Horde_Perms::EDIT, Gollem::$backend['dir']); +$read_perms = Gollem::checkPermissions('backend', Horde_Perms::READ) && + Gollem::checkPermissions('directory', Horde_Perms::READ, Gollem::$backend['dir']); + +/* Get VFS object. */ +$gollem_vfs = $injector->getInstance('Gollem_Vfs'); + +/* Run through the action handlers. */ +switch ($vars->actionID) { +case 'create_folder': + if ($edit_perms && isset($vars->new_folder)) { + try { + Gollem::createFolder($old_dir, $vars->new_folder); + $notification->push(_("New folder created: ") . $vars->new_folder, 'horde.success'); + } catch (Gollem_Exception $e) { + $notification->push($e, 'horde.error'); + } + } + break; + +case 'rename_items': + if ($edit_perms && isset($vars->new_names) && isset($vars->old_names)) { + $new = explode('|', $vars->new_names); + $old = explode('|', $vars->old_names); + if (count($new) == count($old)) { + for ($i = 0, $iMax = count($new); $i < $iMax; ++$i) { + try { + Gollem::renameItem($old_dir, $old[$i], $old_dir, $new[$i]); + $notification->push(sprintf(_("\"%s\" renamed to \"%s\""), $old[$i], $new[$i]), 'horde.success'); + } catch (Gollem_Exception $e) { + $notification->push($e, 'horde.error'); + } + } + Gollem::expireCache($old_dir); + } + } + break; + +case 'chmod_modify': +case 'delete_items': + if ($delete_perms && is_array($vars->items) && count($vars->items)) { + foreach ($vars->items as $item) { + if (($vars->actionID == 'chmod_modify') && $vars->chmod) { + try { + Gollem::changePermissions(Gollem::$backend['dir'], $item, $vars->chmod); + Gollem::expireCache($old_dir); + $notification->push(_("Chmod done: ") . $item, 'horde.success'); + } catch (Gollem_Exception $e) { + $notification->push(sprintf(_("Cannot chmod %s: %s"), $item, $e->getMessage()), 'horde.error'); + } + } elseif ($vars->actionID == 'delete_items') { + if ($gollem_vfs->isFolder($old_dir, $item)) { + try { + Gollem::deleteFolder($old_dir, $item); + Gollem::expireCache($old_dir); + $notification->push(_("Folder removed: ") . $item, 'horde.success'); + } catch (Gollem_Exception $e) { + $notification->push(sprintf(_("Unable to delete folder %s: %s"), $item, $e->getMessage()), 'horde.error'); + } + } else { + try { + Gollem::deleteFile($old_dir, $item); + Gollem::expireCache($old_dir); + $notification->push(_("File deleted: ") . $item, 'horde.success'); + } catch (Gollem_Exception $e) { + $notification->push(sprintf(_("Unable to delete file %s: %s"), $item, $e->getMessage()), 'horde.error'); + } + } + } + } + } + break; + +case 'upload_file': + if ($edit_perms) { + for ($i = 1, $l = count($_FILES); $i <= $l; ++$i) { + $val = 'file_upload_' . $i; + if (isset($_FILES[$val]) && ($_FILES[$val]['error'] != 4)) { + try { + $browser->wasFileUploaded($val); + $filename = Horde_Util::dispelMagicQuotes($_FILES[$val]['name']); + + Gollem::writeFile($old_dir, $filename, $_FILES[$val]['tmp_name']); + Gollem::expireCache($old_dir); + $notification->push(sprintf(_("File received: %s"), $filename), 'horde.success'); + } catch (Gollem_Exception $e) { + $notification->push($e, 'horde.error'); + } + } + } + } + break; + +case 'copy_items': +case 'cut_items': + if ($edit_perms) { + $action = ($vars->actionID == 'copy_items') ? 'copy' : 'cut'; + + if (is_array($vars->items) && count($vars->items)) { + foreach ($vars->items as $item) { + $file = array( + 'action' => $action, + 'backend' => $backkey, + 'display' => Gollem::getDisplayPath($old_dir . '/' . $item), + 'name' => $item, + 'path' => $old_dir + ); + $clipboard[] = $file; + $session->set('gollem', 'clipboard', $clipboard); + if ($action == 'copy') { + $notification->push(sprintf(_("Item copied to clipboard: %s"), $item), 'horde.success'); + } else { + $notification->push(sprintf(_("Item cut to clipboard: %s"), $item), 'horde.success'); + } + } + } elseif ($action == 'copy') { + $notification->push(_("Cannot copy items onto clipboard."), 'horde.error'); + } else { + $notification->push(_("Cannot cut items onto clipboard."), 'horde.error'); + } + } + break; + +case 'clear_items': +case 'paste_items': + if ($edit_perms && is_array($vars->items) && count($vars->items)) { + foreach ($vars->items as $val) { + if (isset($clipboard[$val])) { + $file = $clipboard[$val]; + if ($vars->actionID == 'paste_items') { + try { + if ($file['action'] == 'cut') { + Gollem::moveFile($file['backend'], $file['path'], $file['name'], $backkey, $old_dir); + } else { + Gollem::copyFile($file['backend'], $file['path'], $file['name'], $backkey, $old_dir); + } + + Gollem::expireCache($old_dir); + if ($file['action'] == 'cut') { + Gollem::expireCache($file['path']); + } + $notification->push(sprintf(_("%s was successfully pasted."), $file['name'], $old_dir), 'horde.success'); + } catch (Horde_Vfs_Exception $e) { + $notification->push(sprintf(_("Cannot paste \"%s\" (file cleared from clipboard): %s"), $file['name'], $e->getMessage()), 'horde.error'); + } + } + unset($clipboard[$val]); + } + } + $session->set('gollem', 'clipboard', array_values($clipboard)); + } + break; + +case 'change_sortby': + if (isset($vars->sortby)) { + $prefs->setValue('sortby', $vars->sortby); + } + break; + +case 'change_sortdir': + if (isset($vars->sortdir)) { + $prefs->setValue('sortdir', $vars->sortdir); + } + break; +} + +/* First loop through getting folder lists, setting the directory, + * etc., to make sure we can catch any errors. */ +$list = null; +try { + $list = Gollem::listFolder(Gollem::$backend['dir']); +} catch (Horde_Exception $e) { + /* If this is a user's home directory, try autocreating it. */ + if (Gollem::$backend['dir'] == Gollem::$backend['home']) { + try { + Gollem::createFolder('', Gollem::$backend['dir']); + try { + $list = Gollem::listFolder(Gollem::$backend['dir']); + } catch (Horde_Exception $e) { + /* If that didn't work, fall back to the parent or the home + * directory. */ + $notification->push(sprintf(_("Permission denied to folder \"%s\": %s"), Gollem::$backend['dir'], $e->getMessage()), 'horde.error'); + + $loc = strrpos(Gollem::$backend['dir'], '/'); + Gollem::setDir(($loc !== false) ? substr(Gollem::$backend['dir'], 0, $loc) : Gollem::$backend['home']); + $list = Gollem::listFolder(Gollem::$backend['dir']); + } + } catch (Gollem_Exception $e) { + $notification->push(sprintf(_("Cannot create home directory: %s"), $e->getMessage()), 'horde.error'); + } + } +} + +$numitem = count($list); +$title = Gollem::$backend['name']; + +/* Commonly used URLs. */ +$view_url = Horde::url('view.php'); +$edit_url = Horde::url('edit.php'); +$manager_url = Horde::url('manager.php'); + +$refresh_url = Horde::selfUrl(true, true); + +/* Init some form vars. */ +if ($session->get('gollem', 'filter') != $vars->searchfield) { + if (strlen($vars->searchfield)) { + $refresh_url->add('searchfield', $vars->searchfield); + } else { + $refresh_url->remove('searchfield'); + } + $page = 0; +} else { + $page = $vars->get('page', 0); +} +$session->set('gollem', 'filter', strval($vars->searchfield)); + +/* Get the list of copy/cut files in this directory. */ +$clipboard_files = array(); +foreach ($clipboard as $val) { + if (($backkey == $val['backend']) && + ($val['path'] == Gollem::$backend['dir'])) { + $clipboard_files[$val['name']] = 1; + } +} + +/* Read the columns to display from the preferences. */ +$columns = Gollem::getColumns($backkey); + +/* Prepare the template. */ +$template = $injector->createInstance('Horde_View'); + +$attrib = $gollem_vfs->getModifiablePermissions(); +foreach (array('owner', 'group', 'all') as $val) { + foreach (array('read', 'write', 'execute') as $val2) { + if (isset($attrib[$val][$val2])) { + $template->{$val . '_' . $val2} = !$attrib[$val][$val2]; + } + } +} + +$all_columns = array('type', 'name', 'share', 'edit', 'download', 'modified', 'size', 'permission', 'owner', 'group'); +foreach ($all_columns as $column) { + $template->{'columns_' . $column} = in_array($column, $columns); +} + +$template->action = $refresh_url; +$template->forminput = Horde_Util::formInput(); +$template->dir = Gollem::$backend['dir']; +$template->navlink = Gollem::directoryNavLink(Gollem::$backend['dir'], $manager_url); +$template->refresh = Horde::widget(array( + 'url' => $refresh_url, + 'title' => _("Refresh"), + 'id' => 'gollem-refresh' +)); + +$template->hasclipboard = $edit_perms; + +$shares_enabled = !empty(Gollem::$backend['shares']) && + strpos(Gollem::$backend['dir'], Gollem::$backend['home']) === 0; +if ($shares_enabled) { + $shares = $injector->getInstance('Gollem_Shares'); + $perms_url_base = Horde::url('share.php', true)->add('app', 'gollem'); + $share_name = $backkey . '|' . Gollem::$backend['dir']; + $template->share_folder = Horde::widget(array( + 'url' => $perms_url_base->add('share', $share_name), + 'title' => _("Share Folder"), + 'target' => '_blank', + 'class' => 'gollem-sharefolder', + 'onclick' => Horde::popupJs( + $perms_url_base, + array('params' => array('share' => $share_name), + 'urlencode' => true)) . 'return false;' + )); +} + +if ($edit_perms) { + $template->perms_edit = true; + $template->upload_file = _("Upload File(s)"); + $template->upload_identifier = session_id(); + $template->upload_help = Horde_Help::link('gollem', 'file-upload'); + $template->perms_chmod = in_array('permission', $columns); + $injector->getInstance('Horde_View_Sidebar')->addNewButton( + _("Create Folder"), + Horde::url('#'), + array('id' => 'gollem-createfolder') + ); +} else { + $template->perms_edit = false; + $template->perms_chmod = false; +} + +if ($read_perms) { + $template->change_folder = Horde::widget(array( + 'url' => Horde::url('#'), + 'title' => _("Change Folder"), + 'id' => 'gollem-changefolder' + )); +} + +if ($numitem) { + $template->list_count = true; + $template->perms_delete = $delete_perms; + $topbar = $injector->getInstance('Horde_View_Topbar'); + $topbar->search = true; + $topbar->searchAction = $refresh_url; + $topbar->searchLabel = $session->get('gollem', 'filter') ?: _("Filter"); + $topbar->searchIcon = Horde_Themes::img('filter-topbar.png'); +} else { + $template->list_count = false; +} + +$icon_cache = array(); +$total = 0; + +if (is_array($list) && $numitem && $read_perms) { + $entry = array(); + $page_caption = ''; + + $template->empty_dir = false; + + /* Set list min/max values */ + $perpage = $prefs->getValue('perpage'); + $min = $page * $perpage; + while ($min > $numitem) { + --$page; + $min = $page * $perpage; + } + $max = $min + $perpage; + + foreach ($list as $key => $val) { + /* Check if a filter is not empty and filter matches filename. */ + if (strlen($vars->searchfield) && + !preg_match('/' . preg_quote($vars->searchfield, '/') . '/', $val['name'])) { + continue; + } + + /* Continue if item not in min/max range. */ + if (($total++ < $min) || ($total > $max)) { + continue; + } + + $item = array( + 'date' => htmlspecialchars(strftime($prefs->getValue('date_format_mini'), $val['date'])), + 'dl' => false, + 'edit' => false, + 'group' => empty($val['group']) ? '-' : htmlspecialchars($val['group']), + 'name' => htmlspecialchars($val['name']), + 'on_clipboard' => false, + 'owner' => empty($val['owner']) ? '-' : htmlspecialchars($val['owner']), + 'perms' => empty($val['perms']) ? '-' : htmlspecialchars($val['perms']), + 'size' => ($val['type'] == '**dir') ? '-' : number_format($val['size'], 0, '.', ','), + 'type' => htmlspecialchars($val['type']) + ); + + $name = str_replace(' ', ' ', $item['name']); + + /* Is this file on the clipboard? */ + if (isset($clipboard_files[$val['name']])) { + $item['on_clipboard'] = true; + } + + /* Determine graphic to use. */ + if (!empty($val['link'])) { + $item['graphic'] = ''; + } elseif ($val['type'] == '**dir') { + $item['graphic'] = ''; + } else { + if (empty($icon_cache[$val['type']])) { + $icon_cache[$val['type']] = Horde::img($injector->getInstance('Horde_Core_Factory_MimeViewer')->getIcon(Horde_Mime_Magic::extToMime($val['type'])), '', '', ''); + } + $item['graphic'] = $icon_cache[$val['type']]; + } + + /* Create proper link. */ + switch ($val['type']) { + case '**dir': + $subdir = Gollem::subdirectory(Gollem::$backend['dir'], $val['name']); + if (!Gollem::checkPermissions('directory', Horde_Perms::SHOW, $subdir)) { + continue 2; + } + $item['link'] = $manager_url->copy()->add('dir', $subdir)->link() + . $name . ''; + if ($shares_enabled) { + $share = $backkey . '|' . $subdir; + $item['share'] = $perms_url_base->add('share', $share)->link(array('title' => $shares->exists($share) ? _("Shared Folder") : _("Share Folder"), 'target' => '_blank', 'onclick' => Horde::popupJs($perms_url_base, array('params' => array('share' => $share), 'urlencode' => true)) . 'return false;')); + $item['share_disabled'] = !$shares->exists($share); + } + break; + + case '**broken': + $item['link'] = $name; + break; + + case '**sym': + if ($val['linktype'] === '**dir') { + if (substr($val['link'], 0, 1) == '/') { + $parts = explode('/', $val['link']); + $name = array_pop($parts); + $dir = implode('/', $parts); + } else { + $name = $val['link']; + $dir = Gollem::$backend['dir']; + } + + $url = $manager_url->copy()->add('dir', Gollem::subdirectory($dir, $name)); + $item['link'] = $item['name'] . ' -> ' . $url->link() . $val['link'] . ''; + } else { + $item['link'] = $item['name'] . ' -> ' . $val['link']; + } + break; + + default: + $mime_type = Horde_Mime_Magic::extToMime($val['type']); + + // Edit link if possible. + if (strpos($mime_type, 'text/') === 0) { + $url = $edit_url->copy()->add(array( + 'actionID' => 'edit_file', + 'type' => $val['type'], + 'file' => $val['name'], + 'dir' => Gollem::$backend['dir'], + 'driver' => Gollem::$backend['driver'] + )); + $item['edit'] = Horde::link('#', '', '', '_blank', Horde::popupJs($url)); + } + + // We can always download files. + $item['dl'] = $registry->downloadUrl($val['name'], array('dir' => Gollem::$backend['dir'], 'backend' => $GLOBALS['session']->get('gollem', 'backend_key')))->link(array('title' => sprintf(_("Download %s"), $val['name']))); + + // Try a view link. + $url = $view_url->copy()->add(array( + 'type' => $val['type'], + 'file' => $val['name'], + 'dir' => Gollem::$backend['dir'], + 'driver' => Gollem::$backend['driver'] + )); + $item['link'] = Horde::link('#', '', '', '_blank', Horde::popupJs($url)) . $name . ''; + break; + } + + $entry[] = $item; + } + + /* Set up the variables needed for the header row. */ + $sortby = $prefs->getValue('sortby'); + $sortdir = $prefs->getValue('sortdir'); + + if ($total) { + // Set start/end items (according to current page) + $start = ($page * $perpage) + 1; + $end = min($total, $start + $perpage - 1); + + $vars->set('page', $page); + $pager = new Horde_Core_Ui_Pager('page', $vars, array( + 'num' => $total, + 'url' => $refresh_url, + 'page_count' => 10, + 'perpage' => $perpage + )); + $page_caption = $pager->render(); + } + + $headers = array(); + foreach ($columns as $head) { + $hdr = array('class' => ''); + $sort = null; + + switch ($head) { + case 'type': + $hdr['width'] = '3%'; + $hdr['label'] = _("Type"); + $hdr['align'] = 'right'; + $hdr['id'] = 's' . Gollem::SORT_TYPE; + $sort = Gollem::SORT_TYPE; + break; + + case 'name': + $hdr['width'] = '57%'; + $hdr['label'] = _("Name"); + $hdr['align'] = 'left'; + $hdr['id'] = 's' . Gollem::SORT_NAME; + $sort = Gollem::SORT_NAME; + break; + + case 'share': + $hdr['width'] = '1%'; + $hdr['label'] = ' '; + $hdr['align'] = 'center'; + break; + + case 'edit': + $hdr['width'] = '1%'; + $hdr['label'] = ' '; + $hdr['align'] = 'center'; + break; + + case 'download': + $hdr['width'] = '1%'; + $hdr['label'] = ' '; + $hdr['align'] = 'center'; + break; + + case 'modified': + $hdr['width'] = '7%'; + $hdr['label'] = _("Modified"); + $hdr['align'] = 'left'; + $hdr['id'] = 's' . Gollem::SORT_DATE; + $sort = Gollem::SORT_DATE; + break; + + case 'size': + $hdr['width'] = '7%'; + $hdr['label'] = _("Size"); + $hdr['align'] = 'right'; + $hdr['id'] = 's' . Gollem::SORT_SIZE; + $sort = Gollem::SORT_SIZE; + break; + + case 'permission': + $hdr['width'] = '7%'; + $hdr['label'] = _("Permission"); + $hdr['align'] = 'right'; + break; + + case 'owner': + $hdr['width'] = '7%'; + $hdr['label'] = _("Owner"); + $hdr['align'] = 'right'; + break; + + case 'group': + $hdr['width'] = '7%'; + $hdr['label'] = _("Group"); + $hdr['align'] = 'right'; + break; + } + + if ($sort !== null) { + if ($sortby == $sort) { + $hdr['class'] = ($sortdir ? 'sortup' : 'sortdown'); + $params = array('actionID' => 'change_sortdir', 'sortdir' => 1 - $sortdir); + } else { + $params = array('actionID' => 'change_sortby', 'sortby' => $sort); + } + $hdr['label'] = '' . htmlspecialchars($hdr['label']) . ''; + } + + $headers[] = $hdr; + } + + /* Set up the template tags. */ + $template->headers = $headers; + $template->entries = $entry; + $template->page_caption = $page_caption; + $template->checkall = Horde::getAccessKeyAndTitle(_("Check _All/None")); +} else { + $template->empty_dir = true; +} +$template->itemcount = sprintf(ngettext(_("%d item"), _("%d items"), $total), $total); + +$page_output->addScriptFile('manager.js'); +$page_output->addScriptPackage('Horde_Core_Script_Package_Dialog'); +$page_output->addInlineJsVars(array( + 'var GollemVar' => array( + 'actionUrl' => strval(Horde::url('manager.php')), + 'empty_input' => intval($GLOBALS['browser']->hasQuirk('empty_file_input_value')), + 'warn_recursive' => intval($prefs->getValue('recursive_deletes') == 'warn') + ), + 'var GollemText' => array( + 'change_directory' => _("Change Folder"), + 'create_folder' => _("Create Folder"), + 'delete_confirm_1' => _("The following items will be permanently deleted:"), + 'delete_confirm_2' => _("Are you sure?"), + 'delete_recurs_1' => _("The following item(s) are folders:"), + 'delete_recurs_2' => _("Are you sure you wish to continue?"), + 'file' => _("File"), + 'permissions' => _("Permissions"), + 'rename' => _("Rename"), + 'select_item' => _("Please select an item before this action."), + 'specify_upload' => _("Please specify at least one file to upload."), + ) +)); + +$page_output->header(array( + 'title' => $title +)); +$notification->notify(array('listeners' => 'status')); +echo $template->render('manager'); +$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/migration/1_gollem_base_tables.php php-horde-gollem-3.0.9/gollem-3.0.9/migration/1_gollem_base_tables.php --- php-horde-gollem-3.0.8/gollem-3.0.9/migration/1_gollem_base_tables.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/migration/1_gollem_base_tables.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,140 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class GollemBaseTables extends Horde_Db_Migration_Base +{ + /** + * Upgrade. + */ + public function up() + { + $t = $this->createTable('gollem_shares', array('autoincrementKey' => false)); + $t->column('share_id', 'integer', array('null' => false)); + $t->column('share_name', 'string', array('limit' => 255, 'null' => false)); + $t->column('share_owner', 'string', array('limit' => 255, 'null' => false)); + $t->column('share_flags', 'integer', array('default' => 0, 'null' => false)); + $t->column('share_parents', 'text'); + $t->column('perm_creator', 'integer', array('default' => 0, 'null' => false)); + $t->column('perm_default', 'integer', array('default' => 0, 'null' => false)); + $t->column('perm_guest', 'integer', array('default' => 0, 'null' => false)); + $t->column('attribute_name', 'string', array('limit' => 255, 'null' => false)); + $t->primaryKey(array('share_id')); + $t->end(); + $this->addIndex('gollem_shares', array('share_name')); + $this->addIndex('gollem_shares', array('share_owner')); + $this->addIndex('gollem_shares', array('perm_creator')); + $this->addIndex('gollem_shares', array('perm_default')); + $this->addIndex('gollem_shares', array('perm_guest')); + + $t = $this->createTable('gollem_shares_groups'); + $t->column('share_id', 'integer', array('null' => false)); + $t->column('group_uid', 'string', array('limit' => 255, 'null' => false)); + $t->column('perm', 'integer', array('null' => false)); + $t->end(); + + $this->addIndex('gollem_shares_groups', array('share_id')); + $this->addIndex('gollem_shares_groups', array('group_uid')); + $this->addIndex('gollem_shares_groups', array('perm')); + + $t = $this->createTable('gollem_shares_users'); + $t->column('share_id', 'integer', array('null' => false)); + $t->column('user_uid', 'string', array('limit' => 255, 'null' => false)); + $t->column('perm', 'integer', array('null' => false)); + $t->end(); + + $this->addIndex('gollem_shares_users', array('share_id')); + $this->addIndex('gollem_shares_users', array('user_uid')); + $this->addIndex('gollem_shares_users', array('perm')); + + $t = $this->createTable('gollem_sharesng', array('autoincrementKey' => 'share_id')); + $t->column('share_name', 'string', array('limit' => 255, 'null' => false)); + $t->column('share_owner', 'string', array('limit' => 255)); + $t->column('share_flags', 'integer', array('default' => 0, 'null' => false)); + $t->column('share_parents', 'text'); + $t->column('perm_creator_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_creator_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_creator_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_creator_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_default_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_default_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_default_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_default_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_guest_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_guest_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_guest_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_guest_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); + $t->column('attribute_name', 'string', array('limit' => 255, 'null' => false)); + $t->end(); + + $this->addIndex('gollem_sharesng', array('share_name')); + $this->addIndex('gollem_sharesng', array('share_owner')); + $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::SHOW)); + $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::READ)); + $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::EDIT)); + $this->addIndex('gollem_sharesng', array('perm_creator_' . Horde_Perms::DELETE)); + $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::SHOW)); + $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::READ)); + $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::EDIT)); + $this->addIndex('gollem_sharesng', array('perm_default_' . Horde_Perms::DELETE)); + $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::SHOW)); + $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::READ)); + $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::EDIT)); + $this->addIndex('gollem_sharesng', array('perm_guest_' . Horde_Perms::DELETE)); + + $t = $this->createTable('gollem_sharesng_groups', array('autoincrementKey' => false)); + $t->column('share_id', 'integer', array('null' => false)); + $t->column('group_uid', 'string', array('limit' => 255, 'null' => false)); + $t->column('perm_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); + $t->end(); + + $this->addIndex('gollem_sharesng_groups', array('share_id')); + $this->addIndex('gollem_sharesng_groups', array('group_uid')); + $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::SHOW)); + $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::READ)); + $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::EDIT)); + $this->addIndex('gollem_sharesng_groups', array('perm_' . Horde_Perms::DELETE)); + + $t = $this->createTable('gollem_sharesng_users', array('autoincrementKey' => false)); + $t->column('share_id', 'integer', array('null' => false)); + $t->column('user_uid', 'string', array('limit' => 255, 'null' => false)); + $t->column('perm_' . Horde_Perms::SHOW, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_' . Horde_Perms::READ, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_' . Horde_Perms::EDIT, 'boolean', array('default' => false, 'null' => false)); + $t->column('perm_' . Horde_Perms::DELETE, 'boolean', array('default' => false, 'null' => false)); + $t->end(); + + $this->addIndex('gollem_sharesng_users', array('share_id')); + $this->addIndex('gollem_sharesng_users', array('user_uid')); + $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::SHOW)); + $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::READ)); + $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::EDIT)); + $this->addIndex('gollem_sharesng_users', array('perm_' . Horde_Perms::DELETE)); + } + + /** + * Downgrade + */ + public function down() + { + $this->dropTable('gollem_shares'); + $this->dropTable('gollem_shares_users'); + $this->dropTable('gollem_shares_groups'); + $this->dropTable('gollem_sharesng'); + $this->dropTable('gollem_sharesng_groups'); + $this->dropTable('gollem_sharesng_users'); + } +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/migration/2_gollem_upgrade_autoincrement.php php-horde-gollem-3.0.9/gollem-3.0.9/migration/2_gollem_upgrade_autoincrement.php --- php-horde-gollem-3.0.8/gollem-3.0.9/migration/2_gollem_upgrade_autoincrement.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/migration/2_gollem_upgrade_autoincrement.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,37 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class GollemUpgradeAutoIncrement extends Horde_Db_Migration_Base +{ + /** + * Upgrade. + */ + public function up() + { + $this->changeColumn('gollem_shares', 'share_id', 'autoincrementKey'); + try { + $this->dropTable('gollem_shares_seq'); + } catch (Horde_Db_Exception $e) { + } + } + + /** + * Downgrade + */ + public function down() + { + $this->changeColumn('gollem_shares', 'share_id', 'integer', array('null' => false)); + } + +} \ No newline at end of file diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/migration/3_gollem_upgrade_parents.php php-horde-gollem-3.0.9/gollem-3.0.9/migration/3_gollem_upgrade_parents.php --- php-horde-gollem-3.0.8/gollem-3.0.9/migration/3_gollem_upgrade_parents.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/migration/3_gollem_upgrade_parents.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,41 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +/** + * Fixes the type of the parents column. + * + * @author Jan Schneider + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ +class GollemUpgradeParents extends Horde_Db_Migration_Base +{ + /** + * Upgrade. + */ + public function up() + { + $this->changeColumn('gollem_shares', 'share_parents', 'string', array('limit' => 4000)); + $this->changeColumn('gollem_sharesng', 'share_parents', 'string', array('limit' => 4000)); + } + + /** + * Downgrade + */ + public function down() + { + $this->changeColumn('gollem_shares', 'share_parents', 'text'); + $this->changeColumn('gollem_sharesng', 'share_parents', 'text'); + } +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/permissions.php php-horde-gollem-3.0.9/gollem-3.0.9/permissions.php --- php-horde-gollem-3.0.8/gollem-3.0.9/permissions.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/permissions.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,51 @@ + + * + * See the enclosed file COPYING for license information (GPL). If you + * did not receive this file, see http://www.horde.org/licenses/gpl. + * + * @author Vijay Mahrra + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem', array('admin' => true)); + +if (!Gollem_Auth::getBackend()) { + $notification->push(_("You need at least one backend defined to set permissions."), 'horde.error'); + Horde::url('index.php', true)->redirect(); +} + +/* Edit permissions for the preferred backend if none is selected. */ +$key = Horde_Util::getFormData('backend', Gollem_Auth::getPreferredBackend()); +$app = $registry->getApp(); +$backendTag = $app . ':backends:' . $key; +$perms = $injector->getInstance('Horde_Perms'); + +if ($perms->exists($backendTag)) { + $permission = $perms->getPermission($backendTag); + $perm_id = $perms->getPermissionId($permission); +} else { + $permission = $injector + ->getInstance('Horde_Perms') + ->newPermission($backendTag); + try { + $perms->addPermission($permission, $app); + } catch (Horde_Perms_Exception $e) { + $notification->push(sprintf(_("Unable to create backend permission: %s"), $e->getMessage()), 'horde.error'); + Horde::url('index.php', true)->redirect(); + } + + $perm_id = $perms->getPermissionId($permission); + $notification->push(sprintf(_("Created empty permissions for \"%s\". You must explicitly grant access to this backend now."), $key), 'horde.warning'); +} + +/* Redirect to horde permissions administration interface. */ +Horde::url($registry->get('webroot', 'horde') . '/admin/perms/edit.php', true) + ->add('perm_id', $permission->getId()) + ->redirect(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/quota.php php-horde-gollem-3.0.9/gollem-3.0.9/quota.php --- php-horde-gollem-3.0.8/gollem-3.0.9/quota.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/quota.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,64 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem'); + +/* Is this a popup window? */ +$isPopup = $browser->hasFeature('javascript'); + +/* Set up the template object. */ +$template = $injector->createInstance('Horde_View'); +if ($isPopup) { + $template->closebutton = _("Close"); + $page_output->topbar = $page_output->sidebar = false; + $page_output->addInlineScript(array( + '$("closebutton").observe("click", function() { window.close(); })' + ), true); +} + +/* Get the quota information. */ +$template->noquota = true; +$template->quotaerror = false; +$template->quotadisplay = false; +$template->quotagraph = false; +if (!empty(Gollem::$backend['quota'])) { + $template->noquota = false; + try { + $quota_info = $injector->getInstance('Gollem_Vfs')->getQuota(); + $usage = $quota_info['usage'] / (1024 * 1024.0); + $limit = $quota_info['limit'] / (1024 * 1024.0); + + $percent = ($usage * 100) / $limit; + if ($percent >= 90) { + $template->quotastyle = '
'; + } else { + $template->quotastyle = '
'; + } + $template->quotadisplay = sprintf(_("%.2fMB / %.2fMB (%.2f%%)"), $usage, $limit, $percent); + } catch (Horde_Vfs_Exception $e) { + $template->quotaerror = true; + $template->quotaerrormsg = $e->getMessage(); + } +} + +$page_output->header(array( + 'title' => _("Quota Display") +)); +if (!$isPopup) { + $notification->notify(array('listeners' => 'status')); +} +echo $template->render('quota'); +$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/README php-horde-gollem-3.0.9/gollem-3.0.9/README --- php-horde-gollem-3.0.8/gollem-3.0.9/README 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/README 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,85 @@ +================= + What is Gollem? +================= + +:Contact: gollem@lists.horde.org + +.. contents:: Contents +.. section-numbering:: + +Gollem is a web-based file manager, providing the ability to fully manage a +hierarchical file system stored in a variety of backends such as a SQL +database, as part of a real filesystem, or on FTP, Samba or SSH servers. + +This software is OSI Certified Open Source Software. OSI Certified is a +certification mark of the `Open Source Initiative`_. + +.. _`Open Source Initiative`: http://www.opensource.org/ + + +Obtaining Gollem +================ + +Further information on Gollem and the latest version can be obtained at: + + http://www.horde.org/apps/gollem + + +Documentation +============= + +The following documentation is available in the Gollem distribution: + +:README_: This file +:COPYING_: Copyright and license information +:`docs/CHANGES`_: Changes by release +:`docs/CREDITS`_: Project developers +:`docs/INSTALL`_: Installation instructions and notes +:`docs/TODO`_: Development TODO list + + +Installation +============ + +Instructions for installing Gollem can be found in the file INSTALL_ in the +``docs/`` directory of the Gollem distribution. + + +Assistance +========== + +If you encounter problems with Gollem, help is available! + +The Horde Frequently Asked Questions List (FAQ), available on the Web at + + http://wiki.horde.org/FAQ + +Horde LLC runs a number of mailing lists, for individual applications +and for issues relating to the project as a whole. Information, archives, and +subscription information can be found at + + http://www.horde.org/community/mail + +Lastly, Horde developers, contributors and users also make occasional +appearances on IRC, on the channel #horde on the Freenode Network +(irc.freenode.net). + + +Licensing +========= + +For licensing and copyright information, please see the file COPYING_ in the +Gollem distribution. + +Thanks, + +The Gollem Team + + +.. _README: README +.. _COPYING: http://www.horde.org/licenses/gpl +.. _docs/CHANGES: CHANGES +.. _docs/CREDITS: CREDITS +.. _INSTALL: +.. _docs/INSTALL: INSTALL +.. _docs/TODO: TODO diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/selectlist.php php-horde-gollem-3.0.9/gollem-3.0.9/selectlist.php --- php-horde-gollem-3.0.8/gollem-3.0.9/selectlist.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/selectlist.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,184 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem', array( + 'authentication' => 'selectlist' +)); + +$vars = Horde_Variables::getDefaultVariables(); + +/* Set directory. */ +try { + Gollem::changeDir(); +} catch (Gollem_Exception $e) { + $notification->push($e); +} + +/* Create a new cache ID if one does not already exist. */ +$cacheid = $vars->get('cacheid', strval(new Horde_Support_Randomid())); + +$selectlist = $session->get('gollem', 'selectlist/' . $cacheid, Horde_Session::TYPE_ARRAY); + +/* Run through the action handlers. */ +switch ($vars->actionID) { +case 'select': + if (is_array($vars->items) && count($vars->items)) { + foreach ($vars->items as $item) { + $item_value = Gollem::$backend['dir'] . '|' . $item; + if (empty($selectlist['files'])) { + $selectlist['files'] = array($item_value); + } else { + $item_key = array_search($item_value, $selectlist['files']); + if ($item_key !== false) { + unset($selectlist['files'][$item_key]); + sort($selectlist['files']); + } else { + $selectlist['files'][] = $item_value; + } + } + } + + $session->set('gollem', 'selectlist/' . $cacheid, $selectlist); + + $filelist = array_keys(array_flip($selectlist['files'])); + } + break; +} + +try { + $info = array('list' => Gollem::listFolder(Gollem::$backend['dir'])); +} catch (Gollem_Exception $e) { + /* If that didn't work, fall back to the parent or the home directory. */ + $notification->push(sprintf(_("Permission denied to %s: %s"), Gollem::$backend['dir'], $e->getMessage()), 'horde.error'); + + $loc = strrpos(Gollem::$backend['dir'], '/'); + Gollem::setDir(($loc !== false) ? substr(Gollem::$backend['dir'], 0, $loc) : Gollem::$backend['home']); + $info = array('list' => Gollem::listFolder(Gollem::$backend['dir'])); +} + +$info['title'] = htmlspecialchars(Gollem::$backend['label']); + +/* Commonly used URLs. */ +$self_url = Horde::url('selectlist.php'); + +/* Set up the template object. */ +$view = $injector->createInstance('Horde_View'); +$view->self_url = $self_url; +$view->forminput = Horde_Util::formInput(); +$view->cacheid = $cacheid; +$view->currdir = htmlspecialchars(Gollem::$backend['dir']); +$view->formid = htmlspecialchars($vars->formid); +$view->navlink = Gollem::directoryNavLink(Gollem::$backend['dir'], $self_url->copy()->add(array('cacheid' => $cacheid, 'formid' => $vars->formid))); +if ($GLOBALS['conf']['backend']['backend_list'] == 'shown') { + // TODO + //$view->changeserver = Horde::link(htmlspecialchars(Horde_Auth::addLogoutParameters(Horde::url('login.php')->add(array('url' => Horde::url('selectlist.php')->add(array('formid' => $vars->formid)))), Horde_Auth::REASON_LOGOUT)), _("Change Server")) . Horde::img('logout.png', _("Change Server")) . '', true; +} + +if (is_array($info['list']) && + count($info['list']) && + Gollem::checkPermissions('backend', Horde_Perms::READ)) { + + $entry = $icon_cache = array(); + $rowct = 0; + + foreach ($info['list'] as $key => $val) { + $item = array( + 'dir' => false, + 'name' => htmlspecialchars($val['name']), + 'selected' => false, + 'type' => $val['type'] + ); + + $name = str_replace(' ', ' ', $item['name']); + + /* Determine graphic to use. */ + if (!empty($val['link'])) { + $item['graphic'] = ''; + } elseif ($val['type'] == '**dir') { + $item['graphic'] = ''; + } else { + if (empty($icon_cache[$val['type']])) { + $icon_cache[$val['type']] = Horde::img($injector->getInstance('Horde_Core_Factory_MimeViewer')->getIcon($val['type'])); + } + $item['graphic'] = $icon_cache[$val['type']]; + } + + /* Create proper link. */ + switch ($val['type']) { + case '**dir': + $url = $self_url->copy()->add(array( + 'cacheid' => $cacheid, + 'dir' => Gollem::subdirectory(Gollem::$backend['dir'], $val['name']), + 'formid' => $vars->formid + )); + $item['link'] = $url->link() . '' . $name . ''; + $item['dir'] = true; + break; + + case '**sym': + if ($val['linktype'] === '**dir') { + if (substr($val['link'], 0, 1) == '/') { + $parts = explode('/', $val['link']); + $name = array_pop($parts); + $dir = implode('/', $parts); + } else { + $name = $val['link']; + $dir = Gollem::$backend['dir']; + } + + $url = $self_url->copy()->add(array( + 'cacheid' => $cacheid, + 'dir' => Gollem::subdirectory(Gollem::$backend['dir'], $val['name']), + 'formid' => $vars->formid + )); + $item['link'] = $item['name'] . ' -> ' . $url->link() . $val['link'] . ''; + } else { + $item['link'] = $item['name'] . ' -> ' . $val['link']; + } + break; + + default: + $item['link'] = $name; + break; + } + + if (!empty($selectlist['files']) && + in_array(Gollem::$backend['dir'] . '|' . $val['name'], $selectlist['files'])) { + $item['selected'] = true; + } + + $item['item'] = (++$rowct % 2) ? 'rowEven' : 'rowOdd'; + + $entry[] = $item; + } + + $view->entries = $entry; +} + +$page_output->addScriptFile('selectlist.js'); +$page_output->addInlineJsVars(array( + 'var GollemText' => array( + 'opener_window' => _("The original opener window has been closed. Exiting."), + ), +)); +$page_output->topbar = $page_output->sidebar = false; + +$page_output->header(array( + 'title' => $info['title'] +)); +$notification->notify(array('listeners' => 'status')); +echo $view->render('selectlist'); +$page_output->footer(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/share.php php-horde-gollem-3.0.9/gollem-3.0.9/share.php --- php-horde-gollem-3.0.8/gollem-3.0.9/share.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/share.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,42 @@ + + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem'); + +/* Check if the user has permissions to create shares here. */ +$share = Horde_Util::getFormData('share'); +@list($backend_key, $dir) = explode('|', $share); +$backend = Gollem_Auth::getBackend($backend_key); + +if (!$backend || empty($backend['shares']) || + strpos($dir, $backend['home']) !== 0) { + throw new Gollem_Excception(_("You are not allowed to share this folder")); +} + +/* Create a folder share if it doesn't exist yet. */ +$shares = $injector->getInstance('Gollem_Shares'); +if (!$shares->exists($share)) { + $shareOb = $shares->newShare($registry->getAuth(), $share, basename($dir)); + $shares->addShare($shareOb); +} + +/* Proceed with the regular share editing. */ +Horde::url('services/shares/edit.php', true, array('app' => 'horde')) + ->add(array('app' => 'gollem', 'share' => $share)) + ->redirect(); diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/templates/clipboard.html.php php-horde-gollem-3.0.9/gollem-3.0.9/templates/clipboard.html.php --- php-horde-gollem-3.0.8/gollem-3.0.9/templates/clipboard.html.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/templates/clipboard.html.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,59 @@ +
+forminput ?> + + + +

+ +

+ +
+

+ +

+ +

+ +
+ +

+ +

+ currdir ?> +

+
+ + + + + + + + +entries as $entry): ?> + + + + + +
+ +
+ +
+ +

+ + + +

+ +
diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/templates/edit.html.php php-horde-gollem-3.0.9/gollem-3.0.9/templates/edit.html.php --- php-horde-gollem-3.0.8/gollem-3.0.9/templates/edit.html.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/templates/edit.html.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,17 @@ +
+ forminput ?> + + + + + +

vars->file) ?>

+ + + +

+ " /> + " /> + " /> +

+
diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/templates/.htaccess php-horde-gollem-3.0.9/gollem-3.0.9/templates/.htaccess --- php-horde-gollem-3.0.8/gollem-3.0.9/templates/.htaccess 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/templates/.htaccess 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,6 @@ + + Require all denied + + + Deny from all + diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/templates/manager.html.php php-horde-gollem-3.0.9/gollem-3.0.9/templates/manager.html.php --- php-horde-gollem-3.0.8/gollem-3.0.9/templates/manager.html.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/templates/manager.html.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,155 @@ +list_count): ?> +perms_chmod): ?> + + + + +
+forminput ?> + + + + + + + + + +
+ itemcount ?> + navlink ?> +
+
+
    +
  • refresh ?>
  • +share_folder): ?> +
  • share_folder ?>
  • + +change_folder): ?> +
  • change_folder ?>
  • + +list_count): ?> +perms_chmod): ?> +
  • '#', 'title' => _("Change Permissions"), 'id' => 'gollem-chmod')) ?>
  • + +hasclipboard): ?> +
  • '#', 'title' => _("Copy"), 'id' => 'gollem-copy')) ?>
  • +perms_delete): ?> +
  • '#', 'title' => _("Cut"), 'id' => 'gollem-cut')) ?>
  • + + +perms_delete): ?> +
  • '#', 'title' => _("Delete"), 'id' => 'gollem-delete')) ?>
  • + +perms_edit): ?> +
  • '#', 'title' => _("Rename"), 'id' => 'gollem-rename')) ?>
  • + + +
+
+ +empty_dir): ?> +

+ +

+ + + + + +headers as $header): ?> + id="" class="horde-split-left" style="text-align:" width=""> + + + + +entries as $entry): ?> + + +columns_type): ?> + + +columns_name): ?> + + +columns_share): ?> + + +columns_edit): ?> + + +columns_download): ?> + + +columns_modified): ?> + + +columns_size): ?> + + +columns_permission): ?> + + +columns_owner): ?> + + +columns_group): ?> + + + + + +
checkall ?> />
  + + + + + +   
+ + +page_caption ?> + +perms_edit): ?> +
+ + + + + +
+
+ 1:  +
+
+ upload_help ?> +
+ +
diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/templates/quota.html.php php-horde-gollem-3.0.9/gollem-3.0.9/templates/quota.html.php --- php-horde-gollem-3.0.8/gollem-3.0.9/templates/quota.html.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/templates/quota.html.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,25 @@ +

+ +

+ +quotaerror): ?> +
+ quotaerrormsg ?> +
+ +noquota): ?> +
+ +
+ +quotadisplay): ?> + quotastyle ?> +
quotadisplay ?>
+
+ + +closebutton): ?> +
+ +
+ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/templates/selectlist.html.php php-horde-gollem-3.0.9/gollem-3.0.9/templates/selectlist.html.php --- php-horde-gollem-3.0.8/gollem-3.0.9/templates/selectlist.html.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/templates/selectlist.html.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,32 @@ +
+forminput ?> + + + + + +

+ navlink ?> + changeserver): ?>changeserver ?> +

+ +entries): ?> +
+ +
+ +entries as $entry): ?> +
+ +
+ + + +
+ " /> + " /> + " /> +
+
Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/az.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/az.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/clipboard.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/clipboard.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/copy.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/copy.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/cut.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/cut.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/download.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/download.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/edit.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/edit.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/favicon.ico and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/favicon.ico differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/filter-topbar.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/filter-topbar.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/folder_create.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/folder_create.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/folder_goto.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/folder_goto.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/folder_home.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/folder_home.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/folder.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/folder.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/folder_symlink.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/folder_symlink.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/gollem.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/gollem.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/perms_disabled.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/perms_disabled.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/perms.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/perms.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/quota.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/quota.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/reload.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/reload.png differ Binary files /tmp/tmp6ubPFo/WwYC3jwtOg/php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/graphics/za.png and /tmp/tmp6ubPFo/wgVS4Ymz_O/php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/graphics/za.png differ diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/screen.css php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/screen.css --- php-horde-gollem-3.0.8/gollem-3.0.9/themes/default/screen.css 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/themes/default/screen.css 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,51 @@ +#gollem-attributes table.horde-table th { + text-align: center; +} + +.gollem-selectall { + font-weight: bold; + margin-left: 22px; +} + +#gollem-edit { + width: 99%; +} + +.header a:hover { + text-decoration: underline; +} + +/* Images. */ +.gollem-home { + background-image: url("graphics/folder_home.png"); +} +.gollem-quota { + background-image: url("graphics/quota.png"); +} +.gollem-clipboard { + background-image: url("graphics/clipboard.png"); +} +.gollem-download { + background-image: url("graphics/download.png"); +} +.gollem-edit { + background-image: url("graphics/edit.png"); +} +.gollem-folder { + background-image: url("graphics/folder.png"); +} +.gollem-sharefolder { + background-image: url("graphics/perms.png"); +} +.gollem-sharefolder-disabled { + background-image: url("graphics/perms_disabled.png"); +} +#gollem-changefolder { + background-image: url("graphics/folder_goto.png"); +} +#gollem-refresh { + background-image: url("graphics/reload.png"); +} +.gollem-symlink { + background-image: url("graphics/folder_symlink.png"); +} diff -Nru php-horde-gollem-3.0.8/gollem-3.0.9/view.php php-horde-gollem-3.0.9/gollem-3.0.9/view.php --- php-horde-gollem-3.0.8/gollem-3.0.9/view.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-gollem-3.0.9/gollem-3.0.9/view.php 2016-07-01 22:23:21.000000000 +0000 @@ -0,0 +1,88 @@ + + * @author Chuck Hagenbuch + * @category Horde + * @license http://www.horde.org/licenses/gpl GPL + * @package Gollem + */ + +require_once __DIR__ . '/lib/Application.php'; +Horde_Registry::appInit('gollem', array( + 'session_control' => 'readonly' +)); + +$vars = Horde_Variables::getDefaultVariables(); + +if ($vars->driver != Gollem::$backend['driver']) { + Horde::url('login.php')->add(array( + 'backend_key' => $vars->driver, + 'url' => Horde::selfUrl(true) + ))->redirect(); +} + +try { + Gollem::changeDir(); +} catch (Horde_Vfs_Exception $e) { + $notification->push($e); +} + +$gollem_vfs = $injector->getInstance('Gollem_Vfs'); +$stream = null; +$data = ''; +try { + if (is_callable(array($gollem_vfs, 'readStream'))) { + $stream = $gollem_vfs->readStream($vars->dir, $vars->file); + } else { + $data = $gollem_vfs->read($vars->dir, $vars->file); + } +} catch (Horde_Vfs_Exception $e) { + Horde::log($e, 'NOTICE'); + throw $e; +} + +$mime_part = new Horde_Mime_Part(); +$mime_part->setType(Horde_Mime_Magic::extToMime($vars->type)); +$mime_part->setContents(is_resource($stream) ? $stream : $data); +$mime_part->setName($vars->file); +// We don't know better. +$mime_part->setCharset('US-ASCII'); + +$ret = $injector + ->getInstance('Horde_Core_Factory_MimeViewer') + ->create($mime_part) + ->render('full'); +reset($ret); +$key = key($ret); +try { + $size = $gollem_vfs->size($vars->dir, $vars->file); +} catch (Horde_Vfs_Exception $e) { + $size = null; +} + +if (empty($ret)) { + $browser->downloadHeaders($vars->file, null, false, $size); + if (is_resource($stream)) { + fseek($stream, 0); + while ($buffer = fread($stream, 8192)) { + echo $buffer; + } + } else { + echo $data; + } +} elseif (strpos($ret[$key]['type'], 'text/html') !== false) { + $page_output->topbar = $page_output->sidebar = false; + $page_output->header(); + echo $ret[$key]['data']; + $page_output->footer(); +} else { + $browser->downloadHeaders($vars->file, $ret[$key]['type'], true, strlen($ret[$key]['data'])); + echo $ret[$key]['data']; +} diff -Nru php-horde-gollem-3.0.8/package.xml php-horde-gollem-3.0.9/package.xml --- php-horde-gollem-3.0.8/package.xml 2016-03-21 19:45:16.000000000 +0000 +++ php-horde-gollem-3.0.9/package.xml 2016-07-01 22:23:21.000000000 +0000 @@ -22,10 +22,10 @@ chuck@horde.org yes - 2016-03-21 - + 2016-07-01 + - 3.0.8 + 3.0.9 3.0.0 @@ -34,7 +34,8 @@ GPL-2.0 -* [jan] Add Greek translation (Limperis Antonis <limperis@cti.gr>). +* [jan] Update Portuguese translation. +* [jan] Update Basque translation. @@ -43,10 +44,10 @@ - - + + - + @@ -60,7 +61,7 @@ - + @@ -85,8 +86,8 @@ - - + + @@ -114,8 +115,8 @@ - - + + @@ -168,7 +169,7 @@ - + @@ -790,5 +791,21 @@ * [jan] Add Greek translation (Limperis Antonis <limperis@cti.gr>). + + + 3.0.9 + 3.0.0 + + + stable + stable + + 2016-07-01 + GPL-2.0 + +* [jan] Update Portuguese translation. +* [jan] Update Basque translation. + +