package.xml0000664000175000017500000007164312171337643011321 0ustar janjan trean pear.horde.org Web-based bookmarks application Trean is a web-based bookmarks application that provides management of browser bookmarks, including support for tagging, link checking, and searching bookmarks. Chuck Hagenbuch chuck chuck@horde.org yes Michael J Rubinsky mrubinsk mrubinsk@horde.org yes Jan Schneider jan jan@horde.org yes 2013-07-16 1.0.3 1.0.0 stable stable BSD-2-Clause * [mjr] Fix some minor issues with crawling bookmarks. * [mjr] Show recently used tags on-demand (Bug #11712). 5.3.0 1.7.0 horde pear.horde.org 5.0.2 6.0.0alpha1 6.0.0alpha1 content pear.horde.org 2.0.1 3.0.0alpha1 3.0.0alpha1 Horde_Autoloader pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Controller pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Core pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Date pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Db pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Exception pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Form pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Autoloader pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Core pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Date pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Db pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Notification pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Perms pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Queue pear.horde.org 1.0.0 2.0.0alpha1 2.0.0alpha1 Horde_Util pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Vfs pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_View pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 gettext json Horde_Browser pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 Horde_Cache pear.horde.org 2.0.0 3.0.0alpha1 3.0.0alpha1 1.0.0beta1 1.0.0 beta beta 2012-11-15 BSD-2-Clause * First beta release for Horde 5. 1.0.0beta2 1.0.0 beta beta 2012-11-27 BSD-2-Clause * [cjh] Add a list of tags to the sidebar. * [cjh] Crawl all bookmarks when they are saved or edited for fulltext searching if elasticsearch is available. * [cjh] Turn search off by default (Bug #11701). * [jan] Allow to set custom SQL parameters. * [jan] Move search box to top menu. 1.0.0RC1 1.0.0 beta beta 2013-01-10 BSD-2-Clause * [cjh] Strip utm_ parameters from incoming bookmarks, and provide a script to strip them from already-saved bookmarks (Request #10751). * [cjh] Implement listTagInfo and searchTags API calls for Trean (Bug #11816). * [cjh] Fix fetching, saving, and display of favicons. 1.0.0 1.0.0 stable stable 2013-02-12 BSD-2-Clause * First stable release for Horde 5. 1.0.1 1.0.0 stable stable 2013-05-07 BSD-2-Clause * [jan] Make Horde_Queue a mandatory dependency. 1.0.2 1.0.0 stable stable 2013-06-12 BSD-2-Clause * [jan] Fix fatal errors in portal blocks (Bug #12303). 1.0.3 1.0.0 stable stable 2013-07-16 BSD-2-Clause * [mjr] Fix some minor issues with crawling bookmarks. * [mjr] Show recently used tags on-demand (Bug #11712). trean-1.0.3/app/controllers/BrowseByTag.php0000664000175000017500000000222412171337642016765 0ustar janjangetPath(); $pathParts = explode('/', $path); $tag = array_pop($pathParts); $tagBrowser = new Trean_TagBrowser($this->getInjector()->getInstance('Trean_Tagger'), $tag); $view = new Trean_View_BookmarkList(null, $tagBrowser); $page_output = $this->getInjector()->getInstance('Horde_PageOutput'); $notification = $this->getInjector()->getInstance('Horde_Notification'); if ($GLOBALS['conf']['content_index']['enabled']) { $topbar = $this->getInjector()->getInstance('Horde_View_Topbar'); $topbar->search = true; $topbar->searchAction = Horde::url('search.php'); } Trean::addFeedLink(); $title = sprintf(_("tagged %s"), $tag); $page_output->header(array( 'title' => $title )); $notification->notify(array('listeners' => 'status')); echo $view->render($title); $page_output->footer(); } } trean-1.0.3/app/controllers/DeleteBookmark.php0000664000175000017500000000225712171337642017473 0ustar janjangetInjector()->getInstance('Trean_Bookmarks'); $notification = $this->getInjector()->getInstance('Horde_Notification'); try { $bookmark = $gateway->getBookmark($id); $gateway->removeBookmark($bookmark); $notification->push(_("Deleted bookmark: ") . $bookmark->title, 'horde.success'); $result = array('data' => 'deleted'); } catch (Trean_Exception $e) { $notification->push(sprintf(_("There was a problem deleting the bookmark: %s"), $e->getMessage()), 'horde.error'); $result = array('error' => $e->getMessage()); } if (Horde_Util::getFormData('format') == 'json') { $response->setContentType('application/json'); $response->setBody(json_encode($result)); } else { $response->setRedirectUrl(Horde_Util::getFormData('url', Horde::url('browse.php', true))); } } } trean-1.0.3/app/controllers/SaveBookmark.php0000664000175000017500000000277512171337642017174 0ustar janjangetInjector()->getInstance('Trean_Bookmarks'); $notification = $this->getInjector()->getInstance('Horde_Notification'); try { $bookmark = $gateway->getBookmark($id); $old_url = $bookmark->url; $bookmark->url = Horde_Util::getFormData('bookmark_url'); $bookmark->title = Horde_Util::getFormData('bookmark_title'); $bookmark->description = Horde_Util::getFormData('bookmark_description'); $bookmark->tags = Horde_Util::getFormData('treanBookmarkTags'); if ($old_url != $bookmark->url) { $bookmark->http_status = ''; } $bookmark->save(); $result = array('data' => 'saved'); } catch (Trean_Exception $e) { $notification->push(sprintf(_("There was an error saving the bookmark: %s"), $e->getMessage()), 'horde.error'); $result = array('error' => $e->getMessage()); } if (Horde_Util::getFormData('format') == 'json') { $response->setContentType('application/json'); $response->setBody(json_encode($result)); } else { $response->setRedirectUrl(Horde_Util::getFormData('url', Horde::url('browse.php', true))); } } } trean-1.0.3/bin/trean-backfill-crawler0000775000175000017500000000204412171337642015747 0ustar janjan#!/usr/bin/env php */ if (file_exists(__DIR__ . '/../../trean/lib/Application.php')) { $baseDir = __DIR__ . '/../'; } else { require_once 'PEAR/Config.php'; $baseDir = PEAR_Config::singleton() ->get('horde_dir', null, 'pear.horde.org') . '/trean/'; } require_once $baseDir . 'lib/Application.php'; Horde_Registry::appInit('trean', array('cli' => true)); $queue = $injector->getInstance('Horde_Queue_Storage'); $ids = $trean_db->selectValues('SELECT bookmark_id FROM trean_bookmarks'); foreach ($ids as $bookmark_id) { $bookmark = $trean_gateway->getBookmark($bookmark_id); $queue->add(new Trean_Queue_Task_Crawl( $bookmark->url, $bookmark->title, $bookmark->description, $bookmark->id, $bookmark->userId )); } trean-1.0.3/bin/trean-backfill-favicons0000775000175000017500000000175412171337642016127 0ustar janjan#!/usr/bin/env php */ if (file_exists(__DIR__ . '/../../trean/lib/Application.php')) { $baseDir = __DIR__ . '/../'; } else { require_once 'PEAR/Config.php'; $baseDir = PEAR_Config::singleton() ->get('horde_dir', null, 'pear.horde.org') . '/trean/'; } require_once $baseDir . 'lib/Application.php'; Horde_Registry::appInit('trean', array('cli' => true)); $queue = $injector->getInstance('Horde_Queue_Storage'); $ids = $trean_db->selectValues('SELECT bookmark_id FROM trean_bookmarks'); foreach ($ids as $bookmark_id) { $bookmark = $trean_gateway->getBookmark($bookmark_id); $queue->add(new Trean_Queue_Task_Favicon( $bookmark->url, $bookmark->id, $bookmark->userId )); } trean-1.0.3/bin/trean-backfill-remove-utm-params0000775000175000017500000000161412171337642017673 0ustar janjan#!/usr/bin/env php */ if (file_exists(__DIR__ . '/../../trean/lib/Application.php')) { $baseDir = __DIR__ . '/../'; } else { require_once 'PEAR/Config.php'; $baseDir = PEAR_Config::singleton() ->get('horde_dir', null, 'pear.horde.org') . '/trean/'; } require_once $baseDir . 'lib/Application.php'; Horde_Registry::appInit('trean', array('cli' => true)); $ids = $trean_db->selectValues('SELECT bookmark_id FROM trean_bookmarks'); foreach ($ids as $bookmark_id) { $bookmark = $trean_gateway->getBookmark($bookmark_id); $bookmark->url = (string)new Trean_Url($bookmark->url); $bookmark->save(false); } trean-1.0.3/bin/trean-url-checker0000775000175000017500000000262712171337642014756 0ustar janjan#!/usr/bin/env php * @author Chuck Hagenbuch */ if (file_exists(__DIR__ . '/../../trean/lib/Application.php')) { $baseDir = __DIR__ . '/../'; } else { require_once 'PEAR/Config.php'; $baseDir = PEAR_Config::singleton() ->get('horde_dir', null, 'pear.horde.org') . '/trean/'; } require_once $baseDir . 'lib/Application.php'; Horde_Registry::appInit('trean', array('cli' => true)); $factory = $injector->getInstance('Horde_Core_Factory_HttpClient'); $params = array('request.redirect' => false); $ids = $trean_db->selectValues('SELECT bookmark_id FROM trean_bookmarks'); foreach ($ids as $bookmark_id) { $bookmark = $trean_gateway->getBookmark($bookmark_id); try { $response = $factory->create($params)->head($bookmark->url); } catch (Horde_Http_Exception $e) { $bookmark->http_status = 'error'; continue; } $bookmark->http_status = $response->code; // If we've been redirected, update the bookmark's URL. if ($location = $response->getHeader('Location') && $location != $bookmark->url) { $bookmark->url = $location; } $bookmark->save(false); } trean-1.0.3/config/.htaccess0000644000175000017500000000001612171337642013774 0ustar janjanDeny from all trean-1.0.3/config/conf.xml0000664000175000017500000000205012171337642013647 0ustar janjan Storage System Settings sql Content Indexing/Search Search support uses the Content application, and currently requires an ElasticSearch cluster accessible by Horde at the default port of localhost:9200. If you don't have that, don't turn content indexing/search on. false Virtual File Storage trean-1.0.3/config/prefs.php0000664000175000017500000000251412171337642014035 0ustar janjan _("Other Preferences"), 'label' => _("Display Preferences"), 'desc' => _("Set how to display bookmark listings and how to open links."), 'members' => array('sortby', 'sortdir', 'show_in_new_window') ); // bookmark sort order $_prefs['sortby'] = array( 'value' => 'dt', 'locked' => false, 'type' => 'enum', 'enum' => array( 'title' => _("Title"), 'clicks' => _("Most Clicked"), 'dt' => _("Bookmarked on"), ), 'desc' => _("Sort bookmarks by:"), ); // user preferred sorting direction $_prefs['sortdir'] = array( 'value' => 1, 'locked' => false, 'type' => 'enum', 'enum' => array(0 => _("Ascending (A to Z or oldest to newest)"), 1 => _("Descending (9 to 1 or newest to oldest)")), 'desc' => _("Sort direction:"), ); // Open links in new windows? $_prefs['show_in_new_window'] = array( 'value' => 1, 'locked' => false, 'type' => 'checkbox', 'desc' => _("Open links in a new window?") ); trean-1.0.3/config/routes.php0000664000175000017500000000046212171337642014237 0ustar janjanconnect('/b/save', array( 'controller' => 'SaveBookmark', )); $mapper->connect('/b/delete', array( 'controller' => 'DeleteBookmark', )); $mapper->connect('/tag/:tag', array( 'controller' => 'BrowseByTag', )); trean-1.0.3/docs/CHANGES0000600000175000017500000001227612171337642012657 0ustar janjan------ v1.0.3 ------ [mjr] Fix some minor issues with crawling bookmarks. [mjr] Show recently used tags on-demand (Bug #11712). ------ v1.0.2 ------ [jan] Fix fatal errors in portal blocks (Bug #12303). ------ v1.0.1 ------ [jan] Make Horde_Queue a mandatory dependency. ------ v1.0.0 ------ [cjh] Strip utm_ parameters from incoming bookmarks, and provide a script to strip them from already-saved bookmarks (Request #10751). [cjh] Implement listTagInfo and searchTags API calls for Trean (Bug #11816). [cjh] Fix fetching, saving, and display of favicons. ----------- v1.0.0beta2 ----------- [cjh] Add a list of tags to the sidebar. [cjh] Crawl all bookmarks when they are saved or edited for fulltext searching if elasticsearch is available. [cjh] Turn search off by default (Bug #11701). [jan] Allow to set custom SQL parameters. [jan] Move search box to top menu. ----------- v1.0.0beta1 ----------- [jan] Merge tag browser into bookmark listing. [mjr] Add tagging support. [cjh] Remove folders. [cjh] Remove star ratings. [jan] Provide default configuration files instead of .dist versions. [jan] Enable output compression (horde@albasoft.com, Bug #8649). [cjh] Check folder name as well as id for the pre-selected folder (Duck , Bug #7627). [jan] Add Turkish translation (METU ). [cjh] Add Latvian translation (Janis ). [cjh] Support for Firefox plugin that shows Trean bookmarks in the browser (joey@joeyhewitt.com, Request #2565). [jan] Add Polish translation (Piotr Adamcio ). [cjh] Use YUI Grids CSS to lay out the browse grid, which wrangles IE into honoring our layout even when the screen is narrow (Bug #5385). [cjh] Force folder deletion to be a POST request, and add a confirmation dialog. [cjh] Fix adding bookmarks to a new folder (panni@fragstore.net, Bug #5068). [cjh] Add RSS feed (Duck , Request #1927). [cjh] Bookmark ratings can now be changed via a dynamic, CSS-based star rater that saves new ratings but degrades to a real link without JavaScript. [cjh] Add blocks for highest-rated and most-clicked bookmarks. [cjh] Add a preference for how to sort bookmarks (Request #2510). [cjh] Move bookmarks from DataTree storage to a SQL table. [cjh] Give Trean its own Share implementation for now as hierarchical shares are being removed from the main Horde_Share class. [cjh] Implement iframe-based bookmarklet for bookmarking the current page without a popup window. [jan] Add Slovenian translation (Duck ). [ben] Rename "categories" to "folders" to avoid confusion with Horde Categories. [ben] Add a selection box to jump to a categories (simular to IMP's folder selection). [ben] New UI, moved away from the category tree. [jan] Add Dutch translation (Han Spruyt ). [ben] Allow creating a new category when adding/editing a bookmark. [jan] Add permissions to restrict number of categories and bookmarks. [ben] Extend Block to show most popular links in a share. [ben] Allow bookmark ranking. [ben] Use the standard search results interface for the reports drill-down screens. [ben] Include standard editing controls in the search results screen. [ben] Show bookmark's parent category in the search results screen. [ben] Add cron script to check for broken links and retrieve favicons. [ben] Add Horde_Share support. [cjh] Fix links to click-tracking script when user has cookies disabled (Bug #1675). [cjh] Fix bookmark export (Bug #1672). [jan] Add Norwegian Bokmaal translation (Odd Marthon Lende ). [ben] Use datatree parent/child relationships. [cjh] Add a preference for how much of the category tree to expand on initial view (Bug #566). [cjh] Use DataTree attributes (Ben Chavet ). [jan] Add Spanish translation (Manuel Perez Ayala ). [cjh] Add a Horde_Block for showing bookmark categories (Joel Vandal ). [jan] Add Finnish translation (Leena Heino ). [jan] Add French translation (Raphaël Jeudy ). [jan] Add German translation. [cjh] Bookmarks in search results are now editable/deletable. [cjh] Add deletion of bookmark categories (Arne Gellhaus ). [cjh] Don't show Add Bookmark links when there are no categories to add to (Michal ). [cjh] Add a preference for opening links in a new window (Hubert Yeh ). [cjh] Searching works again after new categories code. [cjh] Fully implement editing. [mac] Don't show My Bookmark category on the add screen (Chris Albertson ). [mac] Cleanup the note at the bottom of the add screen (Chris Albertson ). [mac] Don't show the New Bookmark link for the root category (Chris Albertson ). [jan] Add Traditional Chinese translation (Chih-Wei Yeh ). [mac] Update for new categories code (Chris Albertson ). [mac] Add Edit and Delete options. [jan] Add Swedish translation (Andreas Dahlén ). [mac] Initial Trean Version. trean-1.0.3/docs/CREDITS0000664000175000017500000000302712171337642012710 0ustar janjan======================== Trean Development Team ======================== Core Developers =============== - Chuck Hagenbuch - Michael J. Rubinsky - Jan Schneider Localization ============ ===================== ====================================================== Chinese (Traditional) Chih-Wei Yeh David Chang Dutch Han Spruyt Finnish Leena Heino French Raphaël Jeudy German Jan Schneider Italian Sergio G. Caredda Marko Djukic Marco Pirovano Latvian Janis Eisaks Norwegian Bokmaal Odd Marthon Lende Polish Piotr Adamcio Slovenian Duck Spanish Manuel Perez Ayala Juan C. Blanco Swedish Andreas Dahlén Turkish Middle East Technical University ===================== ====================================================== Inactive Developers =================== - Mike Cochrane - original code - Ben Chavet trean-1.0.3/docs/INSTALL0000664000175000017500000001143712171337642012725 0ustar janjan===================== Installing Trean H5 ===================== :Contact: horde@lists.horde.org .. contents:: Contents .. section-numbering:: This document contains instructions for installing the Trean web-based bookmarks application on your system. For information on the capabilities and features of Trean, see the file README_ in the top-level directory of the Trean distribution. Prerequisites ============= To function properly, Trean **requires** the following: 1. A working Horde installation. Trean runs within the `Horde Application Framework`_, a set of common tools for web applications written in PHP. You must install Horde before installing Trean. .. Important:: Trean 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 Trean. Many of Trean's prerequisites are also Horde prerequisites. Additionally, many of Trean's optional features are configured via the Horde install. .. _`Horde Application Framework`: http://www.horde.org/apps/horde The following non-PHP prerequisites are **RECOMMENDED**: 1. ElasticSearch server. An ElasticSearch_ server or cluster running on localhost can be used to provide indexing of bookmarks data and quick searching of the indexed content. .. _ElasticSearch: http://www.elasticsearch.org/ Installing Trean ================ The **RECOMMENDED** way to install Trean 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 Trean 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 Trean through PEAR now, the installer will automatically install any dependencies of Trean too. If you want to install Trean 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/trean By default, only the required dependencies will be installed:: pear install horde/trean If you want to install Trean 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/trean Installing from Git ~~~~~~~~~~~~~~~~~~~ See http://www.horde.org/source/git.php Configuring Trean ================= 1. Configuring Trean To configure Trean, you must login to Horde as a Horde Administrator. 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 ``Bookmarks`` from the selection list of applications, and click on the ``Configure`` button. Fill in or change any configuration values as needed. When done click on ``Generate Bookmarks Configuration`` to generate the ``conf.php`` file. If your web server doesn't have write permissions to the Trean 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 ``trean/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 Trean'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 Trean, 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 Trean is free software written by volunteers. For information on reasonable support expectations, please read http://www.horde.org/community/support Thanks for using Trean! The Trean team .. _README: README .. _`horde/docs/INSTALL`: ../../horde/docs/INSTALL .. _`horde/docs/TRANSLATIONS`: ../../horde/docs/TRANSLATIONS trean-1.0.3/docs/lighttpd-trean.conf0000664000175000017500000000117312171337642015465 0ustar janjan## This file should be reviewed prior to inclusion in your lighttpd ## configuration. Specifically, if you have horde somewhere other than ## /horde you will need to edit the following rules to match your server ## configuration. ## This file should be included in your lighttpd.conf file with the "include" ## directive. Example: ## include "path/to/lighttpd-trean.conf" ## The exact path you use will of course depend on your specific configuration. url.rewrite-once += ( ## Rampage Rewrite Rules "^/horde/trean/b/(.*)$" => "/horde/rampage.php/$1", "^/horde/trean/tag/(.*)$" => "/horde/rampage.php/$1" ) trean-1.0.3/docs/RELEASE_NOTES0000664000175000017500000000312612171337642013643 0ustar janjannotes['fm']['focus'] = array(Horde_Release::FOCUS_MINORBUG, Horde_Release::FOCUS_MINORFEATURE); /* Mailing list release notes. */ $this->notes['ml']['changes'] = <<notes['fm']['changes'] = <<notes['name'] = 'Trean'; $this->notes['list'] = 'horde'; $this->notes['fm']['project'] = 'trean'; $this->notes['fm']['branch'] = 'Horde 5'; trean-1.0.3/js/toptags.js0000664000175000017500000000125412171337642013373 0ustar janjanvar TreanTopTags = { loadTags: function(r) { $('loadTags').hide(); var t = new Element('ul', { className: 'horde-tags' }); r.tags.each(function(tag) { if (tag == null) { return; } var item = new Element('li', { className: 'treanBookmarkTag' }).update(tag.escapeHTML()); item.observe('click', function() { TreanTopTags.add(tag); }); t.insert(item); }); $('treanBookmarkTopTags').update(t); new Effect.Appear($('treanTopTagsWrapper')); }, add: function(tag) { HordeImple.AutoCompleter.treanBookmarkTags.addNewItemNode(tag); } }trean-1.0.3/lib/Ajax/Imple/TagAutoCompleter.php0000664000175000017500000000213412171337642017365 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class Trean_Ajax_Imple_TagAutoCompleter extends Horde_Core_Ajax_Imple_AutoCompleter { /** */ protected function _getAutoCompleter() { $opts = array(); foreach (array('box', 'triggerContainer', 'existing', 'boxClass') as $val) { if (isset($this->_params[$val])) { $opts[$val] = $this->_params[$val]; } } return empty($this->_params['pretty']) ? new Horde_Core_Ajax_Imple_AutoCompleter_Ajax($opts) : new Horde_Core_Ajax_Imple_AutoCompleter_Pretty($opts); } /** */ protected function _handleAutoCompleter($input) { $tagger = new Trean_Tagger(); return array_values($tagger->listTags($input)); } } trean-1.0.3/lib/Ajax/Imple/TopTags.php0000664000175000017500000000333512171337642015533 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class Trean_Ajax_Imple_TopTags extends Horde_Core_Ajax_Imple { /** * Attach the object to a javascript event. * * @param boolean $init Is this the first time this imple has been * initialized? * * @return mixed An array of javascript parameters. If false, the imple * handler will ignore this instance (calling code will be * responsible for calling imple endpoint). */ protected function _attach($init) { if ($init) { $this->_jsOnComplete('TreanTopTags.loadTags(e.memo)'); $GLOBALS['page_output']->addScriptFile('toptags.js'); $GLOBALS['page_output']->addScriptFile('scriptaculous/effects.js', 'horde'); } return array('imple' => 'TopTags'); } /** * Imple handler. * * @param Horde_Variables $vars A variables object. * * @return stdClass The top 10 most popular tags for the current user. */ protected function _handle(Horde_Variables $vars) { $tagger = new Trean_Tagger(); $result = new stdClass(); $result->tags = array(); $tags = $tagger->getCloud( $GLOBALS['registry']->getAuth(), 10, true); foreach ($tags as $tag) { $results->tags[] = $tag['tag_name']; } return $results; } } trean-1.0.3/lib/Ajax/Application.php0000664000175000017500000000116412171337642015345 0ustar janjan * @category Horde * @package Trean */ class Trean_Ajax_Application extends Horde_Core_Ajax_Application { /** */ protected function _init() { $this->addHandler('Horde_Core_Ajax_Application_Handler_Imple'); $this->addHandler('Horde_Core_Ajax_Application_Handler_Prefs'); } } trean-1.0.3/lib/Block/Bookmarks.php0000664000175000017500000000505112171337642015200 0ustar janjan */ class Trean_Block_Bookmarks extends Horde_Core_Block { /** */ public function __construct($app, $params = array()) { parent::__construct($app, $params); $this->_name = _("Bookmarks"); } /** */ protected function _params() { return array( 'bookmarks' => array( 'name' => _("Sort by"), 'type' => 'enum', 'default' => 'title', 'values' => array( 'title' => _("Title"), 'most_clicked' => _("Most Clicked") ) ), 'rows' => array( 'name' => _("Display Rows"), 'type' => 'enum', 'default' => '10', 'values' => array( '10' => _("10 rows"), '15' => _("15 rows"), '25' => _("25 rows") ) ), 'template' => array( 'name' => _("Template"), 'type' => 'enum', 'default' => '1line', 'values' => array( 'standard' => _("3 Line"), '2line' => _("2 Line"), '1line' => _("1 Line") ) ) ); } /** */ protected function _title() { global $registry; return Horde::url($registry->getInitialPage(), true)->link() . _("Bookmarks") . ''; } /** */ protected function _content() { $template = TREAN_TEMPLATES . '/block/' . $this->_params['template'] . '.inc'; $sortby = 'title'; $sortdir = 0; switch ($this->_params['bookmarks']) { case 'most_clicked': $sortby = 'clicks'; $sortdir = 1; break; } $html = ''; $bookmarks = $GLOBALS['trean_gateway']->listBookmarks($sortby, $sortdir, 0, $this->_params['rows']); foreach ($bookmarks as $bookmark) { ob_start(); require $template; $html .= '
' . ob_get_clean() . '
'; } if (!$bookmarks) { return '

' . _("No bookmarks to display") . '

'; } return $html; } } trean-1.0.3/lib/Block/Mostclicked.php0000664000175000017500000000407012171337642015511 0ustar janjan */ class Trean_Block_Mostclicked extends Horde_Core_Block { /** */ public function __construct($app, $params = array()) { parent::__construct($app, $params); $this->_name = _("Most-clicked Bookmarks"); } /** */ protected function _params() { return array( 'rows' => array( 'name' => _("Number of bookmarks to show"), 'type' => 'enum', 'default' => '10', 'values' => array( '10' => _("10 rows"), '15' => _("15 rows"), '25' => _("25 rows") ) ), 'template' => array( 'name' => _("Template"), 'type' => 'enum', 'default' => '1line', 'values' => array( 'standard' => _("3 Line"), '2line' => _("2 Line"), '1line' => _("1 Line") ) ) ); } /** */ protected function _title() { return Horde::url($GLOBALS['registry']->getInitialPage(), true)->link() . $this->getName() . ''; } /** */ protected function _content() { $template = TREAN_TEMPLATES . '/block/' . $this->_params['template'] . '.inc'; $html = ''; $bookmarks = $GLOBALS['trean_gateway']->listBookmarks('clicks', 1, 0, $this->_params['rows']); foreach ($bookmarks as $bookmark) { ob_start(); require $template; $html .= '
' . ob_get_clean() . '
'; } if (!$bookmarks) { return '

' . _("No bookmarks to display") . '

'; } return $html; } } trean-1.0.3/lib/Queue/Task/Crawl.php0000664000175000017500000000713112171337642015255 0ustar janjan_url = $url; $this->_userTitle = $userTitle; $this->_userDesc = $userDesc; $this->_bookmarkId = $bookmarkId; $this->_userId = $userId; } /** */ public function run() { $injector = $GLOBALS['injector']; // Get Horde_Http_Client $client = $injector->getInstance('Horde_Http_Client'); // Fetch full text of $url try { $page = $client->get($this->_url); $body = $page->getBody(); } catch (Horde_Http_Exception $e) { Horde::log($e, 'ERR'); return; } $gateway = $injector->getInstance('Trean_Bookmarks'); $bookmark = $gateway->getBookmark($this->_bookmarkId); $changed = false; // update URL if we were redirected if ($page->uri && ($page->uri != $this->_url)) { $bookmark->url = $page->uri; $this->_url = $page->uri; $changed = true; } // update bookmark_http_status if ($bookmark->http_status != $page->code) { $bookmark->http_status = $page->code; $changed = true; } // submit text to ElasticSearch, under $userId's index if ($body && $page->code == 200) { try { $indexer = $injector->getInstance('Content_Indexer'); $indexer->index('horde-user-' . $this->_userId, 'trean-bookmark', $this->_bookmarkId, json_encode(array( 'title' => $this->_userTitle, 'description' => $this->_userDesc, 'url' => $this->_url, 'headers' => $page->headers, 'body' => $body, ))); } catch (Exception $e) { Horde::log($e, 'INFO'); } } if ($changed) { $bookmark->save(false); } // @TODO: crawl resources from the page to make a fully local version // (http://bugs.horde.org/ticket/10753) // Favicon if ($body) { if ($type = $page->getHeader('Content-Type') && preg_match('/.*;\s*charset="?([^" ]*)/', $type, $match)) { $charset = $match[1]; } else { $charset = null; } try { $queue = $injector->getInstance('Horde_Queue_Storage'); $queue->add(new Trean_Queue_Task_Favicon( $this->_url, $this->_bookmarkId, $this->_userId, $body, $charset )); } catch (Exception $e) { Horde::log($e, 'INFO'); } } } } trean-1.0.3/lib/Queue/Task/Favicon.php0000664000175000017500000001256112171337642015575 0ustar janjan_url = $url; $this->_bookmarkId = $bookmarkId; $this->_userId = $userId; $this->_body = $body; $this->_charset = $charset; } /** */ public function run() { $injector = $GLOBALS['injector']; $client = $injector->getInstance('Horde_Http_Client'); if (!$this->_body) { // Fetch full text of $url try { $page = $client->get($this->_url); $this->_body = $page->getBody(); if ($type = $page->getHeader('Content-Type') && preg_match('/.*;\s*charset="?([^" ]*)/', $type, $match)) { $this->_charset = $match[1]; } } catch (Horde_Http_Exception $e) { } } $url = parse_url($this->_url); if ($favicon = $this->_findByRel($client, $url, $this->_body, $this->_charset)) { $this->_storeFavicon($favicon); } elseif ($favicon = $this->_findByRoot($client, $url)) { $this->_storeFavicon($favicon); } elseif ($favicon = $this->_findByPath($client, $url)) { $this->_storeFavicon($favicon); } } /** * @param Horde_Http_Response_Base $response HTTP response; body of this is the favicon */ protected function _storeFavicon(Horde_Http_Response_Base $response) { global $injector; $gateway = $injector->getInstance('Trean_Bookmarks'); $bookmark = $gateway->getBookmark($this->_bookmarkId); if ($bookmark) { $bookmark->favicon_url = $response->uri; $bookmark->save(false); } // Initialize VFS $vfs = $GLOBALS['injector'] ->getInstance('Horde_Core_Factory_Vfs') ->create(); $vfs->writeData('.horde/trean/favicons/', md5($bookmark->favicon_url), $response->getBody(), true); } protected function _findByRel($client, $url, $body, $charset) { try { $dom = new Horde_Domhtml($body, $charset); foreach ($dom as $node) { if ($node instanceof DOMElement && Horde_String::lower($node->tagName) == 'link' && ($rel = Horde_String::lower($node->getAttribute('rel'))) && ($rel == 'shortcut icon' || $rel == 'icon')) { $favicon = $node->getAttribute('href'); // Make sure $favicon is a full URL. $favicon_url = parse_url($favicon); if (empty($favicon_url['scheme'])) { if (substr($favicon, 0, 1) == '/') { $favicon = $url['scheme'] . '://' . $url['host'] . $favicon; } else { $path = pathinfo($url['path']); $favicon = $url['scheme'] . '://' . $url['host'] . $path['dirname'] . '/' . $favicon; } } try { $response = $client->get($favicon); if ($this->_isValidFavicon($response)) { return $response; } } catch (Horde_Http_Exception $e) { } } } } catch (Exception $e) { } } protected function _findByRoot($client, $url) { try { $response = $client->get($url['scheme'] . '://' . $url['host'] . '/favicon.ico'); if ($this->_isValidFavicon($response)) { return $response; } } catch (Horde_Http_Exception $e) { } } protected function _findByPath($client, $url) { if (isset($url['path'])) { $path = pathinfo($url['path']); if (strlen($path['dirname'])) { try { $response = $client->get($url['scheme'] . '://' . $url['host'] . $path['dirname'] . '/favicon.ico'); if ($this->_isValidFavicon($response)) { return $response; } } catch (Horde_Http_Exception $e) { } } } } protected function _isValidFavicon($response) { return ($response->code == 200) && (substr($response->getHeader('content-type'), 0, 5) == 'image') && (strlen($response->getBody()) > 0); } } trean-1.0.3/lib/View/BookmarkList.php0000664000175000017500000001474712171337642015545 0ustar janjan * @package Trean */ class Trean_View_BookmarkList { /** * Tag Browser * * @var Trean_TagBrowser */ protected $_browser; /** * The loaded bookmarks. * * @var array */ protected $_bookmarks; /** * Current page * * @var int */ protected $_page = 0; /** * Bookmarks to display per page * * @var int */ protected $_perPage = 999; /** * Flag to indicate we have an empty search. * * @var boolean */ protected $_noSearch = false; /** * Flag to indicate whether or not to show the tag browser * @var boolean */ protected $_showTagBrowser = true; /** * Const'r * */ public function __construct($bookmarks = null, $browser = null) { $this->_bookmarks = $bookmarks; if ($browser) { $this->_browser = $browser; } else { $this->_browser = new Trean_TagBrowser( $GLOBALS['injector']->getInstance('Trean_Tagger')); } $action = Horde_Util::getFormData('actionID', ''); switch ($action) { case 'remove': $tag = Horde_Util::getFormData('tag'); if (isset($tag)) { $this->_browser->removeTag($tag); $this->_browser->save(); } break; case 'add': default: // Add new tag to the stack, save to session. $tag = Horde_Util::getFormData('tag'); if (isset($tag)) { $this->_browser->addTag($tag); $this->_browser->save(); } } // Check for empty tag search.. then do what? $this->_noSearch = $this->_browser->tagCount() < 1; } /** * Toggle showing of the tag browser */ public function showTagBrowser($showTagBrowser) { $this->_showTagBrowser = $showTagBrowser; } /** * Returns whether bookmarks currently exist. * * @return boolean True if there exist any bookmarks in the backend. */ public function hasBookmarks() { $this->_getBookmarks(); return (bool)count($this->_bookmarks) || (bool)$this->_browser->tagCount(); } /** * Renders the view. */ public function render($title = null) { if (is_null($title)) { $title = _("Bookmarks"); } $this->_getBookmarks(); $browser = ''; if ($this->_showTagBrowser) { $browser = '
' . $this->_getRelatedTags() . $this->_getTagTrail(); } return '

' . $title . '

' . $browser . $this->_getBookmarkList(); } /** * Loads the bookmarks from the backend. */ protected function _getBookmarks() { if (!is_null($this->_bookmarks)) { return; } // @TODO: paging if ($this->_noSearch) { $this->_bookmarks = $GLOBALS['trean_gateway'] ->listBookmarks( $GLOBALS['prefs']->getValue('sortby'), $GLOBALS['prefs']->getValue('sortdir'), $this->_page, $this->_perPage); } else { $this->_bookmarks = $this->_browser->getSlice($this->_page, $this->_perPage); } } /** * Returns the HTML to display a bookmark list. * * @param array $bookmarks A list of bookmarks. * * @return string Bookmark list HTML. */ protected function _getBookmarkList() { $GLOBALS['page_output']->addScriptFile('tables.js', 'horde'); $view = $GLOBALS['injector']->createInstance('Horde_View'); $view->bookmarks = $this->_bookmarks; $view->target = $GLOBALS['prefs']->getValue('show_in_new_window') ? '_blank' : ''; $view->redirectUrl = Horde::url('redirect.php'); $view->sortby = $GLOBALS['prefs']->getValue('sortby'); $view->sortdir = $GLOBALS['prefs']->getValue('sortdir'); $view->sortdirclass = $view->sortdir ? 'sortup' : 'sortdown'; return $view->render('list'); } /** * Get HTML to display the related tags links. * * @return string */ protected function _getRelatedTags() { $uids = array(); foreach ($this->_bookmarks as $bookmark) { $uids[] = (string)$bookmark->id; } $rtags = $this->_browser->getRelatedTags($uids); if (count($rtags)) { $html = ''; } return ''; } /** * Get HTML to represent the currently selected tags. * * @return string */ protected function _getTagTrail() { if ($this->_browser->tagCount() >= 1) { $html = '
' . Horde::img('filter.png') . '
    '; foreach ($this->_browser->getTags() as $tag => $id) { $html .= '
  • ' . htmlspecialchars($tag) . $this->_linkRemoveTag($tag)->link() . Horde::img('delete-small.png', _("Remove from search")) . '
  • '; } return $html .= '
'; } return ''; } /** * Get HTML for a link to remove a tag from the current search. * * @param string $tag The tag we want the link for. * * @return string */ protected function _linkRemoveTag($tag) { return Horde::url('browse.php') ->add(array('actionID' => 'remove', 'tag' => $tag)); } /** * Get HTML for a link to add a new tag to the current search. * * @param string $tag The tag we want to add. * * @return string */ protected function _linkAddTag($tag) { return Horde::url('browse.php')->add(array('tag' => $tag)); } } trean-1.0.3/lib/Api.php0000664000175000017500000001433112171337642012730 0ustar janjan */ class Trean_Api extends Horde_Registry_Api { /** * Delete a given bookmark. * * @param integer $bookmarkId The ID of the bookmark to delete */ public function deleteBookmark($bookmarkId) { $bookmark = $GLOBALS['trean_gateway']->getBookmark($bookmarkId); $GLOBALS['trean_gateway']->removeBookmark($bookmark); } /** * Delete multiple bookmarks. * * @param array $bookmarkIds The IDs of the bookmarks to delete */ public function deleteBookmarks($bookmarkIds) { foreach ($bookmarkIds as $bookmarkId) { $this->deleteBookmark($bookmarkId); } } /** * Retrieve the list of used tag_names, tag_ids and the total number * of resources that are linked to that tag. * * @param array $tags An optional array of tag_ids. If omitted, all tags * will be included. * @param string $user Restrict result to those tagged by $user. * * @return array An array containing tag_name, and total */ public function listTagInfo($tags = null, $user = null) { return $GLOBALS['injector'] ->getInstance('Trean_Tagger')->getTagInfo($tags, 500, null, $user); } /** * SearchTags API: * Returns an application-agnostic array (useful for when doing a tag search * across multiple applications) * * The 'raw' results array can be returned instead by setting $raw = true. * * @param array $names An array of tag_names to search for. * @param integer $max The maximum number of resources to return. * @param integer $from The number of the resource to start with. * @param string $resource_type The resource type [bookmark, ''] * @param string $user Restrict results to resources owned by $user. * @param boolean $raw Return the raw data? * * @return array An array of results: *
     *  'title'    - The title for this resource.
     *  'desc'     - A terse description of this resource.
     *  'view_url' - The URL to view this resource.
     *  'app'      - The Horde application this resource belongs to.
     * 
*/ public function searchTags($names, $max = 10, $from = 0, $resource_type = '', $user = null, $raw = false) { // TODO: $max, $from, $resource_type not honored $results = $GLOBALS['injector'] ->getInstance('Trean_Tagger') ->search( $names, array('type' => 'bookmark', 'user' => $user)); // Check for error or if we requested the raw data array. if ($raw) { return $results; } $return = array(); $redirectUrl = Horde::url('redirect.php'); foreach ($results as $bookmark_id) { try { $bookmark = $GLOBALS['trean_gateway']->getBookmark($bookmark_id); $return[] = array( 'title' => $bookmark->title, 'desc' => $bookmark->description, 'view_url' => $redirectUrl->add('b', $bookmark->id), 'app' => 'trean', ); } catch (Exception $e) { } } return $return; } /** * Returns a URL that can be used in other applications to add the currently * displayed page as a bookmark. If javascript and DOM is available, an overlay * is used, if javascript and no DOM, then a pop-up is used and if no javascript * is available a URL to Trean's add.php page is returned. * * @param array $params A hash of 'url' and 'title' properties of the requested * bookmark. * @return string The URL suitable for use in a tag. */ public function getAddUrl($params = array()) { $GLOBALS['no_compress'] = true; $browser = $GLOBALS['injector']->getInstance('Horde_Browser'); if ($browser->hasFeature('javascript')) { if ($browser->hasFeature('dom')) { $addurl = Horde::url('add.php', true, -1)->add('iframe', 1); $url = "javascript:(function(){o=document.createElement('div');o.id='overlay';o.style.background='#000';o.style.position='absolute';o.style.top=0;o.style.left=0;o.style.width='100%';o.style.height='100%';o.style.zIndex=5000;o.style.opacity=.8;document.body.appendChild(o);i=document.createElement('iframe');i.id='frame';i.style.zIndex=5001;i.style.border='thin solid #000';i.src='$addurl'+'&title=' + encodeURIComponent(document.title) + '&url=' + encodeURIComponent(location.href);i.style.position='absolute';i.style.width='350px';i.style.height='150px';i.style.left='100px';i.style.top='100px';document.body.appendChild(i);l=document.createElement('a');l.style.position='absolute';l.style.background='#ccc';l.style.color='#000';l.style.border='thin solid #000';l.style.display='block';l.style.top='250px';l.style.left='100px';l.style.zIndex=5001;l.style.padding='5px';l.appendChild(document.createTextNode('" . _("Close") . "'));l.onclick=function(){var o=document.getElementById('overlay');o.parentNode.removeChild(o);var i=document.getElementById('frame');i.parentNode.removeChild(i);this.parentNode.removeChild(this);};document.body.appendChild(l);})()"; } else { $addurl = Horde::url('add.php', true, -1)->add('popup', 1); $url = "javascript:d = new Date(); w = window.open('$addurl' + '&title=' + encodeURIComponent(document.title) + '&url=' + encodeURIComponent(location.href) + '&d=' + d.getTime(), d.getTime(), 'height=200,width=400'); w.focus();"; } } else { // Fallback to a regular URL $url = Horde::url('add.php', true)->add($params); } return $url; } } trean-1.0.3/lib/Application.php0000664000175000017500000000701112171337643014460 0ustar janjan */ /* Determine the base directories. */ if (!defined('TREAN_BASE')) { define('TREAN_BASE', __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(TREAN_BASE . '/config/horde.local.php')) { include TREAN_BASE . '/config/horde.local.php'; } else { define('HORDE_BASE', TREAN_BASE . '/..'); } } /* Load the Horde Framework core (needed to autoload * Horde_Registry_Application::). */ require_once HORDE_BASE . '/lib/core.php'; class Trean_Application extends Horde_Registry_Application { /** */ public $version = 'H5 (1.0.3)'; /** * Global variables defined: * - $trean_db: Horde_Db object * - $trean_gateway: Trean_Bookmarks object */ protected function _init() { /* For now, autoloading the Content_* classes depend on there being a * registry entry for the 'content' application that contains at least * the fileroot entry. */ $GLOBALS['injector']->getInstance('Horde_Autoloader') ->addClassPathMapper(new Horde_Autoloader_ClassPathMapper_Prefix( '/^Content_/', $GLOBALS['registry']->get('fileroot', 'content') . '/lib/' )); if (!class_exists('Content_Tagger')) { throw new Horde_Exception('The Content_Tagger class could not be found. Make sure the Content application is installed.'); } // Set the timezone variable. $GLOBALS['registry']->setTimeZone(); // Create db and gateway instances. $GLOBALS['trean_db'] = $GLOBALS['injector'] ->getInstance('Horde_Core_Factory_Db') ->create('trean', 'storage'); $GLOBALS['trean_gateway'] = $GLOBALS['injector'] ->getInstance('Trean_Bookmarks'); } /** */ public function perms() { return array( 'max_bookmarks' => array( 'title' => _("Maximum Number of Bookmarks"), 'type' => 'int' ), ); } /** */ public function menu($menu) { $menu->add(Horde::url('browse.php'), _("_Browse"), 'trean-browse', null, null, null, basename($_SERVER['PHP_SELF']) == 'index.php' ? 'current' : null); } /** * Add additional items to the sidebar. * * @param Horde_View_Sidebar $sidebar The sidebar object. */ public function sidebar($sidebar) { $sidebar->addNewButton(_("_New Bookmark"), Horde::url('add.php')); $sidebar->containers['tags'] = array( 'header' => array( 'id' => 'trean-toggle-tags', 'label' => _("Tags"), 'collapsed' => false, ), ); $tagger = $GLOBALS['injector']->getInstance('Trean_Tagger'); $tags = $tagger->listBookmarkTags(); natcasesort($tags); foreach ($tags as $tag) { $url = Horde::url("tag/$tag"); $row = array( 'url' => $url, 'cssClass' => 'trean-tag', 'label' => $tag, ); $sidebar->addRow($row, 'tags'); } } } trean-1.0.3/lib/Bookmark.php0000664000175000017500000001066012171337643013766 0ustar janjan * @package Trean */ class Trean_Bookmark { public $id = null; public $userId = null; public $url = null; public $title = ''; public $description = ''; public $clicks = 0; public $http_status = null; public $favicon_url; public $dt; public $tags = array(); /** */ public function __construct($bookmark = array()) { if ($bookmark) { $this->userId = $bookmark['user_id']; $this->url = $bookmark['bookmark_url']; $this->title = $bookmark['bookmark_title']; $this->description = $bookmark['bookmark_description']; if (!empty($bookmark['bookmark_id'])) { $this->id = (int)$bookmark['bookmark_id']; } if (!empty($bookmark['bookmark_clicks'])) { $this->clicks = (int)$bookmark['bookmark_clicks']; } if (!empty($bookmark['bookmark_http_status'])) { $this->http_status = $bookmark['bookmark_http_status']; } if (!empty($bookmark['favicon_url'])) { $this->favicon_url = $bookmark['favicon_url']; } if (!empty($bookmark['bookmark_dt'])) { $this->dt = $bookmark['bookmark_dt']; } if (!empty($bookmark['bookmark_tags'])) { $this->tags = $bookmark['bookmark_tags']; } } } /** * Save bookmark. */ public function save($crawl = true) { if (!strlen($this->url)) { throw new Trean_Exception('Incomplete bookmark'); } $charset = $GLOBALS['trean_db']->getOption('charset'); $c_url = Horde_String::convertCharset($this->url, 'UTF-8', $charset); $c_title = Horde_String::convertCharset($this->title, 'UTF-8', $charset); $c_description = Horde_String::convertCharset($this->description, 'UTF-8', $charset); $c_favicon_url = Horde_String::convertCharset($this->favicon_url, 'UTF-8', $charset); if ($this->id) { // Update an existing bookmark. $GLOBALS['trean_db']->update(' UPDATE trean_bookmarks SET user_id = ?, bookmark_url = ?, bookmark_title = ?, bookmark_description = ?, bookmark_clicks = ?, bookmark_http_status = ?, favicon_url = ? WHERE bookmark_id = ?', array( $this->userId, $c_url, $c_title, $c_description, $this->clicks, $this->http_status, $c_favicon_url, $this->id, )); $GLOBALS['injector']->getInstance('Trean_Tagger')->replaceTags((string)$this->id, $this->tags, $GLOBALS['registry']->getAuth(), 'bookmark'); } else { // Saving a new bookmark. $bookmark_id = $GLOBALS['trean_db']->insert(' INSERT INTO trean_bookmarks ( user_id, bookmark_url, bookmark_title, bookmark_description, bookmark_clicks, bookmark_http_status, favicon_url, bookmark_dt ) VALUES (?, ?, ?, ?, ?, ?, ?, ?)', array( $this->userId, $c_url, $c_title, $c_description, $this->clicks, $this->http_status, $c_favicon_url, $this->dt, )); $this->id = (int)$bookmark_id; $GLOBALS['injector']->getInstance('Trean_Tagger')->tag((string)$this->id, $this->tags, $GLOBALS['registry']->getAuth(), 'bookmark'); } if ($crawl) { try { $queue = $GLOBALS['injector']->getInstance('Horde_Queue_Storage'); $queue->add(new Trean_Queue_Task_Crawl( $this->url, $this->title, $this->description, $this->id, $this->userId )); } catch (Exception $e) { Horde::log($e, 'INFO'); } } return $this->id; } } trean-1.0.3/lib/Bookmarks.php0000664000175000017500000001425012171337643014150 0ustar janjan * @package Trean */ class Trean_Bookmarks { /** * @var Content_Users_Manager */ protected $_userManager; /** * @var integer */ protected $_userId; /** * Constructor. */ public function __construct(Content_Users_Manager $userManager) { $this->_userManager = $userManager; try { $this->_userId = current($this->_userManager->ensureUsers($GLOBALS['registry']->getAuth())); } catch (Content_Exception $e) { throw new Trean_Exception($e); } } /** * Create a new bookmark for the current user * * @return Trean_Bookmark */ public function newBookmark(array $properties) { $properties['user_id'] = $this->_userId; $properties['bookmark_dt'] = new Horde_Date(time()); $bookmark = new Trean_Bookmark($properties); $bookmark->save(); return $bookmark; } /** * Search bookmarks. */ public function listBookmarks($sortby = 'title', $sortdir = 0, $from = 0, $count = 0) { $values = array($this->_userId); $sql = 'SELECT bookmark_id, user_id, bookmark_url, bookmark_title, bookmark_description, bookmark_clicks, bookmark_http_status, favicon_url, bookmark_dt FROM trean_bookmarks WHERE user_id = ? ORDER BY bookmark_' . $sortby . ($sortdir ? ' DESC' : ''); $sql = $GLOBALS['trean_db']->addLimitOffset($sql, array('limit' => $count, 'offset' => $from)); return $this->_resultSet($GLOBALS['trean_db']->selectAll($sql, $values)); } /** * Search bookmarks. */ public function searchBookmarks($q) { $indexer = $GLOBALS['injector']->getInstance('Content_Indexer'); try { $search = $indexer->search('horde-user-' . $this->_userId, 'trean-bookmark', $q); } catch (Content_Exception $e) { throw new Trean_Exception($e); } if (!$search->hits->total) { return array(); } $bookmarkIds = array(); foreach ($search->hits->hits as $bookmarkHit) { $bookmarkIds[] = (int)$bookmarkHit->_id; } $sql = 'SELECT bookmark_id, user_id, bookmark_url, bookmark_title, bookmark_description, bookmark_clicks, bookmark_http_status, favicon_url, bookmark_dt FROM trean_bookmarks WHERE user_id = ? AND bookmark_id IN (' . implode(',', $bookmarkIds) . ')'; $values = array($this->_userId); return $this->_resultSet($GLOBALS['trean_db']->selectAll($sql, $values)); } /** * Returns the number of bookmarks. * * @return integer The number of all bookmarks. */ public function countBookmarks() { $sql = 'SELECT COUNT(*) FROM trean_bookmarks WHERE user_id = ?'; return $GLOBALS['trean_db']->selectValue($sql, array($this->_userId)); } /** * Return counts on grouping bookmarks by a specific property. */ public function groupBookmarks($groupby) { switch ($groupby) { case 'status': $sql = 'SELECT bookmark_http_status AS status, COUNT(*) AS count FROM trean_bookmarks GROUP BY bookmark_http_status'; break; default: return array(); } return $GLOBALS['trean_db']->selectAll($sql); } /** * Returns the bookmark corresponding to the given id. * * @param integer $id The ID of the bookmark to retrieve. * * @return Trean_Bookmark The bookmark object corresponding to the given name. */ public function getBookmark($id) { $bookmark = $GLOBALS['trean_db']->selectOne(' SELECT bookmark_id, user_id, bookmark_url, bookmark_title, bookmark_description, bookmark_clicks, bookmark_http_status, favicon_url, bookmark_dt FROM trean_bookmarks WHERE bookmark_id = ' . (int)$id); if (is_null($bookmark)) { throw new Trean_Exception('not found'); } $bookmark = $this->_resultSet(array($bookmark)); return array_pop($bookmark); } /** * Removes a Trean_Bookmark from the backend. * * @param Trean_Bookmark $bookmark The bookmark to remove. */ public function removeBookmark(Trean_Bookmark $bookmark) { /* Check permissions. */ if ($bookmark->userId != $this->_userId) { throw new Trean_Exception('permission denied'); } /* Untag */ $tagger = $GLOBALS['injector']->getInstance('Trean_Tagger'); $tagger->replaceTags((string)$bookmark->id, array(), $GLOBALS['registry']->getAuth(), 'bookmark'); /* @TODO delete from content index? */ //$indexer->index('horde-user-' . $this->_userId, 'trean-bookmark', $this->_bookmarkId, json_encode(array( /* Delete from SQL. */ $GLOBALS['trean_db']->delete('DELETE FROM trean_bookmarks WHERE bookmark_id = ' . (int)$bookmark->id); return true; } /** * Creates Trean_Bookmark objects for each row in a SQL result. */ protected function _resultSet($bookmarks) { if (is_null($bookmarks)) { return array(); } $objects = array(); $tagger = $GLOBALS['injector']->getInstance('Trean_Tagger'); $charset = $GLOBALS['trean_db']->getOption('charset'); foreach ($bookmarks as $bookmark) { foreach ($bookmark as $key => $value) { if (!empty($value) && !is_numeric($value)) { $cvBookmarks[$key] = Horde_String::convertCharset($value, $charset, 'UTF-8'); } else { $cvBookmarks[$key] = $value; } } $cvBookmarks['bookmark_tags'] = $tagger->getTags((string)$cvBookmarks['bookmark_id'], 'bookmark'); $objects[] = new Trean_Bookmark($cvBookmarks); } return $objects; } } trean-1.0.3/lib/Exception.php0000664000175000017500000000007012171337643014151 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class Trean_TagBrowser extends Horde_Core_TagBrowser { protected $_app = 'trean'; /** * Get breadcrumb style navigation html for choosen tags * * @return Return information useful for building a tag trail. */ public function getTagTrail() { } /** * Fetch the matching resources that should appear on the current page * * @return Array An array of Trean_Bookmark objects. */ public function getSlice($page = 0, $perpage = null) { global $injector; // Refresh the search $this->runSearch(); $totals = $this->count(); $start = $page * $perpage; $results = array_slice($this->_results, $start, $perpage); $bookmarks = array(); foreach ($results as $id) { try { $bookmarks[] = $injector ->getInstance('Trean_Bookmarks') ->getBookmark($id); } catch (Trean_Exception $e) { Horde::logMessage('Bookmark not found: ' . $id, 'ERR'); } } return $bookmarks; } } trean-1.0.3/lib/Tagger.php0000664000175000017500000000355212171337643013434 0ustar janjan * * @package Trean */ class Trean_Tagger extends Horde_Core_Tagger { protected $_app = 'trean'; protected $_types = array('bookmark'); /** * Searches for resources that are tagged with all of the requested tags. * * @param array $tags Either a tag_id, tag_name or an array. * @param array $filter Array of filter parameters. * - user (array) - only include objects owned by * these users. * * @return A hash of 'bookmark' that contains an array of bookmark ids */ public function search($tags, $filter = array()) { $args = array(); /* Add the tags to the search */ $args['tagId'] = $GLOBALS['injector'] ->getInstance('Content_Tagger') ->getTagIds($tags); $args['typeId'] = $this->_type_ids['bookmark']; $results = $GLOBALS['injector'] ->getInstance('Content_Tagger') ->getObjects($args); $results = array_values($results); return $results; } /** * Returns tags on bookmarks belonging to the current user. * * @param string $token The token to match the start of the tag with. * * @return A tag_id => tag_name hash * @throws Horde_Exception */ public function listBookmarkTags() { try { return $GLOBALS['injector']->getInstance('Content_Tagger') ->getTags(array( 'typeId' => $this->_type_ids['bookmark'], 'userId' => $GLOBALS['registry']->getAuth()) ); } catch (Content_Exception $e) { throw new Horde_Exception($e); } } } trean-1.0.3/lib/Trean.php0000664000175000017500000000471012171337643013271 0ustar janjan * @package Trean */ class Trean { /** * Returns the specified permission for the current user. * * @param string $permission A permission, currently only 'max_folders' * and 'max_bookmarks'. * * @return mixed The value of the specified permission. */ static function hasPermission($permission) { $perms = $GLOBALS['injector']->getInstance('Horde_Perms'); if (!$perms->exists('trean:' . $permission)) { return true; } $allowed = $perms->getPermissions( 'trean:' . $permission, $GLOBALS['registry']->getAuth()); if (is_array($allowed)) { switch ($permission) { case 'max_folders': case 'max_bookmarks': $allowed = max($allowed); break; } } return $allowed; } /** * Returns an apropriate icon for the given bookmark. * * @param Trean_Bookmark $bookmark The bookmark object. * * @return Horde_Url The URL for the image. */ static function getFavicon($bookmark) { if ($bookmark->favicon_url) { return Horde::url('favicon.php')->add('bookmark_id', $bookmark->id); } else { // Default to the protocol icon. $protocol = substr($bookmark->url, 0, strpos($bookmark->url, '://')); return Horde_Themes::img('protocol/' . (empty($protocol) ? 'http' : $protocol) . '.png'); } } static public function addFeedLink() { $rss = Horde::url('rss.php', true, -1); if ($label = Horde_Util::getFormData('label')) { $rss->add('label', $label); } $GLOBALS['page_output']->addLinkTag(array( 'href' => $rss, 'title' => _("Bookmarks Feed") )); } static public function bookmarkletLink() { $view = $GLOBALS['injector']->createInstance('Horde_View'); $view->url = Horde::url('add.php', true, array('append_session' => -1)) ->add('popup', 1); $view->image = Horde::img('add.png'); return $view->render('bookmarklet'); } } trean-1.0.3/lib/Url.php0000664000175000017500000000062612171337643012764 0ustar janjan_url = new Horde_Url($url); $this->_url->remove(array( 'utm_source', 'utm_medium', 'utm_term', 'utm_campaign', 'utm_content', )); } public function __toString() { return (string)$this->_url; } } trean-1.0.3/locale/de/LC_MESSAGES/trean.mo0000664000175000017500000021132012171337643016020 0ustar janjan~ 7J$J)JJ& K 1K$>K cK)nKKK KKKK L)L78LJpLHLRMWMgMMMMMMMMMMMMMMMNVN^Nl{NNNOO O &OGOZOtO xO O O OO OOOOONO-_ U_b_*u_B_'_ ` ` ,`8` ?`I`\`n````"` `` aaa-a AaNahaCaa a/a<bD\bbbbb b bbbc "c ,c:cCc"Kc{ncLcO7d'd(dddd ee+ejKjj6kk kkBk4lHl)Zlll ll llgl ]mimxmmmmmm mm mm mmnn+n2n6n;n Dn Qn]nwnnn n nnnn oooo'oG=o o"o!oooooo ohofpppppppq.q$Hqmqvq}qq qqqqq qq rr8rNrSrir pr |rr rrr rrrr|sss s s sss sstt tt8!tZtmtt ttttttu uE$ujuuEuAu'v@vUvpvuvvvvvvvv$w5wDwSwbw(iw wwjw'x\?xxxxx xxyyy%y)y 2yNj~ نdCE&8* ;7(s̈Ո݈  ",17 LXu>~>4 @\cv5ڊh+f%8!3Z-2eUڍ1AH-3%*?=)}T)K&Ir*1*(Dm u 1֑:ܑV &,@QimD & -7H^ x ;2$ 8B2T;Õ ڕ & A LZj~ ̖ Ֆ  / P mF n!n ˘ۘ D"H"k%%5ڙ%%6-\.#,ݚ, c75Vћ(*Bsm E)5&_%(՝v pzsy+ 6N^v\Qfbɡ-X,Ȣ Ϣ ݢ (0 7C T"^*)Bl3 (̥ /0A Tar (AڦBP_ 4B]cks {  ŨШ i#f 2@ ITq êժ&&>Oj uD1Gy  ɬԬ۬2()׭ 8Sr  ǮӮ1O1m1 718>O=?̰? L a&n  ɱձ ) 2<Uu { òͲd^| Ƴ-߳} % ʴ ?CW6ҵt1  Ŷж  $1@ I U aoD+Ϸ&"3HOBVT=_,]1ʺ<D9~?̼ 3EUf xڽ" %/ 5CZ^ g u*=  +;/SF/ʿ  #/ 6AWi) &#3WmS" 04AMvT * CN^u1X[ 1g3% !0AP bn 9 !. 3?T ly  tJ ^ ht !5O ^i   /A5w} #"D*o %* Q3I}$ z*   0G^s ./#0S- i/76"+14:BwX$* )4^y!+ # . ;H)Q({ $7 >Ia |  - 6BI[Ad<#\ Z&)\FV*+V\s &""/ JXh;yl_ '?Tj    $- R\y!  ! (,7U '>F P."  08 Q]cNtb'&Nk   ?7I _i  fZq %BKf'v Y4V -"9T%fD'#/;!k$ + @RJ|0/KF{p+3_Cu!T70Q &7Tint } (Hi$5!!6YX1#  )7G O]q [ZuL5Pzm26(rOJ262i $"DGW=C;!@]M9f&;bd,>F!9Y a oz27b%,1@W]q%1VWw    "(Kb"{ N[S\ o|>M< Wdm    * 2 >IXu6$+32 ft$CIRex O$#$"H!k4#"4 3>"r45t @u ^  ,, Y  A N. 7} 9 : *  > K   r .%!?zaxbU=\/   $:@G]s;.hB4r{% 8]O7) "HzVNt+;"cf 5QKe|f  \8}Gr[D ^E&05d!BKROdn.wx:Sj$56\M0U^t pRiq!{Z)JC\&l1Nb:>mCn/vY> LG9N?XaUu6|@oc3t*EudF_'7k LhOJ,*,zUpv?[fH|O-,e6P>|1mA*/n*x /i<PP2X~ _D+I ;j9wG#xM^'Q{,1F  $[C(!k=b>y}qIv^z .I3pA?BT4:gKE'R \b{9Z8d])aM-e`8P0@iY_S J3J2}SqHrZyY k_LsAMo0c(3fNzrA$(V 9=+n@)Q~w#T`77D%CY$FWF@/Xo%#}1!=tl~ (;WZsuhxb`=Sj'T#]Wsh-Vgi+4H%DRW`?6wX &eImgL~EUQ2m ".v]as4k"K<cTV2<;[y&B-qo<lyalG5j u:gp"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d days until your password expires.%d minutes%d person likes this%d persons like this%d to %d of %d%d-day forecast%s - Notice%s Configuration%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s can interact with your Twitter account%s cannot read information about your Facebook friends.%s cannot read your stream messages and various other Facebook data items.%s cannot set your status messages or publish other content to Facebook.%s is ready to perform the tasks below. Select each operation to run at this time., gusting %s %s, variable from %s to %s1 Day1 Line1 Month1 Week10 rows12 Hour Format15 rows2 Line2 Weeks24 Hour Format24 hours24-hour format25 rows3 Days3 LineA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM/PMAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd ContentAdd Here:Add MembersAdd a groupAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAddedAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.AllowAllow alphanumericAllow anyAllow only numericAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAnswerApplicationApplication ContextApplication is ready.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscending (A to Z or oldest to newest)Ascii ArtAt least one database schema is outdated.AttachmentAttachment DownloadAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated toAuthorizeAuthorize Access to Friends DataAuthorize PublishAuthorize ReadAutomaticAvailable fields:BOFH ExcusesBaltic (ISO-8859-13)BasicBlock SettingsBlock TypeBluetoothBookmark AddedBookmark not found: %s.Bookmarked onBookmarksBookmarks FeedBothBottomBrowseBrowserCalendarCameraCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.Categories and LabelsCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClicksClient AnchorCloseClose WindowCloudsCodeword frequencyCollapseColor PickerComicsCommandCommand ShellComments: %dComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm PasswordContinueCookieCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for %s to interact with your Facebook account.Could not find authorization for %s to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DDDataDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.DefinitionsDeleteDelete "%s"Delete All SyncML DataDelete GroupDeleted bookmark: Deleted configuration upgrade script "%s".Deleted synchronization session for device "%s" and database "%s".Descending (9 to 1 or newest to oldest)Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice InformationDevice ManagementDevice encryptionDevice is WipedDevice is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDisableDisplay 24-hour times?Display PreferencesDisplay RowsDisplay detailed forecastDisplay forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload generated configuration as PHP script.Drag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrugsDynamicEU VAT identificationEditEdit "%s"Edit BookmarkEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnglishEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter. Details have been logged for the administrator.Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExtra LargeFTP upload of configurationFacebook IntegrationFailed unlock attempts before device is wipedFavoriteFeedFeed AddressFeels LikeFields to searchFile ManagerFilterFiltersFirefox/MozillaFirst HalfFirst QuarterFoodForceForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFriend Requests:Friends enabled.From the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoogle SearchGreek (ISO-8859-7)Group AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTML EmailHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hide Advanced PreferencesHide ResultsHome DirectoryHordeHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsIcons for %sIdentity's name:Import, Step %dImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Incorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internet ExplorerInvalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid parent permission.InventoryJapanese (ISO-2022-JP)JavaScript is either disabled or not available on your browser. You are restricted to the minimal view.Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLawLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLoading...Local time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogged in to FacebookLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize %sLogin to Twitter and authorize %sLogoutLoveMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.Matching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Email ageMaximum Number of BookmarksMaximum Number of Portal BlocksMaximum attachment sizeMaximum number of devicesMaximum number of entries to displayMedicineMediumMembersMentionsMetar WeatherMetricMin temp last 24 hours: Min temp last 6 hours: Minimum PIN lengthMiscellaneousMissing configuration.Mobile (Minimal)Mobile (Smartphone/Tablet)Mobile Optimized AppsModeModule is up-to-date.MondayMoon PhasesMost ClickedMost-clicked BookmarksMy AccountMy Account InformationMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeverNew BookmarkNew CategoryNew Messages:New MoonNew Username (optional)New passwordNew passwords don't match.NewsNextNext 4 PhasesNo SoundNo available configuration data to show differences for.No bookmarks foundNo bookmarks to displayNo bookmarks yet.No change.No icons found.No items to displayNo location is set.No offensive fortunesNo pending signups.No push while roamingNo searchNo security question has been set. Please contact your administrator.No stable version exists yet.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.NoSQL indices are ready.NoSQL indices for %sNoSQL indices out of date.NoneNordic (ISO-8859-10)Northern HemisphereNot ProvisionedNote:NotesNothing to browse, go back.Number of articles to displayNumber of bookmarks to showNumber of seconds to wait to refreshObject BrowserObject CreatorOffense filterOfficeOld and new passwords must be different.Old passwordOld password is not correct.On newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOr enter a user name:Other InformationOther OptionsOther PreferencesOthersOwnerOwner:PHPPHP CodePHP ShellPOP/IMAP Email accountsPOSIX extension is missingP_HP ShellPasswordPassword ComplexityPassword changed successfully.Passwords must match.PastePending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a password.Please enter a username.Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Pokes:Policy KeyPoliticsPosition of reply text when replying to email on your device. Note that some devices will always send the citation string at the end of the reply text.PostPosted %sPosted %s via %sPrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePressurePressure at sea level: Previously used tagsPrincipalProblem DescriptionProvisionedProvisioningPublish enabled.QueryQuotaRandom FortuneReadRead enabled.Really delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRegular AppsRemarksRemote HostRemoveRemove from searchRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sReplyReprovision All DevicesRequire PINRequire S/MIME EncryptionRequire S/MIME SignatureResetReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSD cardSD card encryptionSMS Text messagesSQL DB schema is out of date.SQL DB schema is ready.SQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch results (%s)Search:Seconds of inactivity before device should lockSee previously used tagsSelect a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Send Problem ReportSensor: Server TimeSession AdministrationSession TimestampSessionsSet how to display bookmark listings and how to open links.Set preferences to allow you to reset your password if you ever forget it.Set up integration with your Facebook account.Set up integration with your Twitter account.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?ShowShow Advanced PreferencesShow differences between currently saved and the newly generated configuration.Show extra detail?Show last login time when logging in?Show notificationsSkip Login TasksSmallSnow depth: Snow equivalent in water: Songs & PoemsSort bookmarks by:Sort bySort direction:South European (ISO-8859-3)Southern HemisphereSpamSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubmitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSync allSyncMLSyndicated FeedTag CloudTagsTasksTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)TemplateTemporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Thai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem deleting the bookmark: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error saving the bookmark: %sThere was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.TicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTopTranslationsTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sURLUnable to delete "%s": %s.Unable to set like.Unable to validate the request token. Please try your request again.Undo ChangesUnfavoriteUnfiledUnicode (UTF-8)UnitsUnknownUnlockUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated schema for %s.UploadUploaded all application configuration files to the server.Use if name/password is different for IMSP server.UserUser AdministrationUser NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWeb browserWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Width of the %s menu on the left:WifiWikiWindWind speed in knotsWind:WipeWipe PendingWipe is pendingWisdomWith WorkX-RefYYYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are not connected to your Facebook account. You should check your Facebook settings in your %s.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You have been logged out.You have denied the requested permissions.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has been succesfully changed. You need to re-login to the system with your new password.Your password has expiredYour password has expired.Your session has expired. Please login again.Your session length has exceeded the maximum amount of time allowed. Please login again.Zippy[Problem Report]_Alarms_Browse_CLI_Configuration_Groups_Locks_New Bookmark_Permissions_Usersattachmentcalmclickclicksfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestagged %stype the password twice to confirmunifiedweatherProject-Id-Version: Trean H5 (1.0-git) Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-07-16 21:24+0200 PO-Revision-Date: 2013-07-16 21:29+0200 Last-Translator: Jan Schneider Language-Team: i18n@lists.horde.org Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); "%s" wurde zum Gruppensystem hinzugefügt."%s" wurde zum Rechtesystem hinzugefügt."%s" wurde nicht erstellt: %s.%.2fMB (%3$.2f%%) von %2$.2fMB erlaubten verbraucht%d %s und %sIn %d Tagen wird Ihr Passwort ungültig.%d Minuten%d Person gefällt das%d Personen gefällt das%d bis %d von %d%d-Tage-Vorhersage%s - Hinweis%s-Konfiguration%s-Aufgaben - Bestätigung%s Nutzungsbedingungen%s mit %s %s%s kann mit Ihrem Twitter-Konto arbeiten%s kann keine Informationen über Ihre Facebook-Freunde auslesen.%s kann Ihre Neuigkeiten und andere Facebook-Daten nicht auslesen.%s kann keine Statusmeldungen oder andere Inhalte bei Facebook veröffentlichen.%s möchte die Aufgaben durchführen, die unten angezeigt sind. Markieren Sie alle Aufgaben, die jetzt durchgeführt werden sollen., böig %s %s, schwankend von %s bis %s1 Tag1 Zeile1 Monat1 Woche10 Zeilen12-Stunden-Format15 Zeilen2 Zeilen2 Wochen24-Stunden-Format24 Stunden24-Stunden-Format25 Zeilen3 Tage3 ZeilenEine Geräte-Löschung wurde gestartet. Das Gerät wird während der nächsten Synchronisation gelöscht.Eine neuere Version (%s) existiert.Eine ferngesteuerte Löschung für das Gerät mit der ID %s wurde gestartet. Das Gerät wird während der nächsten Synchronisation gelöscht.AM/PMKontoinformationenKontopasswortAktionenActiveSyncActiveSync-GeräteverwaltungActiveSync-GeräteActiveSync ist nicht aktiviert.HinzufügenInhalt hinzufügenHier hinzufügen:Mitglieder hinzufügenGruppe hinzufügenFügen Sie einen neuen Benutzer hinzu:Neuen Alarm hinzufügenPaar hinzufügenZu Lesezeichen hinzufügenBenutzer hinzufügenHinzugefügt"%s" wurde zum System hinzugefügt, aber die zusätzlichen Anmeldeinformationen konnten nicht gespeichert werden: %s."%s" wurde zum System hinzugefügt. Sie können sich jetzt anmelden.Das Hinzufügen von Benutzern ist nicht möglich.AdresseAdressbuchAdministrationAlarmendeAlarmmethodenAlarmbeginnAlarmtextAlarmtitelAlarmeAlleAngemeldete BenutzerAlle Richtlinien-Schlüssel wurden zurückgesetzt.Der Status Ihrer ActiveSync-Geräte wurde zurückgesetzt. Bei der nächsten Verbindung mit dem Server werden sie neu synchronisiert.Alle Synchronisationssitzungen gelöscht.ErlaubenAlphanumerisch erlaubenAlle erlaubenNur numerisch erlaubenAlternative IMSP-AnmeldungAlternatives IMSP-PasswortAlternativer IMSP-BenutzernameAlternative E-Mail-AdresseAntwortAnwendungAnwendungskontextAnwendung ist bereit.BestätigenArabisch (Windows-1256)Sind Sie sicher, dass Sie '%s' löschen möchten?Sind Sie sicher, dass Sie die Registrierungsanfrage von "%s" löschen möchten?Sind Sie sicher, dass Sie "%s" löschen möchten?Armenisch (ARMSCII-8)KunstAufsteigend (A nach Z oder älteste nach neueste)ASCII-KunstMindestens ein Datenbank-Schema ist nicht mehr aktuell.AnhangAnhänge herunterladenEs wurde versucht, eine nicht existierende Gruppe zu löschen.Es wurde versucht, ein nicht existierendes Recht zu löschen.Es wurde versucht, ein nicht existierendes Recht zu bearbeiten.Es wurde versucht, ein nicht existierendes Recht zu bearbeiten.Authentifiziert fürAutorisierenZugriff auf Freunde-Daten autorisierenVeröffentlichungen autorisierenLesen autorisierenAutomatischVerfügbare Felder:BOFH-AusredenBaltisch (ISO-8859-13)EinfachBlockeinstellungenBlocktypBluetoothLesezeichen hinzugefügtLesezeichen nicht gefunden: %s.DatumLesezeichenLesezeichen-FeedBeidesUntenListeBrowserKalenderKameraAbbrechenProblembericht abbrechenLöschen abbrechenPasswort kann nicht automatisch zurückgesetzt werden, bitte wenden Sie sich an Ihren Administrator.Kategorien und BeschriftungenKeltisch (ISO-8859-14)Mitteleuropäisch (ISO-8859-2)ÄndernOrt ändernÄndern Sie Ihr PasswortÄndern Sie Ihre persönlichen Informationen.Das Ändern Ihres Passworts wird von diesem System zur Zeit nicht unterstützt. Bitte wenden Sie sich an Ihren Administrator.ÜberprüfenAuf aktuellere Versionen überprüfenÜberprüfeChinesisch vereinfacht (GB2312)Chinesisch traditionell (Big5)%s auswählenLegen Sie fest, wie das Datum angezeigt werden soll (Kurzform):Legen Sie fest, wie das Datum angezeigt werden soll (Vollständig):Legen Sie fest, wie die Uhrzeit angezeigt werden soll:Abfrage zurücksetzenBenutzerdaten löschen: %sBenutzerdaten löschenBenutzerdaten löschenKlicken Sie auf eines Ihrer ausgewählten Adressbücher und markieren Sie alle Felder, die durchsucht werden sollen.FortfahrenKlicksClient-AnkerSchließenFenster schließenWolkenCodewort-HäufigkeitSchließenFarbauswahlComicsBefehlBefehlszeileKommentare: %dComputerBedingungenBedingungenKonfigurationKonfigurationsunterschiedeKonfiguration der Synchronization mit PDAs, Smartphones und Outlook.Die Konfiguration muss aktualisiert werden.Aktualisierungsskripte sind verfügbar%s konfigurierenPasswort bestätigenWeiterCookieFTP-Verbindung zum Server "%s" konnte nicht hergestellt werden: %sDer Server konnte nicht erreicht werden, bitte versuchen Sie es später noch einmal.Das Aktualisierungsskript "%s" konnte nicht gelöscht werden.Es wurde keine Autorisierung für %s gefunden, um mit Ihrem Facebook-Konto arbeiten zu können.Es wurde keine Autorisierung für %s gefunden, um mit Ihrem Twitter-Konto arbeiten zu könnenDas Passwort für den angegebenen Benutzer konnte nicht zurückgesetzt werden, weil einige Angaben nicht richtig waren. Versuchen Sie es erneut oder wenden Sie sich an Ihren Administrator, wenn Sie weitere Hilfe benötigen.Konfiguration konnte nicht zurückgesetzt werden.Backup der Konfiguration konnte nicht gespeichert werden: %sDas Aktualisierungsskript konnte nicht nach "%s" gespeichert werden.Die Konfiguration %s konnte nicht gespeichert werden. Verwenden Sie eine der untenstehenden Möglichkeiten, um den Code zu speichern.Die Konfiguration %s konnte nicht gespeichert werden. Sie können entweder eine der Möglichkeiten unter %s verwenden, um den Code zu speichern, oder den untenstehenden Code manuell nach %s kopieren.Die Konfiguration für "%s" konnte nicht gespeichert werden: %sLandErstellenNeue Identität anlegenAktuelle 4 PhasenAktuelle AlarmeAktuelle SperrenAktuelle SessionsAktuelle ZeitAktuelles WetterAktuelle BedingungenKyrillisch (KOI8-R)Kyrillisch (Windows-1251)Kyrillisch/Ukrainisch (KOI8-U)DB-Zugriff ist nicht konfiguriert.TTDatenDatenbankDatumEmpfangsdatumDatum: %s; Uhrzeit: %sTagStandardStandardfarbeStandardshellStandardzeichensatz für neue Nachrichten:Standardort für die Nutzung von ortsabhängingen Funktionen.DefinitionenLöschen"%s" löschenAlle SyncML-Daten löschenGruppe löschenLesezeichen gelöscht: Das Aktualisierungsskript "%s" wurde gelöscht.Synchronisationssitzung für Gerät "%s" und Datenbank "%s" gelöscht.Absteigend (9 nach 1 oder neuste nach älteste)Beschreiben Sie das ProblemBeschreibungEntwicklungGerätGeräte-IDGeräte-InformationenGeräteverwaltungGeräteverschlüsselungGerät wurde gelöschtGerät wurde gelöschtGerät erfolgreich entfernt.Gerätelöschung erfolgreich abgebrochen.TaupunktTaupunkt der letzten Stunde: TaupunktDeaktivierenZeit im 24-Stunden-Format anzeigen?Anzeige-EinstellungenAngezeigte ZeilenDetailierte Vorhersage anzeigenVorhersage (TAF) anzeigenEnthält die erste Zeile die Feldnamen? Wenn ja, dieses Auswahlkästchen markieren:Noch keinen Zugang? Hier anmelden.%s HerunterladenErzeugte Konfiguration als PHP-Skript herunterladen.Ziehen Sie den "Zu Lesezeichen hinzufügen" Link auf die "Links"-SymbolleisteZiehen Sie den "Zu Lesezeichen hinzufügen" Link auf die "Persönliche Symbolleiste"DrogenDynamischEU-UStId-IdentifizierungBearbeiten"%s" bearbeitenLesezeichen bearbeitenBenutzereinstellungen fürRechte bearbeitenRechte für "%s" bearbeitenBildungE-Mail-AdresseEndzeitEnglischGeben Sie einen Namen für die neue Kategorie an:Geben Sie eine Sicherheitsfrage ein, die Ihnen gestellt wird, wenn Sie Ihr Passwort zurücksetzen möchten, z. B. "Wie lautet der Name Ihres Haustiers?":Fehler bei der Verbindung mit Twitter. Details wurden für den Administrator mitgeloggt.Fehler bei der Verbindung mit Twitter: %s Details wurden für den Administrator mitgeloggt.Fehler beim Löschen der Synchronisationssitzung:Fehler beim Löschen der Synchronisationssitzungen:Fehler beim Ändern des Passworts: %sEtnischesTermin-Einladungen:Alle 15 MinutenAlle 2 MinutenAlle 30 SekundenAlle 5 MinutenAlle halbe StundeJede StundeAlle 60 SekundenBeispielwerte:AusführenVergrößernExtra großKonfiguration per FTP hochladenFacebook-IntegrationFehlgeschlagene Entsperrungsversuche bis GerätelöschungFavorisierenFeedFeedadresseGefühlte TemperaturZu durchsuchende FelderDateimanagerFilterFilterFirefox/MozillaErste HälfteErstes ViertelEssenErzwingenVorhersage (TAF)Vorhergesagte Tage (Vorhersagen enthalten Tage und Nächte, ein hoher Wert kann zu einem sehr großen Block führen)Passwort vergessen?FormulareGlückskeksGlückskekstypGlückskekseGlückskekse 2ForenFreundschafts-Anfragen:Freunde aktiviert.aus %s (%s °) mit %s %saus %s mit %s %sVollständige BeschreibungVollmondVollständiger Name%s-Konfiguration erzeugenErzeugter CodeMehr holenAllgemeine EinstellungenLosGoedelGoogle SucheGriechisch (ISO-8859-7)GruppenverwaltungGruppennameGruppe wurde nicht erstellt: %s.GruppenGastrechteHTML-NachrichtenHebräisch (ISO-8859-8-I)HöheHöhe des Inhalts (Breite passt sich automatisch an den Block an)Hilfe_HilfeeinträgeHemisphereDies ist der Beginn der Datei:Erweiterte Einstellungen ausblendenErgebnisse ausblendenHeimverzeichnisHordeWieviele Felder (Spalten) gibt es?Nach wie vielen Sekunden soll nach neuen Beiträgen geschaut werden?LuftfeuchtigkeitKomikerIcons für %sBezeichnung der IdentitätImportieren, Schritt %dImportiertes Feld: %sImportierte Felder:Als Antwort auf:Wählen Sie in der untenstehenden Liste jeweils ein Feld aus der importierten Datei auf der linken Seite und ein Feld aus Ihrem Adressbuch auf der rechten Seite aus. Dann drücken Sie "Paar hinzufügen", um dieses Paar für den Import zu verwenden. Wenn sie fertig sind, drücken Sie "Weiter".Falscher Benutzername oder E-Mail-Adresse. Versuchen Sie es erneut oder wenden Sie sich an Ihren Systemadministrator, wenn Sie weitere Hilfe benötigen.Einzelne BenutzerInformationenVererbte MitgliederGeben Sie eine E-Mail-Adresse an, an die das neue Passwort geschickt werden soll:Geben Sie die Antwort auf die Sicherheitsfrage ein:Internet ExplorerUngültiges Format der UStId-Nummer.Ungültige Aktion %sUngültige Anwendung.Ungültiger Hash.Ungültiges Überrecht.InventarJapanisch (ISO-2022-JP)JavaScript ist in Ihrem Browser entweder deaktiviert oder nicht verfügbar. Sie sind auf den minimalen Modus beschränkt. Gerade...Kernel-NeulingeStichwortKinderKolabKoreanisch (EUC-KR)SpracheGroßLetzte HälfteLetzte PasswortänderungLetztes ViertelLetzte SynchronisationLetzte Aktualisierung:Letzte Anmeldung: %sLetzte Anmeldung: %s von %sLetzte Anmeldung: Noch nieZuletztGesetzGefällt mirLimerickLinux-GlückskekseTabellen anzeigenDas Anzeigen der Alarme ist fehlgeschlagen: %sDas Anzeigen der Sperren ist fehlgeschlagen: %sDas Anzeigen der Sessions ist fehlgeschlagen: %sDas Anzeigen der Benutzer ist nicht möglich.LiteraturLade...Lokale Zeit: %s %sSprache und ZeitOrtBenutzer sperrenSperrenAnmeldenAbmeldenAngemeldet bei FacebookDie Anmeldung ist fehlgeschlagen, weil Sie Ihren Benutzernamen oder Ihr Passwort falsch eingegeben haben.Anmeldung fehlgeschlagen.Melden Sie sich bei Facebook an und autorisieren Sie %sMelden Sie sich bei Twitter an und autorisieren Sie %sAbmeldenLiebeMMMagieWebmailE-Mail AdministrationVerwalten Sie die Kategorien, mit denen Sie Elemente und Einträge kennzeichnen können, sowie die zugehörigen Farben.Verwaltung Ihrer ActiveSync-Geräte.Zugeordnete Felder:Höchsttemperatur der letzten 24 Stunden: Höchsttemperatur der letzten 6 Stunden: Maximales NachrichtenalterMaximale Anzahl an LesezeichenMaximale Anzahl an PortalblöckenMaximale AnhanggrößeMaximale GeräteanzahlMaximale Anzahl der anzuzeigenden EinträgeMedizinMittelMitgliederErwähnungenMetar WetterMetrischTiefsttemperatur der letzten 24 Stunden: Tiefsttemperatur der letzten 6 Stunden: Minimale PIN-LängeVerschiedenesFehlende Konfiguration.Mobil (Minimal)Mobil (Smartphone/Tablet)Mobil optimierte AppsModusModul ist aktuell.MontagMondphasenAm häufigsten geklicktMeistgeklickte LesezeichenMein KontoMein KontoMein Facebook-StreamMein PortalMein Portallayoutk.A.NEIN, ich stimme NICHT zuHINWEIS: DAS LÖSCHEN EINES GERÄTES KANN DIESES IN DEN AUSLIEFERUNGSZUSTAND ZURÜCKVERSETZEN. SEIEN SIE SICH SICHER, DASS SIE DIES WOLLEN, BEVOR SIE DIE LÖSCHUNG DURCHFÜHREN. NameNieNeues LesezeichenNeue KategorieNeue Nachrichten:NeumondNeuer Benutzername (optional)Neues PasswortDie neuen Passwörter stimmen nicht überein.NachrichtenWeiterNächste 4 PhasenKein TonKeine Konfigurationsdaten verfügbar, um Unterschiede anzuzeigen.Keine Lesezeichen gefundenKeine LesezeichenKeine LesezeichenKeine Änderungen.Keine Icons gefunden.Keine vorhandenEs wurde kein Ort festgelegt.Keine anstößigen GlückskekseKeine ausstehenden Registrierungen.Kein Push während RoamingKeine SucheSie haben keine Sicherheitsfrage hinterlegt. Bitte wenden Sie sich an Ihren Administrator.Noch keine stabile Version verfügbar.Kein Benutzername angegeben.Keine Versionsnummer in der Originalkonfiguration gefunden. Erneuern Sie Ihre Konfiguration.Keine Versionsnummer in Ihrer Konfiguration gefunden. Erneuern Sie Ihre Konfiguration.NoSQL-Indices sind bereit.NoSQL-Indizes für %sNoSQL-Indizes müssen aktualisiert werden.KeineNordisch (ISO-8859-10)Nördliche HemisphereNicht verknüpftAnmerkung:NotizenNichts anzuzeigen, bitte zurückgehen.Anzahl der anzuzeigenden BeiträgeAnzahl der angezeigten LesezeichenWartezeit zwischen Aktualisierungen in SekundenObjektbrowserObjekterstellerFilter für anstößige InhalteBüroIhr neues Passwort muss sich von Ihrem alten unterscheiden.Altes PasswortFalsches altes Passwort.In neueren Versionen des Internet Explorer müssen Sie unter Umständen %s://%s zur Vertrauenswürdigen Zone hinzufügen.Nur anstößige GlückskekseNur der Besitzer oder der Systemadministrator kann den Besitzer oder die Besitzerrechte ändernLinks in neuem Fenster öffnen?BetriebsystemOder geben Sie einen Benutzernamen ein:Andere InformationenWeitere EinstellungenAndere EinstellungenWeitereBesitzerBesitzer:PHPPHP CodePHP ShellPOP/IMAP-E-Mail-KontenDie POSIX-Erweiterung fehlt_PHP ShellPasswortPasswortkomplexitätPasswort erfolgreich geändert.Die Passwörter müssen gleich sein.EinfügenAusstehende Registrierungen:PersonenAnmeldeaufgaben durchführenRecht "%s" wurde nicht gelöscht.RechteRechteverwaltungPersönliche AngabenHaustiereFotosPlattheitenBitte geben Sie ein Passwort ein.Bitte geben Sie einen Benutzernamen ein.Bitte geben Sie eine Zusammenfassung Ihres Problems an.Bitte lesen Sie sich den folgenden Text sorgfältig durch. Sie MÜSSEN diesen Bedingungen zustimmen, wenn Sie dieses System benutzen möchten.Anstupser:Richtlinien-SchlüsselPolitikPosition des Anworttextes auf Ihrem Gerät, wenn Sie Nachrichten beantworten. Bitte beachten Sie, dass einige Geräte die Zitatüberschrift immer am Ende des Antworttextes einfügen.E-Mail schickenErstellt %sErstellt %s über %sNiederschlag in der letzten %d Stunde: Niederschlag in den letzten %d Stunden: Niederschlags-%swahrscheinlichkeitLuftdruckLuftdruck auf Seehöhe: Bisher verwendete TagsResourceProblembeschreibungVerknüpftVerknüpfungVeröffentlichungen aktiviert.AbfrageSpeicherplatz-KontingentGlückskeksLesenLesen aktiviert."%s" wirklich löschen? Dieser Vorgang kann nicht rückgängig gemacht werden.Daten des Benutzers "%s" wirklich löschen? Dieser Vorgang kann nicht rückgängig gemacht werden.Dynamische Menüelemente aktualisieren:Portalansicht aktualisieren:Aktualisierungsrhythmus:Registrierte GeräteReguläre AppsBemerkungenEntfernter RechnerEntfernenAus der Suche entfernenPaar löschenGespeichertes Skript aus dem temporären Verzeichnis entfernen.Benutzer löschenBenutzer löschen: %sAntwortenAlle Geräte neu verknüpfenPIN verlangenS/MIME-Unterstützung verlangenS/MIME-Signatur verlangenZurücksetzenPasswort zurücksetzenStatus aller Geräte zurücksetzen. Damit werden alle Einträge auf Ihren Geräten neu synchronisiert.Passwort zurücksetzenLetzte Abfrage einfügenErgebnisseErgebnisse für %sZurück zur ÜbersichtRetweetRetweeted durch %sNeues Passwort erneut eingebenKonfiguration zurücksetzenRätselStartenAnmeldeaufgaben durchführenSD-KarteSD-Karten-VerschlüsselungSMS-NachrichtenSQL-DB-Schema muss aktualisiert werden.SQL-DB-Schema ist bereit.SQL ShellS_QL ShellSpeichern"%s" speichernSpeichern und BeendenErzeugte Konfiguration als PHP-Skript im temporären Verzeichnis Ihres Servers speichern.Das Aktualisierungsskript wurde in "%s" gespeichert.WissenschaftBereich_SucheSucheSuchergebnisse (%s)Suche:Sekunden der Inaktivität vor GerätesperrungBisher verwendete Tags anzeigenHinzuzufügende Gruppe auswählen:Neuen Besitzer auswählen:Server auswählenHinzuzufügenden Benutzer auswählen:Wählen Sie die Felder aus, in denen nach Namen gesucht werden soll.Wählen Sie das Datums- und Zeitformat:Wählen Sie das Datumstrennzeichen:Wählen Sie das Datumsformat:Wählen Sie die Reihenfolge von Datum und Zeit:Wählen Sie das Zeittrennzeichen:Wählen Sie das Zeitformat:Wählen Sie ein Farbschema.Wählen Sie Ihre bevorzugte Sprache:Problembericht abschickenSensor: ServerzeitSitzungsverwaltungSitzungs-ZeitstempelSitzungenLegen Sie fest wie die Lesezeichenlisten angezeigt und wie Links geöffnet werden.Legen Sie die Einstellungen fest, die es Ihnen erlauben Ihr Passwort zurückzusetzen, falls sie es einmal vergessen sollten.Integration mit Ihrem Facebook-Konto einrichten.Integration mit Ihrem Twitter-Konto einrichten.Wählen Sie Ihre bevorzugte Sprache, Zeitzone und Datumseinstellungen.Legen Sie das die Startanwendung, das Farbschema, die Seitenaktualisierung und andere Anzeigeeinstellungen fest.Mehrere passende Orte mit dem Parameter: %sKurze ZusammenfassungSollen Tastenkombinationen für die meisten Links aktiviert werden?ZeigenErweiterte Einstellungen anzeigenUnterschiede zwischen der aktuellen und der gerade erzeugten Konfiguration anzeigen.Weitere Details anzeigen?Anzeigen, wann die letzte Anmeldung erfolgt ist?Benachrichtigungen anzeigenAnmeldeaufgaben überspringenKleinSchneehöhe: Schneemenge als Wasser: Lieder & GedichteLesezeichen sortieren nach:Sortieren nachSortierrichtung:Südeuropäisch (ISO-8859-3)Südliche HemisphereSpamSportStandardStar TrekStartzeitStatusverwaltungStatusStatus konnte nicht aktualisiert werden.TimelineDie Registrierungsanfrage für "%s" wurde abgeschickt. Sie können sich noch nicht anmelden, solange die Anfrage noch nicht bestätigt wurde.Erfolgreich mit Ihrem Facebook-Konto verbunden oder Rechte aktualisiert.Erfolg"%s" wurde erfolgreich hinzugefügt.Daten des Benutzers "%s" wurde erfolgreich gelöscht."%s" wurde erfolgreich gelöscht."%s" wurde erfolgreich gelöscht.Konfiguration erfolgreich zurückgesetzt. Seite neu laden, um die Änderungen anzuzeigen.Backup der Konfiguration erfolgreich gespeichert."%s" wurde erfolgreich aktualisiert%s wurde erfolgreich gespeichertSonnenaufgangSonnenuntergangSonntagSonnenaufgangSonnenauf/untergangSonnenuntergangAlle synchronisierenSyncMLAusgelieferter FeedTagwolkeTagsAufgabenTemperatur der letzten Stunde: TemperaturTemperatur%s(%sMax%s/%sMin%s)VorlageVerbindung zu Facebook kurzzeitig unterbrochen, bitte versuchen Sie es später noch einmal.Verbindung zu Twitter kurzzeitig unterbrochen, bitte versuchen Sie es später noch einmal.Thailändisch (TIS-620)Das ferngesteuerte Löschen für das Gerät mit der ID %s wurde abgebrochen.Der Alarm wurde gelöscht.Der Alarm wurde gespeichert.Die Konfiguration für %s konnte nicht automatisch aktualisiert werden. Bitte aktualisieren Sie die Konfiguration manuell.Die Standard-E-Mail-Adresse für diese Identität:Die Sperre wurde entfernt.Der Dienst des Mitgliedslandes konnte in der vorgesehenen Zeit nicht erreicht werden. Probieren Sie es später noch einmal, oder verwenden Sie ein anderes Mitgliedsland.Der Dienst des Mitgliedslandes ist zur Zeit nicht verfügbar. Probieren Sie es später noch einmal, oder verwenden Sie ein anderes Mitgliedsland.Der angegebene Ländercode ist ungültigDer Dienst ist zur Zeit nicht verfügbar. Probieren Sie es später noch einmal.Der Dienst ist zur Zeit überlastet. Probieren Sie es später noch einmal.Die Registrierungsanfrage von "%s" wurde entfernt.Die Registrierungsanfrage von "%s" wurde entfernt.Der Status des Gerätes mit der ID %s wurde zurückgesetzt. Bei der nächsten Verbindung mit dem Server wird es neu synchronisiert.Das Testskript ist noch aktiv. Aus Sicherheitsgründen sollten Sie die Testskripte deaktivieren, wenn Sie mit allen Tests abgeschlossen haben (siehe horde/docs/INSTALL).Der Benutzer "%s" existiert bereits.Der Benutzer "%s" existiert nicht.Beim Hinzufügen von "%s" zum System ist ein Problem aufgetreten: %sBeim Löschen der Daten von Benutzer "%s" ist ein Problem aufgetreten: Beim Löschen des Lesezeichens ist ein Fehler aufgetreten: %sBeim Löschen von "%s" aus dem System ist ein Problem aufgetreten: Beim Aktualisieren von "%s" ist ein Problem aufgetreten: %sBeim Hinzufügen des Lesezeichens ist ein Fehler aufgetreten: %sIn der Kommunikation mit dem ActiveSync-Server ist ein Fehler aufgetreten: %sBeim Verbinden mit Twitter ist ein Fehler aufgetreten: %sDas Konfigurations-Formular enthielt einen Fehler. Vielleicht haben Sie ein Pflichtfeld leer gelassen.Beim Verschicken der Anfrage ist ein Fehler aufgetreten: %sBei der Facebook-Anmeldung ist ein Fehler aufgetreten. Bitte versuchen Sie es später noch einmal.Beim Löschen der allgemeinen Daten von %s ist ein Fehler aufgetreten. Details wurden protokolliert.Beim Speichern des Lesezeichens ist ein Fehler aufgetreten: %sBei der Anforderung der benötigten Rechte ist ein Fehler aufgetreten.Diese UStId-Nummer ist ungültig.Diese UStId-Nummer ist gültig.TicketsZeiterfassungZeitformatZeitstempel oder unbekanntZeitpunkte erfolgreicher SynchronisationssitzungenTitelUm schnell Lesezeichen von Ihrem Browser hinzuzufügen:Um ein bestimmtes Feld vom Import auszuschließen, oder eine falsche Zuordnung zu korrigieren, wählen Sie ein Feld in der untenstehenden Liste aus und drücken Sie "Paar löschen".Halten Sie beim Klicken Strg (PC) bzw. Command (Mac) gedrückt, um mehrere Einträge auszuwählen.HeuteMorgenObenÜbersetzungenTürkisch (ISO-8859-9)TweetTwitter-IntegrationTwitter-ZeitleisteTwitter-Zeitleiste für %sHomepage"%s" kann nicht gelöscht werden: %s."Gefällt mir" konnte nicht durchgeführt werden.Der Anfrage-Token konnte nicht verifiziert werden. Bitte versuchen Sie es noch einmal.Änderungen rückgängig machenFavorisierung zurücknehmenNicht zugeordnetUnicode (UTF-8)EinheitenUnbekanntFreigebenAktualisierung%s aktualisieren%s-Schema aktualisierenAlle DB-Schemas aktualisierenAlle Konfigurationen aktualisierenBenutzer aktualisieren"%s" wurde aktualisiert.Schema für %s wurde aktualisiert.HochladenDie Konfigurationsdateien aller Anwendungen wurden auf den Server hochgeladen.Bitte ausfüllen, wenn Sie einen anderen Benutzernamen/Passwort für den IMSP-Server haben.BenutzerBenutzerverwaltungBenutzernameBenutzerregistrierungDie Benutzerregistrierung wurde auf diesem System deaktiviert.Die Benutzerregistrierung wurde auf diesem System nicht richtig konfiguriert.Benutzerkonto nicht gefundenHinzuzufügender Benutzer:BenutzernameBenutzerBenutzer des Systems:UStIdNr-ÜberprüfungUStId-Nummer:UStId-NummerVersionscheckVersionskontrolleVietnamesisch (VISCII)Externe Webseite anzeigenSichtWarnungWetterWetterdaten vonWebsiteWeb-BrowserWillkommenWillkommen, %sWesteuropäisch (ISO-8859-1)Westeuropäisch (ISO-8859-15)Welche Anwendung soll %s nach dem Anmelden angezeigen?Was machen Sie gerade?Welches Trennzeichen wird verwendet?Welche Anführungszeichen werden verwendet?Welcher Tag soll als Wochenbeginn angezeigt werden?Welche PhasenWährend des Browsens können sie neue Lesezeichen hinzufügen, indem Sie auf die Verknüpfung "Zu Lesezeichen hinzufügen" klicken.Breite des %s-Menüs links:WLANWikiWindWindgeschwindigtkeit in KnotenWind:LöschenLöschung steht anLöschung steht anWeisheitMit ArbeitQuerverweiseJJJa, ich stimme zuDir und %d anderen Person gefällt dasDir und %d anderen Personen gefällt dasSie dürfen keine Gruppen erstellen.Sie dürfen keine Shares erstellen.Sie dürfen keine Gruppen ändern.Sie dürfen keine Shares ändern.Sie dürfen nicht mehr als %d Lesezeichen erstellen.Sie dürfen keine Gruppen löschen.Sie dürfen keine Shares löschen.Sie dürfen die Gruppen eines Shares nicht anzeigen.Sie dürfen die Rechte eines Shares nicht anzeigen.Sie dürfen Shares nicht anzeigen.Sie dürfen die Benutzer von Gruppen nicht anzeigen.Sie dürfen die Benutzer eines Shares nicht anzeigen.Sie sind nicht mit Ihrem Facebook-Konto verbunden. Sie sollten Ihre Facebook-Einstellungen in Ihren %s überprüfen.Sie können die Facebook-Einstellungen in Ihren %s überprüfen.Sie haben den Benutzungsbedingungen nicht zugestimmt und dürfen sich deswegen nicht anmelden.Sie wurden abgemeldet.Sie haben die benötigten Rechte verweigert.Sie haben Ihr Twitter-Konto nicht richtig mit Horde verbunden. Sie sollten Ihre Twitter-Einstellungen in Ihren %s überprüfen.Ihnen gefällt dasSie müssen das Problem beschreiben, um den Bericht abzuschicken.Sie müssen einen Benutzernamen angeben, dessen Daten gelöscht werden sollen.Sie müssen einen zu löschenden Benutzernamen angeben.Sie müssen einen hinzuzufügenden Benutzernamen angeben.Sie müssen den zu aktualisierenden Benutzernamen angeben.Ihre E-Mail-AdresseIhre AngabenIhre Internetadresse hat sich geändert, seit Sie die Sitzung begonnen haben. Zum Schutz Ihrer Sicherheit müssen Sie sich neu anmelden.Ihr NameIhr Authentifizierungssystem erlaubt kein Hinzufügen von neuen Benutzern. Wenn Sie Horde benutzen möchten, um Ihre Benutzer zu verwalten, müssen Sie einen anderen Authentifizierungstreiber benutzen.Ihr Authentifizierungssystem erlaubt das Anzeigen der Benutzer nicht, oder diese Möglichkeit wurde ausgeschaltet.Ihr Browser hat sich anscheinend geändert, seit Sie die Sitzung begonnen haben. Zu Ihrer Sicherheit müssen Sie sich neu anmelden.Ihr Browser unterstützt diese Funktion nicht.Ihre aktuelle Zeitzone:Ihr vollständiger Name:Ihr Zugang ist abgelaufen.Ihr neues Passwort für %s lautet: %sIhr Passwort wurde zurückgesetztIhr Passwort wurde zurückgesetzt, konnte Ihnen aber nicht zugeschickt werden. Bitte wenden Sie sich an den Administrator.Ihr Passwort wurde zurückgesetzt. Rufen Sie Ihre E-Mail-Nachrichten ab und melden Sie sich mit Ihrem neuen Passwort an.Ihr Passwort wurde erfolgreich geändert. Sie müssen sich mit dem neuen Passwort erneut anmelden.Ihr Passwort ist abgelaufenIhr Passwort ist abgelaufen.Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an.Ihre Sitzung hat die maximal erlaubte Dauer überschritten. Bitte melden Sie sich erneut an.Zippy[Problembericht]_Alarme_ListeBe_fehlszeile_Konfiguration_GruppenS_perren_Neues Lesezeichen_Rechte_BenutzerAnhangwindstillKlickKlicksaus %s (%s) mit %s %sböigInlineBenutzereinstellungenUnterschiede anzeigenMit "%s" getaggt.Geben Sie das Passwort ein zweites Mal zur Bestätigung einunifiedWettertrean-1.0.3/locale/de/LC_MESSAGES/trean.po0000664000175000017500000001747212171337643016037 0ustar janjan# German translations for Trean # Copyright 2002-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Trean package. # Jan Schneider , 2002-2013. # msgid "" msgstr "" "Project-Id-Version: Trean H5 (1.0-git)\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-07-16 21:24+0200\n" "PO-Revision-Date: 2013-07-16 21:29+0200\n" "Last-Translator: Jan Schneider \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" #: lib/Block/Bookmarks.php:53 lib/Block/Mostclicked.php:44 msgid "1 Line" msgstr "1 Zeile" #: lib/Block/Bookmarks.php:41 lib/Block/Mostclicked.php:32 msgid "10 rows" msgstr "10 Zeilen" #: lib/Block/Bookmarks.php:42 lib/Block/Mostclicked.php:33 msgid "15 rows" msgstr "15 Zeilen" #: lib/Block/Bookmarks.php:52 lib/Block/Mostclicked.php:43 msgid "2 Line" msgstr "2 Zeilen" #: lib/Block/Bookmarks.php:43 lib/Block/Mostclicked.php:34 msgid "25 rows" msgstr "25 Zeilen" #: lib/Block/Bookmarks.php:51 lib/Block/Mostclicked.php:42 msgid "3 Line" msgstr "3 Zeilen" #: templates/add.html.php:52 msgid "Add" msgstr "Hinzufügen" #: templates/bookmarklet.html.php:1 msgid "Add to Bookmarks" msgstr "Zu Lesezeichen hinzufügen" #: templates/list.html.php:13 msgid "Added" msgstr "Hinzugefügt" #: config/prefs.php:36 msgid "Ascending (A to Z or oldest to newest)" msgstr "Aufsteigend (A nach Z oder älteste nach neueste)" #: add.php:47 msgid "Bookmark Added" msgstr "Lesezeichen hinzugefügt" #: edit.php:19 #, php-format msgid "Bookmark not found: %s." msgstr "Lesezeichen nicht gefunden: %s." #: config/prefs.php:26 msgid "Bookmarked on" msgstr "Datum" #: lib/Block/Bookmarks.php:19 lib/Block/Bookmarks.php:64 #: lib/View/BookmarkList.php:120 msgid "Bookmarks" msgstr "Lesezeichen" #: lib/Trean.php:71 msgid "Bookmarks Feed" msgstr "Lesezeichen-Feed" #: browse.php:31 msgid "Browse" msgstr "Liste" #: templates/add.html.php:53 templates/edit.html.php:63 msgid "Cancel" msgstr "Abbrechen" #: templates/list.html.php:14 msgid "Clicks" msgstr "Klicks" #: lib/Api.php:130 msgid "Close" msgstr "Schließen" #: app/controllers/DeleteBookmark.php:13 msgid "Deleted bookmark: " msgstr "Lesezeichen gelöscht: " #: config/prefs.php:37 msgid "Descending (9 to 1 or newest to oldest)" msgstr "Absteigend (9 nach 1 oder neuste nach älteste)" #: templates/add.html.php:25 templates/edit.html.php:34 msgid "Description" msgstr "Beschreibung" #: config/prefs.php:13 msgid "Display Preferences" msgstr "Anzeige-Einstellungen" #: lib/Block/Bookmarks.php:37 msgid "Display Rows" msgstr "Angezeigte Zeilen" #: templates/add.html.php:64 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" "Ziehen Sie den \"Zu Lesezeichen hinzufügen\" Link auf die \"Links\"-" "Symbolleiste" #: templates/add.html.php:62 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "Ziehen Sie den \"Zu Lesezeichen hinzufügen\" Link auf die \"Persönliche " "Symbolleiste\"" #: templates/list.html.php:55 msgid "Edit" msgstr "Bearbeiten" #: edit.php:42 msgid "Edit Bookmark" msgstr "Lesezeichen bearbeiten" #: templates/add.html.php:61 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: templates/add.html.php:63 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/add.html.php:38 templates/edit.html.php:47 msgid "Loading..." msgstr "Lade..." #: lib/Application.php:74 msgid "Maximum Number of Bookmarks" msgstr "Maximale Anzahl an Lesezeichen" #: config/prefs.php:25 lib/Block/Bookmarks.php:33 msgid "Most Clicked" msgstr "Am häufigsten geklickt" #: lib/Block/Mostclicked.php:19 msgid "Most-clicked Bookmarks" msgstr "Meistgeklickte Lesezeichen" #: add.php:78 templates/add.html.php:9 msgid "New Bookmark" msgstr "Neues Lesezeichen" #: search.php:43 msgid "No bookmarks found" msgstr "Keine Lesezeichen gefunden" #: lib/Block/Bookmarks.php:91 lib/Block/Mostclicked.php:72 msgid "No bookmarks to display" msgstr "Keine Lesezeichen" #: browse.php:18 msgid "No bookmarks yet." msgstr "Keine Lesezeichen" #: search.php:50 msgid "No search" msgstr "Keine Suche" #: templates/add.html.php:67 msgid "Note:" msgstr "Anmerkung:" #: lib/Block/Mostclicked.php:28 msgid "Number of bookmarks to show" msgstr "Anzahl der angezeigten Lesezeichen" #: templates/add.html.php:68 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "In neueren Versionen des Internet Explorer müssen Sie unter Umständen %s://" "%s zur Vertrauenswürdigen Zone hinzufügen." #: config/prefs.php:46 msgid "Open links in a new window?" msgstr "Links in neuem Fenster öffnen?" #: config/prefs.php:12 msgid "Other Preferences" msgstr "Andere Einstellungen" #: templates/add.html.php:43 templates/edit.html.php:52 msgid "Previously used tags" msgstr "Bisher verwendete Tags" #: lib/View/BookmarkList.php:214 msgid "Remove from search" msgstr "Aus der Suche entfernen" #: templates/edit.html.php:62 msgid "Save" msgstr "Speichern" #: search.php:36 msgid "Search" msgstr "Suche" #: search.php:47 #, php-format msgid "Search results (%s)" msgstr "Suchergebnisse (%s)" #: templates/add.html.php:41 templates/edit.html.php:50 msgid "See previously used tags" msgstr "Bisher verwendete Tags anzeigen" #: config/prefs.php:14 msgid "Set how to display bookmark listings and how to open links." msgstr "" "Legen Sie fest wie die Lesezeichenlisten angezeigt und wie Links geöffnet " "werden." #: config/prefs.php:28 msgid "Sort bookmarks by:" msgstr "Lesezeichen sortieren nach:" #: lib/Block/Bookmarks.php:28 msgid "Sort by" msgstr "Sortieren nach" #: config/prefs.php:38 msgid "Sort direction:" msgstr "Sortierrichtung:" #: lib/Application.php:99 templates/add.html.php:30 templates/edit.html.php:39 msgid "Tags" msgstr "Tags" #: lib/Block/Bookmarks.php:47 lib/Block/Mostclicked.php:38 msgid "Template" msgstr "Vorlage" #: app/controllers/DeleteBookmark.php:16 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Beim Löschen des Lesezeichens ist ein Fehler aufgetreten: %s" #: add.php:41 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Beim Hinzufügen des Lesezeichens ist ein Fehler aufgetreten: %s" #: app/controllers/SaveBookmark.php:26 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Beim Speichern des Lesezeichens ist ein Fehler aufgetreten: %s" #: config/prefs.php:24 lib/Block/Bookmarks.php:32 templates/add.html.php:20 #: templates/edit.html.php:29 templates/list.html.php:12 msgid "Title" msgstr "Titel" #: templates/add.html.php:60 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Um schnell Lesezeichen von Ihrem Browser hinzuzufügen:" #: templates/add.html.php:15 templates/edit.html.php:24 msgid "URL" msgstr "Homepage" #: templates/add.html.php:65 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Während des Browsens können sie neue Lesezeichen hinzufügen, indem Sie auf " "die Verknüpfung \"Zu Lesezeichen hinzufügen\" klicken." #: add.php:25 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Sie dürfen nicht mehr als %d Lesezeichen erstellen." #: lib/Application.php:84 msgid "_Browse" msgstr "_Liste" #: lib/Application.php:94 msgid "_New Bookmark" msgstr "_Neues Lesezeichen" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "click" msgstr "Klick" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "clicks" msgstr "Klicks" #: app/controllers/BrowseByTag.php:23 #, php-format msgid "tagged %s" msgstr "Mit \"%s\" getaggt." trean-1.0.3/locale/de/help.xml0000644000175000017500000000151312171337643014236 0ustar janjan Übersicht Einführung Die Lesezeichen-Anwendung ermöglicht Ihnen, Ihre Browser-Lesezeichen zentral und vom jedem Ort zugreifbar zu speichern, organisieren und verwalten. Auf die Lesezeichen, die Sie hier speichern, können sie von überall und mit jedem Browser zugreifen. Dadurch haben Sie Zugriff auf dieselben Lesezeichen von unterschiedlichen Browsern, Rechnern, Orten usw. Sie können Browser aktualisieren, austauschen und ausprobieren, ohne sich über den Verlust oder den Import Ihrer Lesezeichen Gedanken machen zu müssen. trean-1.0.3/locale/en/help.xml0000644000175000017500000000145712171337643014257 0ustar janjan Overview Introduction The Bookmarks application allows you to store, organize and manage, and most importantly access your web browser booksmarks on-line and in one central place accessible from any web browser. By storing your bookmarks here, you can access them from any browser on any machine. This means you can easily access your bookmarks from multiple browsers, multiple machines, remote locations, etc. And if you upgrade, switch, or test out browsers, you don't have to worry about what happens to your bookmarks or how to import them into the new browser. trean-1.0.3/locale/es/LC_MESSAGES/trean.mo0000664000175000017500000021004712171337643016044 0ustar janjanz7HJ$IJ)nJJ&J J$J K)K@KOK _KkK|KK K)K7KJLHcLRLLM(M.M5M=MDMLM[McMjMrMMMMMMVMNl#NNNNN N NNOO O ,O 6O BONO ^OlOuOOONO-OP,P 4PAP PP ZP hP tP PPPP#PlP%?QeQkQ ~QQQQQQQ Q RR5R=R%SR<yR%RRR&R S)&S PS[S'oS,S*S%ST &T 0TQTcT rT|T TTTT T TTT U UU(U-U4U;UCULUSUZU pU@|UUUUV VV!2VdTVVVVVV W1"W*TWW WW WWQW(X:X AXOX UXbXiX|X XXX X X X X X XX=YAY'_Y YYYY.Y*Y3ZKCZIZZ|[([5[X[T\*\]]!]5]F] U]c] t]]]]]]]^ ^^^ ^*^=^A^ I^ W^,e^4^ ^^ ^^ ^ _*_BH_'__ _ __ __``(`8`H`"e` `` ```` ``aC'aka a/a<aDbIbObWbmb rb |bbbb b bbb"b{cLcOc'/d(Wddddddddd e ee,e4e ;eGece-xee e ee eeee f fff$f|3ffff ff fff gg>gSg dg ngxgggggg ggg gh#h*h yIyRyfyyyyyyy yyz&z+z 2z=zVz(ozPzz zz{ {{B{{||1| F|P| d| p|}||||| |4|G|9}X} m}{} }} }}} }6} ~~-~3~ K~W~q~~~O~~-CK[o   'R7,ŀ̀Ԁ+5A wˁ7Wk t;J.9-h;[҃1. `-nO %DWh n{ υ  ):AZdaCƆ &89r*;(7MV^em|  ͈و>>>}4݉c5[hf%|83ۋ-2=ep֌[y1Aɍ- 39%m*?)T()}KI*=1h*(Ő 1%W:]Vrx Ғ D bow ԓ ;&2b 2ʔ;9 P]fl •Е !)B KW _k/Ɩ F! hnu! )/ 4AQX^ci lDy""%%*5P%%-ҙ.#/,S,c5VG*s WEe)&՜%("K^vo sy+ğԟ \)Qfؠ?Y-tX"'6> E S` grw}  ʢ"Ԣ)++) U*` 5̥ۥ -H-W8\Uq &/5>G[ d nx tĨ9{Vҩة # =Hfn ŪӪ^<|,  ->N`g!mDԬ5c"ŭ*٭3#L p zŮ!ݮ9"9\p,u-&(!)J4t%Ű  +8OWj y$ ±ͱ =hNϲ 1hP ó ޳,.+[ʴٴYLckеص   + :N['2Ҷ  )30:AkGSQI'hBMӹ!1\ʻۻ '@'] μ Ӽ<DE  νݽFT<* Ѿ ޾ $=Ur-9+: Q!\~ Z 0 Q8^SN: AK jt  , :QP*h+& ,=L \ fr G &3Nb{   +> T_o $+ AMcWj $#6J!P=r #&3Z C,;p5 "9 Wb_y  '.5Fd#u   )#7%[%+  &/?E`Z)(+169? FmR%! >^%|%  (8#A"eB  &9`e  #; "! DPo x 8 "/L f .I$4YWvN!?$Ty $ 2Qfy;' %"H"Z}  # $0(N&w#. 7DMi$M  a$s!  5>DX]@oV)1Mk >3D Y%c c|   '0 JUk! _=S  /FP&$ $#)M&mH'Sp40@*}k4 =,jrE0$;S\!r   )3BU \ }|UZ-aF#/Q*;|$  " 5?QXq % A@3t8c1Y++MH%-n-N7!IY27/.>Cm0l/ORX.+0Z52 <6s;{r\ !8UYwd * 3 ? K Vd#z$ SCg5F&$m/"!0 KUi   '   =$b$z"<  % $+14XC'5)7$4\(6=J/6z1?q#;b4%Mos6,) ,V + .      vQ  ,M z   #  h \e w :U1q`   (27G OY b lv~  1  >qX^j m3P[1h`*P ;^nCW&vp-Ncr?KXRdO!%zl1a i5zHv{V6h>x $jUCi("d;@4L E]0(( EeUg% ,j[ \ urs+|FBQcpAmt} W>boGD \6 LNzkIf3x)T'Qha|Y7{~ BU$QZd M=r/"la)q7y'"!$-D-<_=@17CR$*KBuPxTk0u2-TW FGV];@*S&3TGn}oq)+Z:~ .'l= + A9jK4J63,^Iwsk|oU<o.>8mcyYA 5nVct#tH8)?5#],`vX}vY6:J0DL%J'HZbQ/rd1A"[PgS@*!~I8:Y]B7i2[9m/ igJM0M9w#n2&=M`!V RZfb\I KH(Of9ES4<O/.4EeaehS5z\ps,q<Neu_ktf+G_w_.b{yy x%O:;gLXFFwlRC` ^?s&DW28?#Np"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d days until your password expires.%d minutes%d person likes this%d persons like this%d to %d of %d%d-day forecast%s - Notice%s Configuration%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s can interact with your Twitter account%s cannot read information about your Facebook friends.%s cannot read your stream messages and various other Facebook data items.%s cannot set your status messages or publish other content to Facebook.%s is ready to perform the tasks below. Select each operation to run at this time., gusting %s %s, variable from %s to %s1 Day1 Line1 Month1 Week10 rows12 Hour Format15 rows2 Line2 Weeks24 Hour Format24 hours24-hour format25 rows3 Days3 LineA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM/PMAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd ContentAdd Here:Add MembersAdd a groupAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAddedAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.AllowAllow alphanumericAllow anyAllow only numericAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAnswerApplicationApplication ContextApplication is ready.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscending (A to Z or oldest to newest)Ascii ArtAt least one database schema is outdated.AttachmentAttachment DownloadAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated toAuthorizeAuthorize Access to Friends DataAuthorize PublishAuthorize ReadAutomaticAvailable fields:BOFH ExcusesBaltic (ISO-8859-13)BasicBlock SettingsBlock TypeBluetoothBookmark AddedBookmark not found: %s.Bookmarked onBookmarksBookmarks FeedBothBottomBrowseBrowserCalendarCameraCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.Categories and LabelsCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClicksClient AnchorCloseClose WindowCloudsCodeword frequencyCollapseColor PickerComicsCommandCommand ShellComments: %dComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm PasswordContinueCookieCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for %s to interact with your Facebook account.Could not find authorization for %s to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DDDataDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.DefinitionsDeleteDelete "%s"Delete All SyncML DataDelete GroupDeleted bookmark: Deleted configuration upgrade script "%s".Deleted synchronization session for device "%s" and database "%s".Descending (9 to 1 or newest to oldest)Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice InformationDevice ManagementDevice encryptionDevice is WipedDevice is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDisableDisplay 24-hour times?Display PreferencesDisplay RowsDisplay detailed forecastDisplay forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload generated configuration as PHP script.Drag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrugsDynamicEU VAT identificationEditEdit "%s"Edit BookmarkEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnglishEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter. Details have been logged for the administrator.Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExtra LargeFTP upload of configurationFacebook IntegrationFailed unlock attempts before device is wipedFeedFeed AddressFeels LikeFields to searchFile ManagerFilterFiltersFirefox/MozillaFirst HalfFirst QuarterFoodForceForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFriend Requests:Friends enabled.From the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoogle SearchGreek (ISO-8859-7)Group AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTML EmailHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hide Advanced PreferencesHide ResultsHome DirectoryHordeHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsIcons for %sIdentity's name:Import, Step %dImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Incorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internet ExplorerInvalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid parent permission.InventoryJapanese (ISO-2022-JP)JavaScript is either disabled or not available on your browser. You are restricted to the minimal view.Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLawLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLoading...Local time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogged in to FacebookLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize %sLogin to Twitter and authorize %sLogoutLoveMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.Matching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Email ageMaximum Number of BookmarksMaximum Number of Portal BlocksMaximum attachment sizeMaximum number of devicesMaximum number of entries to displayMedicineMediumMembersMentionsMetar WeatherMetricMin temp last 24 hours: Min temp last 6 hours: Minimum PIN lengthMinutes of inactivity before device should lockMiscellaneousMissing configuration.Mobile (Minimal)Mobile (Smartphone/Tablet)Mobile Optimized AppsModeModule is up-to-date.MondayMoon PhasesMost ClickedMost-clicked BookmarksMy AccountMy Account InformationMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeverNew BookmarkNew CategoryNew Messages:New MoonNew Username (optional)New passwordNew passwords don't match.NewsNextNext 4 PhasesNo SoundNo available configuration data to show differences for.No bookmarks foundNo bookmarks to displayNo bookmarks yet.No change.No icons found.No items to displayNo location is set.No offensive fortunesNo pending signups.No push while roamingNo searchNo security question has been set. Please contact your administrator.No stable version exists yet.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.NoSQL indices are ready.NoSQL indices for %sNoSQL indices out of date.NoneNordic (ISO-8859-10)Northern HemisphereNot ProvisionedNote:NotesNothing to browse, go back.Number of articles to displayNumber of bookmarks to showNumber of seconds to wait to refreshObject BrowserObject CreatorOffense filterOfficeOld and new passwords must be different.Old passwordOld password is not correct.On newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOr enter a user name:Other InformationOther OptionsOther PreferencesOthersOwnerOwner:PHPPHP CodePHP ShellPOP/IMAP Email accountsPOSIX extension is missingP_HP ShellPasswordPassword ComplexityPassword changed successfully.Passwords must match.PastePending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a password.Please enter a username.Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Pokes:Policy KeyPoliticsPosition of reply text when replying to email on your device. Note that some devices will always send the citation string at the end of the reply text.Posted %sPosted %s via %sPrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePressurePressure at sea level: Previously used tagsPrincipalProblem DescriptionProvisionedProvisioningPublish enabled.QueryQuotaRandom FortuneReadRead enabled.Really delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRegular AppsRemarksRemote HostRemoveRemove from searchRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sReplyReprovision All DevicesRequire PINRequire S/MIME EncryptionRequire S/MIME SignatureResetReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSD cardSD card encryptionSMS Text messagesSQL DB schema is out of date.SQL DB schema is ready.SQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch results (%s)Search:Select a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Send Problem ReportSensor: Server TimeSession AdministrationSession TimestampSessionsSet how to display bookmark listings and how to open links.Set preferences to allow you to reset your password if you ever forget it.Set up integration with your Facebook account.Set up integration with your Twitter account.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?ShowShow Advanced PreferencesShow differences between currently saved and the newly generated configuration.Show extra detail?Show last login time when logging in?Show notificationsSkip Login TasksSmallSnow depth: Snow equivalent in water: Songs & PoemsSort bookmarks by:Sort bySort direction:South European (ISO-8859-3)Southern HemisphereSpamSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubmitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSync allSyncMLSyndicated FeedTag CloudTagsTasksTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)TemplateTemporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Thai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem deleting the bookmark: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error saving the bookmark: %sThere was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.TicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTopTranslationsTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sURLUnable to delete "%s": %s.Unable to set like.Unable to validate the request token. Please try your request again.Undo ChangesUnfiledUnicode (UTF-8)UnitsUnknownUnlockUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated schema for %s.UploadUploaded all application configuration files to the server.Use if name/password is different for IMSP server.UserUser AdministrationUser NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWeb browserWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Width of the %s menu on the left:WifiWikiWindWind speed in knotsWind:WipeWipe PendingWipe is pendingWisdomWith WorkX-RefYYYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are not connected to your Facebook account. You should check your Facebook settings in your %s.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You have been logged out.You have denied the requested permissions.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has been succesfully changed. You need to re-login to the system with your new password.Your password has expiredYour password has expired.Your session has expired. Please login again.Your session length has exceeded the maximum amount of time allowed. Please login again.Zippy[Problem Report]_Alarms_Browse_CLI_Configuration_Groups_Locks_New Bookmark_Permissions_Usersattachmentcalmclickclicksfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestagged %stype the password twice to confirmunifiedweatherProject-Id-Version: Trean H5 (1.0.1-git) Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-05-07 14:15+0200 PO-Revision-Date: 2013-06-11 20:26+0200 Last-Translator: Manuel P. Ayala , Juan C. Blanco Language-Team: i18n@lists.horde.org Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Se ha añadido "%s" al sistema de grupos.Se ha añadido "%s" al sistema de permisos.No se ha creado "%s": %s.%.2fMB usados de %.2fMB permitidos (%.2f%%)%d %s y %s%d días hasta que caduque su contraseña.%d minutos%d persona le gusta ésto%d personas les gusta ésto%d al %d de %d%d pronósticos diarios%s - AvisoConfiguración de %s%s Tareas - ConfirmaciónAcuerdos de licencia de %s%s a las %s %s%s puede interactuar con su cuenta de Twitter%s no puede leer información de sus amigos de Facebook.%s no puede leer sus corrientes de mensajes y diversos otros elementos de datos de Facebook.%s no puede modificar sus mensajes de estado o publicar otros contenidos en Facebook.%s está listo para realizar las operaciones indicadas a continuación. Seleccione cada operación que desee realizar en esta ocasión., ventoso %s %s, variable de %s a %s1 Día1 línea1 Mes1 Semana10 filasFormato de 12 horas15 filas2 líneas2 SemanasFormato de 24 horas24 horasFormato de 24 horas25 filas3 Días3 líneasSe ha solicitado el borrado de un dispositivo. El dispositivo se borrará en el próximo intento de sincronización.Hay una versión nueva (%s).Se ha iniciado un borrado remoto del dispositivo con id %s. El dispositivo se borrará durante la próxima sincronización.AM/PMInformación de cuentaContraseña de accesoAccionesActiveSyncGestión de dispositivos ActiveSyncActiveSyncActiveSync no está activado.AñadirAñadir contenidoAñadir aquí:Añadir miembrosAñadir un grupoAñadir un usuario:Añadir avisoAñadir correspondenciaAñadir a los marcadoresAñadir usuarioAñadidoSe ha añadido "%s" al sistema, pero no se pudo añadir la información adicional de alta: %s.Se ha añadido "%s" al sistema. Ya puede iniciar la sesión.La adición de usuarios está deshabilitada.DirecciónDireccionesAdministraciónFin del avisoMétodos de avisoInicio del avisoTexto del avisoTítulo del avisoAvisosTodosTodos los usuarios autentificadosSe han reiniciado correctamente todas las asignaciones por omisión.Se ha eliminado toda la información de estado de sus dispositivos ActiveSync.Se resincronizarán la próxima vez que se conecten al servidor.Se han eliminado todas las sesiones de conciliación.PermitirPermitir caracteres alfanuméricosPermitir cualquieraPermitir únicamente caracteres numéricosAcceso IMSP alternativoClave IMSP alternativaUsuario IMSP alternativoDirección electrónica alternativaRespuestaAplicaciónContexto de la aplicaciónLa aplicación está lista.AprobarArábigo (Windows-1256)¿Seguro que desea eliminar "%s"?¿Seguro que desea eliminar la solicitud de alta de "%s"?¿Seguro que quiere eliminar "%s"?Armenio (ARMSCII-8)ArteAscendente (A a la Z o antiguos a recientes)Gráficos AsciiAl menos hay un esquema de BD desactualizado.AdjuntoDescargar adjuntoIntenta eliminar un grupo inexistente.Intenta eliminar un permiso inexistente.Intenta modificar un permiso inexistente.Intenta modificar un recurso compartido inexistente.Autentificado paraPermitirPermitir acceso a los datos de AmigosPermitir publicarPermitir leerAutomáticoCampos disponibles:Excusas BOFHBáltico (ISO-8859-13)BásicoOpciones de bloqueTipo de bloqueBluetoothMarcador añadidoNo se ha encontrado el marcador: %s.MarcadoMarcadoresSuscripción de marcadoresAmbasAbajoExaminarNavegadorAgendaCámaraCancelarCancelar informe de problemasCancelar borradoNo se puede actualizar la clave automáticamente, póngase en contacto con su administrador del sistema.Categorías y etiquetasCéltico (ISO-8859-14)Europa Central (ISO-8859-2)CambiarCambiar ubicaciónCambiar contraseñaCambiar información personal.La configuración actual no admite el cambio de contraseñas. Contacte con el administrador del sistema.ComprobarComprobar versiones nuevasComprobandoChino simplificado (GB2312)Chino tradicional (Big5)Seleccionar %sElija cómo mostrar las fechas (abreviadas):Elija cómo mostrar las fechas (completas):Elija cómo mostrar las horas:Limpiar consultaBorrar usuario: %sBorrar usuarioBorrar datos del usuarioPulse una de sus Libretas de direcciones y seleccione todos los campos en los que buscar.Haga click para seguirVisitasReferencia del clienteCerrarCerrar ventanaNubesFrecuencia de códigosColapsarSelector de colorCómicsComandoIntérprete de comandosComentarios: %dOrdenadoresPrevisiónPrevisionesConfiguraciónDiferencias de la configuraciónConfiguración para conciliación con PDAs, teléfonos inteligentes y Outlook.La configuración está desactualizada.Hay guiones de actualización de la configuraciónConfigurar %sConfirmar contraseñaContinuarCookieNo se pudo conectar al servidor "%s" por FTP: %sNo se pudo contactar con el servidor, pruebe otra vez más tarde.No se pudo eliminar el guión de actualización de configuración "%s".No se pudieron encontrar permisos de %s para interactuar con su cuenta de Facebook.No se pudieron encontrar permisos de %s para interactuar con su cuenta de TwitterNo se pudo restablecer la contraseña del usuario solicitado. Parte de los detalles o todos son incorrectos. Pruebe otra vez o póngase en contacto con el administrador del sistema para más información.No se pudo restaurar la configuración.No se pudo guardar una copia de seguridad de la configuración: %sNo se pudo guardar el guión de actualización de la configuración en: "%s".No se pudo guardar el archivo de configuración %s. Utilice una de las siguientes opciones para guardar manualmente el código.No se pudo guardar el archivo de configuración %s. Puede utilizar una de las opciones para hacer una copia de seguridad del código en %s o copiar manualmente a %s el código siguiente.No se pudo escribir la configuración de "%s": %sPaísCrearCrear identidad4 fases actualesAvisos activosBloqueos activosSesiones activasHora actualTiempo actualEstado actualCirílico (KOI8-R)Cirílico (Windows-1251)Cirílico/Ucraniano (KOI8-U)No se ha configurado el acceso a la BD.DDDatosBase de datosFechaSe ha recibido la fechaFecha: %s; hora: %sDíaPor omisiónColor por omisiónConsola por omisiónJuego de caracteres por omisión para el envío de mensajes:Ubicación por omisión utilizada para las opciones que lo precisen.DefinicionesEliminarEliminar "%s"Eliminar todos los datos SyncMLEliminar grupoMarcadores eliminados: Se ha eliminado el guión de actualización de la configuración "%s".Se ha borrado la sesión de conciliación del dispositivo "%s" y base de datos "%s".Descendente (9 a 1 o recientes a antiguos)Describa el problemaDescripciónDesarrolloDispositivoID de dispositivoInformación del dispositivoGestión de dispositivosCifrado del dispositivoEl dispositivo se ha borradoEl dispositivo se ha borradoSe ha eliminado correctamente el dispositivo.Se ha cancelado correctamente el borrado del dispositivo.Punto de condensaciónPunto de condensación de la última hora: Punto de condensaciónDesactivar¿Mostrar en formato de 24-horas?Mostrar opcionesMostrar filasMostrar pronóstico detalladoMostrar pronóstico (TAF)¿Contiene la primera fila los nombres de los campos? Si es así, seleccione esta casilla:¿Carece de cuenta? Regístrese.Descargar %sDescargar la configuración generada como un guión PHP.Arrastre el vínculo inferior "Añadir a los marcadores" a su barra de "Vínculos"Arrastre el vínculo inferior "Añadir a los marcadores" a su "Barra personal"DrogasDinámicoIdentificación de IVA EuropeoModificarModificar "%s"Modificar marcadorModificar opciones deModificar permisosModificar permisos de "%s"EducaciónDirección de correoHora finalInglésIntroduzca el nombre de la nueva categoría:Introduzca una pregunta de seguridad que se le formulará si precisa reajustar la contraseña, p.e. '¿Cuál es el nombre de su mascota?':Error conectando a Twitter. Se han registrado los detalles para el administrador.Error conectando a Twitter: Se han registrado %s detalles para el administrador.Error eliminando sesión de conciliación:Error eliminando sesiones de conciliación:Error al actualizar la contraseña: %sÉtnicoInvitaciones a acontecimiento:Cada 15 minutosCada 2 minutosCada 30 segundosCada 5 minutosCada media horaCada horaCada minutoValores de ejemplo:EjecutarExpandirExtra grandeCarga FTP de la configuraciónIntegración con FacebookIntentos fallidos de desbloqueo antes de que el dispositivo sea borradoSuscripciónDirección de suscripciónSensación térmicaCampos en los que buscarArchivosFiltroFiltrosFirefox/MozillaCuarto crecienteCuarto crecienteComidaForzarPronóstico (TAF)Días del pronóstico (tenga en cuenta que el pronóstico facilitado incluye tanto el día como la noche; un número grande se traducirá en un bloque muy ancho)¿Ha olvidado la contraseña?FormulariosFortunaTipo de fortunaFortunasFortunas 2ForosPeticiones de amigos:Amigos habilitados.Del %s (%s °) a las %s %sDel %s a las %s %sDescripción completaLuna llenaNombre completoGenerar configuración de %sCódigo generadoTraer másGlobalesIrGoedelBúsqueda en GoogleGriego (ISO-8859-7)Gestión de gruposNombre de grupoNo se ha creado el grupo: %s.GruposPermisos del invitadoCorreo HTMLHebreo (ISO-8859-8-I)AlturaTamaño del contenido de la corriente (la anchura se ajusta automáticamente al bloque)AyudaTemas de _ayudaHemisferioAquí tiene el comienzo del archivo:Ocultar opciones avanzadasOcultar resultadosDirectorio personalHorde¿Cuántos campos (columnas) hay?¿Intervalo en segundos entre consultas de artículos nuevos?HumedadHumoristasIconos para %sNombre de la identidad:Importar, paso %dCampo importado: %sCampos importados:En respuesta a:En la lista siguiente seleccione tanto un campo importado del archivo origen de la izquierda como el campo correspondiente disponible en la libreta de direcciones de la derecha. Luego pulse "Añadir correspondencia" para marcarlos para la importación. Cuando haya terminado, pulse "Siguiente".Nombre de usuario o dirección alternativa incorrectos. Vuelva a intentarlo o póngase en contacto con el administrador de sistemas para más información.Usuarios individualesInformaciónMiembros heredadosInsertar una dirección de correo en la que recibir la contraseña:Insertar la respuesta necesaria a la pregunta de seguridad:Internet ExplorerFormato de número de identificación VAT no válido.Acción no válida %sAplicación no válida.Referencia no válida.Permiso no válido del padre.InventarioJaponés (ISO-2022-JP)O su navegador no dispone de JavaScript o está desactivado. Está limitado a la vista Mínima.Ahora mismo...Novatos del KernelPalabra claveNiñosKolabCoreano (EUC-KR)IdiomaGrandeCuarto menguanteÚltimo cambio de contraseñaCuarto menguanteFecha de la última sincronizaciónÚltima actualización:Última sesión: %sÚltima sesión: %s desde %sÚltima sesión: NuncaÚltimosLeyesGustosChascarrilloCookie LinuxListar tablasHa fallado el listado de avisos: %sHa fallado el listado de bloqueos: %sHa fallado el listado de sesiones: %sEl listado de usuarios está deshabilitado.LiteraturaCargando...Hora local: %s %sIdioma y horaUbicaciónBloquear usuarioBloqueosIniciar sesiónSalirConectado a FacebookFalló el inicio de sesión porque introdujo incorrectamente su nombre de usuario o contraseña.Falló el inicio de sesión.Iniciar sesión en Facebook y permitir %sIniciar sesión en Twitter y permitir %sSalirAmorMMMagiaCorreoAdm. correoGestiona la lista de categorías con la que etiquetar elementos y los colores asociados a dichas categorías.Gestiona sus dispositivos ActiveSync.Campos coincidentes:Temp. máxima últimas 24 horas: Temp. máxima últimas 6 horas: Antigüedad máxima de mensajesMáximo número de marcadoresNúmero máximo de bloques del portalTamaño máximo de adjuntosNúmero máximo de dispositivosNúmero máximo de entradas mostradasMedicinaMedianoMiembrosMencionesTiempo de MetarMétricoTemp. mín. las últimas 24 horas: Temp. mín. las últimas 6 horas: Longitud mínima de PINMinutos de inactividad antes de que el dispositivo deba bloquearseMisceláneaConfiguración no encontrada.Móvil (Mínimo)Móvil (Smartphone/Tablet)Aplicaciones optimizadas para móvilesModoEl módulo está actualizado.LunesFases de la lunaMás visitadosMarcadores más visitadosMi cuentaInformación de cuentaMi corriente FacebookMi portalDistribución de mi portalN/ANO, NO estoy de acuerdoOBSERVACIÓN: EL BORRADO DE UN DISPOSITIVO PUEDE REINICIARLO AL ESTADO INICIAL DE FÁBRICA. ASEGÚRESE DE QUE REALMENTE QUIERE HACERLO ANTES DE EJECUTARLONombreNuncaNuevo marcadorAñadir categoríaMensajes nuevos:Luna nuevaNuevo nombre de usuario (opcional)ContraseñaLas contraseñas no coinciden.NoticiasSiguientePróximas 4 fasesSin sonidoNo hay datos de configuración para mostrar diferencias.No se han encontrado marcadoresSin marcadores visiblesNo hay marcadoresSin cambios.No se han encontrado iconos.Sin elementos que mostrarNo se ha definido la ubicación.No ofensivasSin altas pendientes.No actualizar mientras se esté en itineranciaNo hay búsquedaNo se ha indicado una pregunta de seguridad. Consulte a su administrador.Aún no existe una versión estable.No se ha indicado un nombre.No se encontró la versión en la configuración original. Regenerar la configuración.No se encontró la versión en la configuración. Regenerar la configuración.Los índices NoSQL están listos.Índices NoSQL de %sLos índices NoSQL están obsoletos.NingunaNórdico (ISO-8859-10)Hemisferio norteSin aprovisionarComentario:NotasNo hay nada visualizable, retroceda.Número de artículos mostradosCantidad de marcadores mostradosSegundos de espera de refrescoNavegador de objetosCreador del objetoFiltrar ofensasOficinaLa contraseña antigua y la nueva tienen que ser distintas.Contraseña anteriorLa contraseña anterior no es correcta.En versiones recientes de Internet Explorer para que ésto funcione puede que tenga que añadir %s://%s a su zona de confianza.Sólo ofensivasSólo el propietario o el administrador del sistema pueden cambiar la propiedad o los permisos del propietario de un recurso compartido¿Abrir vínculos en ventanas nuevas?Sistema operativoO introduzca un nombre de usuario:Otra informaciónOtras opcionesOtras opcionesOtrosPropietarioPropietario:PHPCódigo PHPPHPCuentas de correo POP/IMAPNo se encuentra la extensión POSIXP_HPContraseñaComplejidad de la contraseñaLa contraseña se cambió correctamente.Las contraseñas tienen que coincidir.PegarAltas pendientes:GenteEjecutar tareas de inicioNo se ha eliminado el permiso "%s".PermisosGestión de permisosInformación personalMascotasFotografíasTópicosIntroduzca una contraseña.Introduzca un usuario.Proporcione un resumen del problema.Lea el texto siguiente. DEBE aceptar los términos si quiere usar el sistema.Toques:ComportamientoPolíticasPosición del texto de respuesta cuando se contesta a un correo electrónico en su dispositivo. Tenga en cuenta que algunos dispositivos pueden enviar la cita del mensaje original al final del texto de respuesta.%s enviadoEnviado %s a través de %sPrecipitaciones de la(s) última(s) %d hora(s): Precipitaciones de la(s) última(s) %d hora(s): %s de probabilidad de precipitaciónPresiónPresión al nivel del mar: Etiquetas usadas con anterioridadDirectorDescripción del problemaAprovisionadoAprovisionadoPublicación activada.ConsultaQuotaRueda de la fortunaLeerLectura activada.¿Eliminar realmente "%s"? Esta operación no se puede deshacer.¿Eliminar realmente los datos del usuario "%s"? Esta operación no se puede deshacer.Actualizar elementos de menú dinámicos:Actualizar vista del portalFrecuencia de actualización:Dispositivos registradosAplicaciones regularesObservacionesServidor remotoEliminarEliminar de la búsquedaEliminar correspondenciaEliminar guión guardado del directorio temporal del servidor.Eliminar usuarioEliminar usuario: %sResponderReaprovisionar todos los dispositivosNecesita PINNecesita cifrado S/MIMENecesita firma S/MIMELimpiarLimpiar contraseñaReinicia por completo el estado del dispositivo. Ésto provocará la resincronización de todos los elementos de sus dispositivos.Reiniciar su contraseñaRecuperar última consultaResultadosResultados de %sVolver a la pantalla principalRetwittearRetwitteado por %s.Confirmar contraseñaRestaurar configuraciónCribasEjecutarEjecutar tareas de inicioTarjeta SDCifrado de tarjeta SDMensajes de texto SMSEl esquema SQL DB está obsoleto.El esquema SQL DB está listo.SQLS_QLGuardarGuardar "%s"Guardar y terminarGuardar la configuración generada como un guión PHP en el directorio temporal de su servidor.Guardado guión de actualización de configuración en: "%s".CienciaÁmbito_BuscarBuscarResultados de la búsqueda (%s)Buscar:Seleccione un grupo a añadir:Seleccione un nuevo propietario:Seleccione un servidorSeleccione un usuario a añadir:Seleccione todos los campos en los que buscar al expandir direcciones.Seleccione el formato de fecha y hora:Seleccione el delimitador de fechas:Seleccione el formato de fechas:Seleccione el orden de fecha y hora:Seleccione el delimitador de horas:Seleccione el formato de horas:Seleccione su combinación de colores.Seleccione su idioma preferido:Enviar informe de problemasSensor: Hora del servidorGestión de sesionesMarca de tiempo de la sesiónSesionesDefine cómo mostrar listados de marcadores y cómo abrir los vínculos.Establece opciones que le permiten reiniciar su contraseña si llegara a olvidarla.Configura la integración con su cuenta de Facebook.Configura la integración con su cuenta Twitter.Define las opciones preferidas de idioma, zona horaria y fechas.Define la aplicación de inicio, la combinación de colores, la actualización de página y otras opciones de visualización.Varias ubicaciones disponibles con el parámetro: %sResumen corto¿Definir claves de acceso para la mayoría de los vínculos?MostrarMostrar opciones avanzadasMuestra las diferencias entre la nueva configuración y la almacenada¿Mostrar detalles adicionales?¿Mostrar hora de la última sesión al iniciar?Mostrar notificacionesEvitar tareas de inicioPequeñoEspesor de la nieve: Equivalente de la nieve en agua: Canciones & PoemasOrdenar marcadores por:Ordenar porSentido de clasificación:Europa del sur (ISO-8859-3)Hemisferio surSpamDeportesEstándarStar TrekHora de inicioGestión de estadoEstadoIncapaz de establecer el estado.CorrienteSe ha enviado la solicitud de alta de "%s" en el sistema. No podrá iniciar sesión hasta que se haya aprobado su solicitud.Se ha conectado a su cuenta Facebook o se han actualizado los permisos correctamente.ÉxitoSe ha añadido correctamente "%s" al sistema.Se han eliminado correctamente los datos del usuario "%s" del sistema.Se ha eliminado correctamente "%s".Se ha eliminado correctamente "%s" del sistema.Se ha restaurado correctamente la configuración. Refresque para ver los cambios.Se ha guardado correctamente la copia de la configuración.Se ha actualizado correctamente "%s"Se ha escrito correctamente '%s'AmanecerAtardecerDomingoAmanecerAmanecer/AtardecerAtardecerSincronizar todosSyncMLSuscripción de noticiasNube de etiquetasEtiquetasTareasTemperatura durante la última hora: TemperaturaTemperatura%s(%sMáx%s/%sMín%s)PlantillaNo se puede conectar con Facebook temporalmente. Pruebe otra vez.No se puede conectar con Twitter temporalmente. Pruebe otra vez.Tailandés (TIS-620)Se canceló el borrado remoto del dispositivo con id %s.Se ha eliminado el aviso.Se ha guardado el aviso.No se puede actualizar automáticamente La configuración de %s. Por favor hágalo de forma manual.Dirección por omisión usada con esta identidad:Se ha eliminado el bloqueo.El servicio de estado miembro no se ha podido contactar en el momento. Pruebe otra vez más tarde o con un estado miembro distinto.El servicio de estado miembro no está disponible en este momento. Pruebe otra vez más tarde o con un estado miembro distinto.El código de país indicado no es válido.El servicio no está disponible en la actualidad. Pruebe otra vez más tarde.El servicio está saturado en la actualidad. Pruebe otra vez más tarde.Se ha eliminado la solicitud de alta de "%s".Se ha eliminado la solicitud de alta de "%s".Se ha eliminado la información de estado del dispositivo con id %s. Se resincronizará la próxima vez que se conecte al servidor.El guión de pruebas está activo. Por motivos de seguridad desactive los guiones de pruebas cuando haya terminado las mismas (consulte horde/docs/INSTALL).Ya existe el usuario "%s".El usuario "%s" no existe.Se produjo un problema al añadir a "%s" al sistema: %sSe produjo un problema al borrar los datos del usuario "%s" del sistema: Se produjo un problema al eliminar el marcador: %sSe produjo un problema al eliminar a "%s" del sistema: Se produjo un problema al actualizar a "%s": %sSe produjo un error al añadir el marcador: %sSe produjo un error de comunicación con el servidor ActiveSync: %sSe produjo un error al contactar con Twitter: %sSe produjo un error en el formulario de configuración. Puede que haya olvidado rellenar un campo necesario.Se produjo un error realizando la petición: %sSe produjo un error al obtener la sesión Facebook. Vuelva a probar más adelante.Se produjo un error eliminando los datos globales de %s. Se han registrado los detalles.Se produjo un error al guardar el marcador: %sSe produjo un error con los permisos solicitadosEste número de identificación de IVA no es válido.Este número de identificación de IVA es válido.IncidenciasTiemposFormato horarioMarca de tiempo o desconocidoMarcas temporales de las sesiones de conciliación correctasTítuloPara poder añadir rápidamente marcadores de su navegador:Para excluir un campo concreto de la importación o para corregir una correspondencia incorrecta seleccione un campo de la lista y pulse "Eliminar correspondencia".Para seleccionar varios campos, mantenga presionada la tecla Control (PC) o Comando (Mac) al pulsar con el ratón.HoyMañanaArribaTraduccionesTurco (ISO-8859-9)TweetIntegración con TwitterCronología de TwitterCronología de Twitter de %sURLIncapaz de eliminar "%s": %s.Incapaz de establecer gustos.No se ha podido validar el testigo de solicitud. Por favor vuelva a realizar de nuevo su solicitud.Deshacer cambiosSin categoríaUnicode (UTF-8)UnidadesDesconocidoDesbloquearActualizarActualizar %sActualizar esquema %sActualizar todos los esquemas de BDActualizar todas las configuracionesActualizar usuarioSe ha actualizado "%s".Actualizado el esquema de %s.CargarSe han cargado en el servidor todos los archivos de configuración de aplicaciones.Se usa si el usuario/contraseña son distintos en el servidor IMSP.UsuarioGestión de usuariosNombre del usuarioRegistro de usuariosEste sitio tiene desactivado el registro de usuarios.Este sitio no tiene configurado correctamente el registro de usuarios.No se encontró la cuenta de usuarioUsuario a añadir:UsuarioUsuariosUsuarios en el sistema:Verificación número de identificación de IVANúmero de identificación de IVA:Número de IVAComprobación de versionesVersionesVietnamita (VISCII)Ver una página web externaVisibilidadAdvertenciaEl tiempoDatos meteorológicos suministrados porSitio WebNavegadorBienvenidoBienvenido, %sOeste (ISO-8859-1)Oeste (ISO-8859-15)¿Qué aplicación debería mostrar %s al iniciar la sesión?¿Qué estás haciendo?¿Cuál es el carácter delimitador?¿Cuál es el carácter de citado?¿Qué día quiere que se muestre como primero de la semana?Qué fasesPuede añadir un marcador de la página actual mientras navega pulsando sobre el nuevo acceso directo "Añadir a los marcadores".Anchura del menú %s de la izquierda:WifiWikiVientoVelocidad del viento en nudosViento:BorrarBorrado pendienteBorrado pendienteSabiduríaCon EmpleoX-RefAASí, lo aceptoA usted y a %d persona más les gusta éstoA usted y a %d personas más les gusta éstoCarece de permisos para añadir grupos.Carece de permisos para añadir recursos compartidos.Carece de permisos para modificar grupos.Carece de permisos para modificar recursos compartidos.Carece de permisos para crear más de %d marcadores.Carece de permisos para eliminar grupos.Carece de permisos para eliminar recursos compartidos.Carece de permisos para listar grupos o recursos compartidos.Carece de permisos para enumerar los permisos de los recursos compartidos.Carece de permisos para enumerar recursos compartidos.Carece de permisos para listar usuarios o grupos.Carece de permisos para listar usuarios o recursos compartidos.No ha conectado correctamente su cuenta Facebook con Horde. Debería comprobar sus opciones de Facebook en su %s.También puede comprobar sus opciones de Facebook en su %s.No está de acuerdo con las condiciones del Servicio, por lo que no se le permite iniciar sesión.Ha salido de la sesión.Ha denegado los permisos solicitados.No ha conectado correctamente su cuenta Twitter con Horde. Debería comprobar sus opciones de Twitter en su %s.Te gusta éstoDebe describir el problema antes de enviar el informe.Tiene que especificar un usuario a eliminar.Tiene que especificar un usuario a eliminar.Tiene que especificar el usuario a añadir.Tiene que especificar el usuario a actualizar.Su dirección de correoSu informaciónHa cambiado su dirección de Internet desde el comienzo de su sesión. Por razones de seguridad tiene que volver a iniciar la sesión.Su nombreSu soporte de autentificación no permite añadir usuarios. Si deseara utilizar Horde para gestionar cuentas de usuario, tendrá que seleccionar un soporte de autentificación distinto.Su soporte de autentificación no permite listar usuarios, o se ha deshabilitado la característica por algún motivo.Parece que ha cambiado su navegador desde el comienzo de su sesión. Por razones de seguridad tiene que volver a iniciar la sesión.Su navegador no admite esta característica.Zona horaria actual:Nombre completo:Su conexión ha caducado.La nueva contraseña para %s es: %sSe ha cambiado su contraseñaSe ha cambiado su contraseña pero no se le ha podido enviar. Póngase en contacto con su administrador.Se ha cambiado su contraseña, consulte el correo e inicie sesión con su nueva contraseña.Se ha cambiado correctamente su contraseña. Tiene que volver a iniciar sesión en el sistema con su nueva contraseña.Su contraseña ha caducadoSu contraseña ha caducado.Ha caducado su sesión. Vuelva a iniciar sesión.La duración de su sesión ha sobrepasado el tiempo máximo permitido. Vuelva a iniciar sesión.Zippy[Informe de problema]_Avisos_Examinar_CLI_Configuración_Grupos_Bloqueos_Añadir_Permisos_Usuariosadjuntocalmavisitavisitasdel %s (%s) a %s %sventosoen líneaopcionesmostrar diferenciasetiquetado %sescriba dos veces la contraseña para confirmarlaunificadotiempotrean-1.0.3/locale/es/LC_MESSAGES/trean.po0000664000175000017500000001725712171337643016057 0ustar janjan# Spanish translations for Trean H5 package. # Copyright (C) 2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Trean package. # Automatically generated, 2013. # msgid "" msgstr "" "Project-Id-Version: Trean H5 (1.0.1-git)\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-05-07 14:15+0200\n" "PO-Revision-Date: 2013-06-11 20:26+0200\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" #: lib/Block/Bookmarks.php:54 lib/Block/Mostclicked.php:45 msgid "1 Line" msgstr "1 línea" #: lib/Block/Bookmarks.php:42 lib/Block/Mostclicked.php:33 msgid "10 rows" msgstr "10 filas" #: lib/Block/Bookmarks.php:43 lib/Block/Mostclicked.php:34 msgid "15 rows" msgstr "15 filas" #: lib/Block/Bookmarks.php:53 lib/Block/Mostclicked.php:44 msgid "2 Line" msgstr "2 líneas" #: lib/Block/Bookmarks.php:44 lib/Block/Mostclicked.php:35 msgid "25 rows" msgstr "25 filas" #: lib/Block/Bookmarks.php:52 lib/Block/Mostclicked.php:43 msgid "3 Line" msgstr "3 líneas" #: templates/add.html.php:49 msgid "Add" msgstr "Añadir" #: templates/bookmarklet.html.php:1 msgid "Add to Bookmarks" msgstr "Añadir a los marcadores" #: templates/list.html.php:13 msgid "Added" msgstr "Añadido" #: config/prefs.php:36 msgid "Ascending (A to Z or oldest to newest)" msgstr "Ascendente (A a la Z o antiguos a recientes)" #: add.php:47 msgid "Bookmark Added" msgstr "Marcador añadido" #: edit.php:19 #, php-format msgid "Bookmark not found: %s." msgstr "No se ha encontrado el marcador: %s." #: config/prefs.php:26 msgid "Bookmarked on" msgstr "Marcado" #: lib/Block/Bookmarks.php:20 lib/Block/Bookmarks.php:65 #: lib/View/BookmarkList.php:120 msgid "Bookmarks" msgstr "Marcadores" #: lib/Trean.php:71 msgid "Bookmarks Feed" msgstr "Suscripción de marcadores" #: browse.php:31 msgid "Browse" msgstr "Examinar" #: templates/add.html.php:50 templates/edit.html.php:60 msgid "Cancel" msgstr "Cancelar" #: templates/list.html.php:14 msgid "Clicks" msgstr "Visitas" #: lib/Api.php:130 msgid "Close" msgstr "Cerrar" #: app/controllers/DeleteBookmark.php:13 msgid "Deleted bookmark: " msgstr "Marcadores eliminados: " #: config/prefs.php:37 msgid "Descending (9 to 1 or newest to oldest)" msgstr "Descendente (9 a 1 o recientes a antiguos)" #: templates/add.html.php:25 templates/edit.html.php:34 msgid "Description" msgstr "Descripción" #: config/prefs.php:13 msgid "Display Preferences" msgstr "Mostrar opciones" #: lib/Block/Bookmarks.php:38 msgid "Display Rows" msgstr "Mostrar filas" #: templates/add.html.php:61 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" "Arrastre el vínculo inferior \"Añadir a los marcadores\" a su barra de " "\"Vínculos\"" #: templates/add.html.php:59 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "Arrastre el vínculo inferior \"Añadir a los marcadores\" a su \"Barra " "personal\"" #: templates/list.html.php:55 msgid "Edit" msgstr "Modificar" #: edit.php:37 msgid "Edit Bookmark" msgstr "Modificar marcador" #: templates/add.html.php:58 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: templates/add.html.php:60 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/add.html.php:38 templates/edit.html.php:47 msgid "Loading..." msgstr "Cargando..." #: lib/Application.php:74 msgid "Maximum Number of Bookmarks" msgstr "Máximo número de marcadores" #: config/prefs.php:25 lib/Block/Bookmarks.php:34 msgid "Most Clicked" msgstr "Más visitados" #: lib/Block/Mostclicked.php:20 msgid "Most-clicked Bookmarks" msgstr "Marcadores más visitados" #: add.php:73 templates/add.html.php:9 msgid "New Bookmark" msgstr "Nuevo marcador" #: search.php:43 msgid "No bookmarks found" msgstr "No se han encontrado marcadores" #: lib/Block/Bookmarks.php:94 lib/Block/Mostclicked.php:75 msgid "No bookmarks to display" msgstr "Sin marcadores visibles" #: browse.php:18 msgid "No bookmarks yet." msgstr "No hay marcadores" #: search.php:50 msgid "No search" msgstr "No hay búsqueda" #: templates/add.html.php:64 msgid "Note:" msgstr "Comentario:" #: lib/Block/Mostclicked.php:29 msgid "Number of bookmarks to show" msgstr "Cantidad de marcadores mostrados" #: templates/add.html.php:65 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "En versiones recientes de Internet Explorer para que ésto funcione puede que " "tenga que añadir %s://%s a su zona de confianza." #: config/prefs.php:46 msgid "Open links in a new window?" msgstr "¿Abrir vínculos en ventanas nuevas?" #: config/prefs.php:12 msgid "Other Preferences" msgstr "Otras opciones" #: templates/add.html.php:41 templates/edit.html.php:50 msgid "Previously used tags" msgstr "Etiquetas usadas con anterioridad" #: lib/View/BookmarkList.php:210 msgid "Remove from search" msgstr "Eliminar de la búsqueda" #: templates/edit.html.php:59 msgid "Save" msgstr "Guardar" #: search.php:36 msgid "Search" msgstr "Buscar" #: search.php:47 #, php-format msgid "Search results (%s)" msgstr "Resultados de la búsqueda (%s)" #: config/prefs.php:14 msgid "Set how to display bookmark listings and how to open links." msgstr "Define cómo mostrar listados de marcadores y cómo abrir los vínculos." #: config/prefs.php:28 msgid "Sort bookmarks by:" msgstr "Ordenar marcadores por:" #: lib/Block/Bookmarks.php:29 msgid "Sort by" msgstr "Ordenar por" #: config/prefs.php:38 msgid "Sort direction:" msgstr "Sentido de clasificación:" #: lib/Application.php:99 templates/add.html.php:30 templates/edit.html.php:39 msgid "Tags" msgstr "Etiquetas" #: lib/Block/Bookmarks.php:48 lib/Block/Mostclicked.php:39 msgid "Template" msgstr "Plantilla" #: app/controllers/DeleteBookmark.php:16 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Se produjo un problema al eliminar el marcador: %s" #: add.php:41 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Se produjo un error al añadir el marcador: %s" #: app/controllers/SaveBookmark.php:26 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Se produjo un error al guardar el marcador: %s" #: config/prefs.php:24 lib/Block/Bookmarks.php:33 templates/add.html.php:20 #: templates/edit.html.php:29 templates/list.html.php:12 msgid "Title" msgstr "Título" #: templates/add.html.php:57 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Para poder añadir rápidamente marcadores de su navegador:" #: templates/add.html.php:15 templates/edit.html.php:24 msgid "URL" msgstr "URL" #: templates/add.html.php:62 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Puede añadir un marcador de la página actual mientras navega pulsando sobre " "el nuevo acceso directo \"Añadir a los marcadores\"." #: add.php:25 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Carece de permisos para crear más de %d marcadores." #: lib/Application.php:84 msgid "_Browse" msgstr "_Examinar" #: lib/Application.php:94 msgid "_New Bookmark" msgstr "_Añadir" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "click" msgstr "visita" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "clicks" msgstr "visitas" #: app/controllers/BrowseByTag.php:23 #, php-format msgid "tagged %s" msgstr "etiquetado %s" trean-1.0.3/locale/es/help.xml0000664000175000017500000000172112171337643014260 0ustar janjan Introducción Introducción La aplicación de marcadores le permite almacenar, organizar, gestionar y lo que es más importante, acceder a los marcadores de su navegador en línea y desde un único sitio accesible desde cualquier navegador y lugar. Al almacenar los marcadores aquí, puede acceder a ellos desde cualquier navegador de cualquier máquina. Esto significa que puede acceder fácilmente a sus marcadores desde distintos navegadores, distintas máquinas, ubicaciones remotas, etc. Y si actualiza, cambia o prueba otros navegadores, no tendrá que preocuparse sobre lo que sucederá con sus marcadores o cómo importarlos al nuevo navegador. trean-1.0.3/locale/fi/LC_MESSAGES/trean.mo0000664000175000017500000020555212171337643016040 0ustar janjanx7(J$)J)NJxJ&J J$J J)J K/K ?KKK\KtK KRKKKLLL'L.L6LELMLTL\LkLtLLLLELXLV8M6MVMNl:NNNNN N NOO3O 7O CO MO YOeO uOOOONO-O#P=P EPRP aP kP yP P PPPP#PlP%PQvQ|Q QQQQQQ R RR0RARWRrRzR%R<R%RS.S&2S YS)cS SS'S,S*T%,TRT!cTTT TT TT'T UU "U -U7UFU ^U lUvUUUUUUUUUU U@U-V3CVwVVVVV!VdV]WcW|WWW W1W*W#X @XLX _XjXQzXXX XX XY Y Y )Y6Y=Y EY SY `Y jY tY YY=YY'Z +Z8ZIZRZ.YZ*Z3ZVZ>[[(\5*\X`\\*L]w]]]]] ]] ]]]^^2^N^k^^^^^^ ^^^^ ^ ^,^4%_ Z_f_ m_y_ __*_B_'`F` [` g`s` z``` ```"` a a 'a1a9aPa daqaaCaa b/b<BbDbbbbb b bcc+c Ec Oc]cfc"nc{cO d']d(ddddddee"e 2e =eJeZebe ieuee-ee e ee ffff .f 9fGfLfRf|affff gg g#g*g;gKgkgg g ggggggg ghh *h5hPhWh ihthh?hh h h"hi +i8iGi$Mi2rii i iiiii jjjkmk ~kkBk4kl)&lPlbl wll ll lllllllm mm -m:m ImWmfm}mmmmm m mmmmn +n 6nAnSncn lnvn|nnnGn n0n>(ogonosovo|o ohoop&p?pWpippp$ppppp qqq1qIq/\q qqqqqqq q rr (r3rJr ]rgrxr|r|r ss s $s 1s?sHs `smsss sss8ss t t*t:tNtbtxttEttuEuAcuuuuuuuu v)v$Evjvyvv(v vvjvMw\ewwww xx "x0xBxIxOxVxZx cxmxx xxxxxxyyy/y LyXysyyy yyy(yPyKz Rz ]zizrz {{B%{h{~{{{ {{ { {{{||| |4)|G^||| || } }} #}/}6} I}6U} }}}} }}}~ ~O~j~~~~~~~~~~~ #6 H R] blR|, * >IQh|5 ؀,Kf~́ Ձ ;JO.-ɂ;[31 -σOl%Ʉ τ܄  0L`el u …d߅CD&8* ;6(rˇԇ܇  !+1 FRo>x>4:Vcp5ԉ h%f%83T-2eOԌ 11Ac-3Ӎ%*-?X)TŽ)KAI*׏1*4(_ 1:2V  ,AG[lEΒD BOWgmu|  Γ ړ;2Buz 2;% <IRXm ̕  . 7C KWl/ ϖF Tna!З 07=BH KDX""%% 5/%e%-.ߙ#,2,_c5V&}*s› 6ED)&%ۜ(*=vN ŝϝsqy+_˟\QeѠ-Xsy ˡء & -9"Jmu}' 3O+b + Ƥ9Ӥ  / =HbsYݥ  ( 1; S ] gq  =˦G TQ; f7 U _jҩ 4AZ`n>Ϫ-< C MW gu $( .جެ (>%[! ǭԭ ('DP(Ү)خ -<B'U'}'$ͯ% 3G Xf/۰  "C Yfy  ±ձR7BPIJ ˲ٲZ^ g  γ/ٳ/ 9 SaxU - 3@H ^ h v ǵϵD(*5S 6<:'JbT9rF}q2%X\`rغ $8R%n$ջػ ޻  !) 0<7P>Ǽּ ݼ 3,D`)Ͻ߽  %: T u ( ! ,DB7 -˿DO>  )2ET]j}p+Y+%+>Tct 8 &2 GQZcs ] s } (0 ? ISp    )?CG  $95o w  c }:)$7M`({    0Jd#2/ */ 7A Q$_!#- )>EY_hoo#;!:]Rr)(( ;*Y  )(#* NYw&  #!0R al %0BQ`&h * O#g )")L;v(#NPN & ' '5&]8b1Z +A ] jv   9Tt+{'  % /9H`b~   N5 NYt 5 WB&"&8 @M T bCn  ! <FZY &= Vb$j V3n +!<:^("!( 0Qk FTF*)`kQ. =7?\[:"$GM\u     ';@\ b}MO1XN/Z';"  #/ M[ls " FE7}-}Eh~tADE-]<W #"9;\T/8*V-<2l/IT1[)$& "0;l>ta  *0CThQl!D@O_ o } "!'D=H5 =%Wc  2K ]hy   -BH''(<ARP  %+.U@)))(2=(p(-3'$3L3S,?5u"hQ*6|236Q hu`#* <%Ioz[ w  6 M 1  7  A N U d m v }        "      )2 \ d =pZYkm%2RZ0f[OpE6V"wp/#Mer>MUVe9N'{nD1_ j1wEu|jXU5i;y $lTB($b==4I G\2*( D g;T:%.h\ ]  ot -}CAS^oCls~"qgY=coF& W8NMx&Hdv)S'Pe\}V7F|AR PYf O?s/ib#)n9w !&-CnZ<B3@T *JDvO?yQi,,r2-a;VTEFX^;?,R 5SDz`nc%+:{I ): +&[@gH3L63,`HtrayWZ dl*@:jdvY>5~m SuqG4+>7Xlaw!W~s[29G0CK!I'Gb[|m`N1/_-@$)]iP?*#F8KO6X_73k18o.fhL/L 9x%k."<Jb UQ\h]K JJQg5BU0L+06s4kfctcjR{^r p(q>"vahu}M'I`x].dx$zqzu!N<8eKWHEQB^ _At(A47<#Pm"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d days until your password expires.%d minutes%d person likes this%d persons like this%d to %d of %d%d-day forecast%s - Notice%s Configuration%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s is ready to perform the tasks below. Select each operation to run at this time., gusting %s %s, variable from %s to %s1 Day1 Line1 Month1 Week10 rows12 Hour Format15 rows2 Line2 Weeks24 Hour Format24 hours24-hour format25 rows3 Days3 Line cannot read information about your Facebook friends. cannot read your stream messages and various other Facebook data items. cannot set your status messages or publish other content to Facebook. can interact with your Twitter accountA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM/PMAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd ContentAdd Here:Add MembersAdd a groupAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.AllowAllow alphanumericAllow anyAllow only numericAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAnswerApplicationApplication ContextApplication ListApplication is ready.Application is up-to-date.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscending (A to Z or oldest to newest)Ascii ArtAt least one database schema is outdated.AttachmentAttachment DownloadAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated toAuthorize Access to Friends Data:Authorize PublishAuthorize Read:AutomaticAvailable fields:BOFH ExcusesBaltic (ISO-8859-13)Base graphics directory "%s" not found.BasicBlock SettingsBlock TypeBluetoothBookmark AddedBookmark not found: %s.Bookmarked onBookmarksBookmarks FeedBothBottomBrowseBrowserBrowsing for tags:CalendarCameraCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.Categories and LabelsCategorize your bookmark with comma separated tags.Celtic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClicksClient AnchorCloseClose WindowCloudsCodeword frequencyCollapseColor PickerComicsCommandCommand ShellComments: %dComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm PasswordContinueCookieCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DB schema is out of date.DB schema is ready.DDDataDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.DefinitionsDeleteDelete "%s"Delete All SyncML DataDelete GroupDeleted bookmark: Deleted configuration upgrade script "%s".Deleted synchronization session for device "%s" and database "%s".Descending (9 to 1 or newest to oldest)Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice ManagementDevice encryptionDevice id:Device is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDisableDisplay 24-hour times?Display PreferencesDisplay RowsDisplay detailed forecastDisplay forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload generated configuration as PHP script.Drag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrugsDynamicEU VAT identificationEditEdit "%s"Edit BookmarkEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnglishEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExtra LargeFTP upload of configurationFacebook IntegrationFailed unlock attempts before device is wipedFeedFeed AddressFeels LikeFields to searchFile ManagerFilterFiltersFirefox/MozillaFirst HalfFirst QuarterFoodForceForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFriend Requests:Friends enabledFrom the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoogle SearchGreek (ISO-8859-7)Group AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTML EmailHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hide Advanced PreferencesHide ResultsHome DirectoryHordeHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsIcons for %sIdentity's name:Import, Step %dImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Incorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internet ExplorerInvalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid parent permission.InventoryJapanese (ISO-2022-JP)Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLawLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLoading...Local time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogged in to FacebookLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize Login to Twitter and authorize the applicationLogoutLoveMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.Matching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Email ageMaximum Number of BookmarksMaximum Number of Portal BlocksMaximum attachment sizeMaximum number of entries to displayMedicineMediumMembersMentionsMetar WeatherMetricMin temp last 24 hours: Min temp last 6 hours: Minimum PIN lengthMinutes of inactivity before device should lockMiscellaneousMissing configuration.Mobile (Minimal)Mobile (Smartphone)Mobile Optimized AppsModeMondayMoon PhasesMost ClickedMost-clicked BookmarksMy AccountMy Account InformationMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeverNew BookmarkNew CategoryNew Messages:New MoonNew Username (optional)New passwordNew passwords don't match.NewsNextNext 4 PhasesNo Bookmarks foundNo SoundNo available configuration data to show differences for.No bookmarks to displayNo bookmarks yet.No change.No icons found.No items to displayNo location is set.No offensive fortunesNo pending signups.No push while roamingNo security question has been set. Please contact your administrator.No stable version exists yet.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.NoneNordic (ISO-8859-10)Northern HemisphereNot ProvisionedNote:NotesNothing to browse, go back.Number of articles to displayNumber of bookmarks to showNumber of seconds to wait to refreshObject CreatorOffense filterOfficeOld and new passwords must be different.Old passwordOld password is not correct.On newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOr enter a user name:OrganizingOther InformationOther OptionsOther PreferencesOthersOwnerOwner:PHPPHP CodePHP ShellPOP/IMAP Email accountsPOSIX extension is missingP_HP ShellPasswordPassword ComplexityPassword changed successfully.Passwords must match.PastePending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a password.Please enter a username.Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Pokes:Policy KeyPolicy Key:PoliticsPosition of reply text when replying to email on your device. Note that some devices will always send the citation string at the end of the reply text.Posted %sPosted %s via %sPrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePressurePressure at sea level: Previously used tagsPrincipalProblem DescriptionProvisionedProvisioningPublish enabled.QueryQuotaRandom FortuneReadRead enabledReally delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRegular AppsRelated Tags:RemarksRemote HostRemoveRemove from searchRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sReplyReprovision All DevicesRequire PINRequire S/MIME EncryptionRequire S/MIME SignatureResetReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSD cardSD card encryptionSMS Text messagesSQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch BookmarksSearch Results (%s)Search forSearch:Select a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Send Problem ReportSensor: Server TimeSession AdministrationSession TimestampSessionsSet how to display bookmark listings and how to open links.Set preferences to allow you to reset your password if you ever forget it.Set up integration with your Facebook account.Set up integration with your Twitter account.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?ShowShow Advanced PreferencesShow differences between currently saved and the newly generated configuration.Show extra detail?Show last login time when logging in?Show notificationsSkip Login TasksSmallSnow depth: Snow equivalent in water: Songs & PoemsSort bookmarks by:Sort bySort direction:South European (ISO-8859-3)Southern HemisphereSpamSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubdirectory "%s" not found.Submitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSync allSyncMLSyndicated FeedTag CloudTasksTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)TemplateTemporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Thai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.Themes directory "%s" not found.There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem deleting the bookmark: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error saving the bookmark: %sThere was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.TicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTopTranslationsTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sURLUnable to contact Twitter. Please try again later. Error returned: %sUnable to delete "%s": %s.Unable to set like.Unable to validate the request token. Please try your request again.Undo ChangesUnfiledUnicode (UTF-8)UnitsUnknownUnlockUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated schema for %s.UploadUploaded all application configuration files to the server.Use if name/password is different for IMSP server.UserUser AdministrationUser Agent:User NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWeb browserWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Width of the %s menu on the left:WifiWikiWindWind speed in knotsWind:WipeWipe is pendingWisdomWith WorkX-RefYYYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are not connected to your Facebook account. You should check your Facebook settings in your %s.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You have been logged out.You have denied the requested permissions.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your session has expired. Please login again.Your session length has exceeded the maximum amount of time allowed. Please login again.Zippy[Problem Report]_Alarms_Browse_CLI_Configuration_Groups_Locks_New Bookmark_Permissions_Search_Usersattachmentcalmclickclicksfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestype the password twice to confirmunifiedweatherProject-Id-Version: Trean 1.0-git Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2012-10-26 23:07+0200 PO-Revision-Date: 2012-10-29 08:09:00+0200 Last-Translator: Leena Heino Language-Team: Finnish Language: fi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8-bit Plural-Forms: nplurals=2; plural=(n != 1); "%s" lisättiin ryhmäjärjestelmään."%s" lisättiin oikeuksiin."%s" ei luotu: %s.%.2fMB käytetty %.2fMB sallitusta (%.2f%%)%d %s ja %sSalasanasi vanhentuu %d päivän päästä.%d minuuttia%d henkilö pitää tästä%d henkilöä pitää tästä%d - %d / %d%d päivän ennustus%s - Ilmoitus%s Asennus%s Tehtävät - Varmistus%s Käyttöehdot%s suunta %s %s%s on valmis suorittamaan alla olevat tehtävät. Valitse nyt suoritettavat toimenpiteet., puuskittaista %s %s, vaihtelevaa %s - %s1 päivä1-rivinen1 kuukausi1 viikko10 riviä12-tunnin järjestelmä15 riviä2-rivinen2 viikkoa24-tunnin järjestelmä24 tuntia24-tunnin järjestelmä25 riviä3 päivää3-rivinen ei voi lukea tietoja Facebook ystävistäsi. ei voi lukea viestivirtaasi ja muita Facebook tietoja. ei voi asettaa tilatietoja tai julkaista muuta tietoa Facebookissa. voi olla yhteydessä sinun Twitter tiliisiLaitteesta on pyydetty tietojenpoisto. Laiteesta poistetaan kaikki tiedot kun laite yrittää seuraavan kerran synkronoita tietoja.Uudempi versio (%s) on olemassa.Tietojenpoistoa etäyhteydellä on pyydetty laite id:lle %s. Laitteesta poistetaan kaikki tiedot kun laitetta seuraavan kerran synkronoidaan.AP/IPKäyttäjätunnuksen tiedotKäyttäjätunnuksen salasanaToiminnotActiveSyncActiveSync LaitehallintaActiveSync LaitteetActiveSync ei ole käytössä.LisääLisää sisältöäLisää tähän:Lisää jäseniäLisää ryhmäLisää uusi käyttäjä:Lisää uusi hälytysLisää pariLisää kirjanmerkkeihinLisää käyttäjäLisättiin "%s" järjestelmää, mutta ei voitu lisätä sisäänkirjautumisen lisätietoja: %s.Lisättiin "%s" järjestelmään. Voit nyt kirjautua sisään.Käyttäjien lisääminen ei ole käytössä.OsoiteOsoitteetYlläpitoHälytys loppuuHälytystavatHälytys alkaaHälytyksen viestiHälytyksen otsikkoHälytyksetKaikkiKaikki autentikoituneet käyttäjätKaikki politiikka-avaimet tyhjennettiin.Kaikki ActiveSync laitteidesi tilatiedot on nyt poistettu. Laitteet yrittävät synkronoida uudelleen kun ne seuraavan kerran ottavat yhteyttä palvelimeen.Kaikki synkronointi-istunnot on nyt poistettu.SalliSalli aakkosnumeerisetSalli kaikkiSalli vain numerotVaihtoehtoinen IMSP sisääkirjautuminenVaihtoehtoinen IMSP salasanaVaihtoehtoinen IMSP käyttäjätunnusVaihtoehtoinen sähköpostiosoiteVastausOhjelmaOhjelman konteksti:OhjelmalistaOhjelma on valmis.Ohjelma on uusimmassa versiossa.HyväksyArabia (Windows-1256)Oletko varma, että haluat poistaa '%s'?Oletko varma, että haluat poistaa sisäänkirjautumispyynnön "%s"?Oletko varma, että haluat poistaa "%s"?Armenia (ARMSCII-8)TaideNouseva (A - Z tai vanhimmasta uusimpaan)Ascii-taideAinakin yksi tietokantaskeema on vanhentunut.LiiteLiitteen tallennusYritettiin poistaa olematonta ryhmää.Yritettiin poistaa olematonta oikeutta.Yritettiin muokata olematonta oikeutta.Yritettiin muokata olematonta jakoa.Autentikoitunut kohteeseenAnna lupa käyttää Friends tietoja:Anna lupa julkaistaAnna lupa lukea:AutomaattinenKäytettävissäolevat kentät:BOFH selityksetBaltia (ISO-8859-13)Grafiikoiden perushakemistoa "%s" ei löytynyt.PerusOsion asetuksetOsion tyyppiBluetoothKirjanmerkkiä lisättiinKirjanmerkkiä ei löytynyt: %s.Kirjanmerkki lisättyKirjanmerkitKirjanmerkkisyöteMolemmatAlapuolelleSelaaSelainSelataan tageja:KalenteriKameraPeruPeru ongelmaviestiPeru tyhjennysSalasanaa ei voi uudelleenasettaa automaattisesti, ota yhteyttä ylläpitäjään.Kategoriat ja merkinnätVoit kategorisoida kirjanmerkkejä pilkuille erotetuilla tageilla.Keltti (ISO-8859-14)Keski-Eurooppa (ISO-8859-1)VaihdaVaihda paikkaMuuta salasanasiMuuta henkilötietojasi.Salasanan vaihto ei ole käytössä nykyisillä asetuksilla. Ota yhteyttä ylläpitäjiin.TarkistaTarkista onko uudempia versioitaTarkistetaanKiina yksikertaistettu (GB2312)Kiina perinteinen (Big5)Valitse %sValitse päiväyksien esitysmuoto (lyhennetty):Valitse päiväyksien esitysmuoto (kokonainen):Valitse ajan esitysmuoto:Poista kyselyPoista käyttäjä: %sPoista käyttäjäPoista käyttäjän tiedotValitse ensin osoitekirja ja valitse sen jälkeen ne kentät, joista tietoja haetaan.Napsauta jatkaaksesiNapsautuksetAsiakasankkuriSuljeSulje ikkunaPilviäKoodisanojen yleisyysPienennäVärivalitsinSarjakuvatKomentoKomentotulkkiKommentit: %dTietokoneetOlosuhteetOlosuhteetAsennusAsennusasetusten erotAsetukset PDA-laitteiden, älypuhelimien ja Outlookin synkronoitiin.Asennusasetukset eivät ole ajantasalla.Asennusasetusten päivitysskripti on käytettävissäAsennus %sVarmista salasanaJatkaPipariEi saatu yhteyttä palvelimeen "%s" käyttäen FTP: %sEi saatu yhteyttä palvelimeen. Yritä myöhemmin uudestaan.Ei voitu poistaa asennusasetusten päivitysskriptiä "%s".Ei löydetty lupaa olla yhteydessä sinun Twitter tiliisi.Käyttäjän salasanaa ei voitu nollata. Jotkut tarvittavat tiedot ovat väärin. Voita yrittää uudestaan tai ota yhteyttä ylläpitoon, jos tarvitset lisää apua.Ei voitu palauttaa asetuksia.Ei voitu tallentaa varmuuskopioita asennusasetuksista: %sEi voitu tallentaa asennusasetusten päivitysskriptiä paikkaan: "%s".Asetusasennustiedoston tallennus epäonnistui tiedostoon %s. Käytä yhtä alla olevista vaihtoehdoista talentaaksesi koodin.Asetusasennustiedoston tallennus epäonnistui tiedostoon %s. Voit käyttää alla olevia asetuksia tallentaaksesi koodin takaisin %s tai kopioida alla olevan koodin kohteeseen %s.Ei kirjoittaa asennusasetuksia ohjelmalle "%s": %sMaaLuoLuo uusi profiiliTämänhetkiset 4 vaihettaTämänhetkiset hälytyksetTämänhetkiset LukotTämänhetkiset istunnotTämänhetkinen kellonaikaTämänhetkinen sääTämänhetkiset olosuhteetKyrillinen (KOI8-R)Kyrillinen (Windows-1251)Kyrillinen/Ukraina (KOI8-U)Tietokantayhteyttä ei ole asennettu.Tietokantaskeema ei ole ajantasalla.Tietokantaskeema on valmis.PPTietoTietokantaPäiväysVastaanoton päiväysPäiväys: %s; aika: %sPäiväOletusOletusväriOletuskomentotulkkiOletusmerkistö lähetettäessä sähköpostiviestejä:Oletuspaikkatieto kun käytetään paikkatietoisia toimintoja.MääritelmätPoistaPoista "%s"Poista kaikki SyncML-tiedotPoista RyhmäPoistettu kirjanmerkki: Poistettiin asennusasetusten päivitysskripti "%s".Poistettiin synkronointisessio laitteelle "%s" ja tietokantaan "%s".Laskeva (9 - 1 tai uusimmasta vanhimpaan)Ongelman kuvausKuvausKehitysLaiteLaite IDLaitehallintaLaitteen salausLaite id:Laite on tyhjennettyLaitteen poisto onnistui.Laitteen tyhjennys peruutettiin.KosteuspisteEdellisen tunnin kosteuspiste: KosteuspistePois käytöstäKäytetäänkö 24-tunnin aikaesitystä?Näytön asetuksetNäytä rivitNäytä yksityiskohtainen ennusteNäytä ennuste (TAF)Jos ensimmäinen rivi sisältää sarakkeiden otsikot, niin valitse:Eikö ole käyttäjätunnusta? Kirjaudu käyttäjäksi.Tallenna %sTallenna luotu asetustiedosto PHP-skriptinä.Raahaa allaoleva "Lisää kirjanmerkkeihin"-linkki "Links" valikkoonRaahaa allaoleva "Lisää kirjanmerkkeihin"-linkki "Personal Toolbar" valikkoonHuumeetDynaaminenEU ALV-tunnusnumeroMuokkaaMuokkaa "%s"Muokkaa kirjanmerkkiäMuokkaa asetuksia ohjelmalleMuokkaa oikeuksiaMuokkaa oikeuksia - "%s"KoulutusSähköpostiosoitePäätymisaikaEnglantiAnna nimi uudelle kategorialle:Anna kysymys joka kysytään, jos salasanasi joudutaan nollaamaan esimerkiksi 'mikä on lemmikkisi nimi?':Tapahtui virhe otettaessa yhteyttä Twitteriin: %s Tarkemmat tiedot on tallennettu ylläpidon käsiteltäväksi.Virhe poistettaessa synkronointi-istuntoja:Virhe poistettaessa synkronointi-istuntoja:Virhe päivitettäessä salasanaa: %sEtninenTapahtumakutsut:15 minuutin välein2 minuutin välein30 sekunnin välein5 minuutin väleinPuolen tunnin väleinTunnin väleinMinuutin väleinEsimerkkiarvot:SuoritaLaajennaEkstrasuuriAsetustiedostojen vienti FTP:llFacebookin käyttöEpäonnistuneet yritykset ennenkuin laite tyhjennetäänSyöteSyötteen osoiteTuntuu kuinEtsittävät kentätTiedostotSuodatinSuodatusFirefox/MozillaEnsimmäinen puoliskoEnsimmäinen neljännesRuokaPakotaEnnuste (TAF)Ennustettavat vuorokaudet (Huomaathan että ennustuksessa on tiedot sekä päivistä että öistä, joten suuri määrä päiviä aiheuttaa liian leveän osion)Unohditko salasanasi?LomakkeetMietelauseMietelauseen tyyppiMietelauseetMietelauseet 2FoorumitYstäväpyynnöt:Ystävät käytössäsuunnasta %s (%s °) nopeudella %s %ssuunnasta %s nopeudella %s %sPidempi kuvausTäysikuuKoko nimiMuodosta %s asennusasetuksetMuodostettu koodiHae lisääYleiset asetuksetMeneGödelGoogle hakuKreikka (ISO-8859-7)Ryhmien hallintaRyhmänimiRyhmää ei luotu: %s.RyhmätVierailijan oikeudetHTML-viestiHebrea (ISO-8859-8-I)KorkeusViestivirran korkeus (leveys mukautuu automaattisesti osion mukaan)OhjeOhjeiden _aiheetPallonpuolisko:Tässä on tiedoston alkuosa:Piilota laajemmat asetuksetPiilota tuloksetKotihakemistoHordeKenttien (sarakkeiden) lukumäärä?Kuinka monen sekunnin välein tarkistetaan uudet viestit?KosteusHumoristitIkonit - %sProfiilin nimi:Tuonti, askel %dTuodut kentät: %sTuodut kentät:Vastauksena:Alla olevista listoista valitse molemmat; vasemmalta lähdetiedostosta tuotava kentä ja oikealta osoitekirjastasi vastaava kentää. Tämä jälkee valitse "Lisää pari", jolloin merkitset nämä tiedot tuotavaksi. Kun olet valmis, niin valitse "Seuraava".Väärä käyttäjätunnus tai vaihtoehtoinen osoite. Yritä uudestaan tai ota yhteyttä ylläpitoon jos tarvitset lisää apua.Yksittäiset käyttäjätInformaatioPeriytä jäsenetAnna sähköpostiosoite johon uusi salasana lähetetään:Anna vaadittava vastaus turvakysymykseen:Internet ExplorerEpäkelpo ALV-tunnuksen numeromuoto.Epäkelpo toiminto %sEpäkelpo ohjelma.Epäkelpo tiivistetunnisteEpäkelvot oikeudet ylemmällä tasolla.InventaarioJapani (ISO-2022-JP)Juuri nyt...Kernel aloittelijatAvainsanaLapsetKolabKorea (EUC-KR)KieliSuuriJälkimmäinen puoliskoEdellinen salasananvaihtoJälkimmäinen neljännesEdellinen synkronointiaikaViimeksi päivitetty:Edellinen sisäänkirjautuminen: %sEdellinen sisäänkirjautuminen: %s osoitteesta %sEdellinen sisäänkirjautuminen: ei milloinkaanViimeisimmätLakiPitääLimerikitLinux pipareitaListaa taulutHälytysten listaus epäonnistui: %sLukkojen listaus epäonnistui: %sIstuntojen listaus epäonnistui: %sKäyttäjätietojen näyttäminen on estetty.KirjallisuusLadataan...Paikallinen aika: %s %sLokalisaatio ja aikaPaikkaLukitse käyttäjäLukotKirjauduPoistuKirjaudu sisään FacebookiinSisäänkirjautumisesi epäonnistui. Todennäköisesti kirjoitit väärin käyttäjätunnuksesi tai salasanasi.Sisäänkirjautuminen epäonnistui.Kirjaudu sisään Facebookiin ja anna lupa Kirjaudu sisään Twitteriin ja anna lupa PoistuRakkausKKTaikuusPostiPostin hallintaVoit hallinnoida listaa kategorioista, joiden avulla voit liittää asioita yhteen samojen otsakkeiden alle ja liittää niihin värejä.Hallinnoi ActiveSync laitteita.Täsmäävät kentät:Edellisen 24 tunnin korkein lämpötila: Edellisen 6 tunnin korkein lämpötila: Viestin korkein ikäSuurin sallittu määrä kirjanmerkkejäPortaaliosioiden maksimimääräLiitteen suurin sallittu kokoNäytettävien artikkelien maksimimääräLääketiedeKeskikoinenJäsenetMainitseeMetar sääMetrinenEdellisen 24 tunnin matalin lämpötila: Edellisen 6 tunnin matalin lämpötila: Minimi PIN pituusMinuutteja ennenkuin laite lukitaanSekalaisetAsetusasennustiedot puuttuvatMobiili (minimaalinen)Mobiili (älypuhelin)Mobiilikäyttöön optimoidut ohjelmatKäyttötilaMaanantaiKuun vaiheetEniten napsautuksiaEniten napsautetut kirjanmerkitOmat tietoniOman käyttäjätunnukseni tiedotFacebook virtaPortaaliniPortaalini asetteluN/AEI, en hyväksyHUOMAA: LAITTEEN TYHJENNYS SAATTAA PALAUTTAA LAITTEESEEN TEHDASASETUKSET. OTATHAN TÄMÄN HUOMIOON ENNENKUIN PYYDÄT LAITTEEN TYHJENNYSTÄ.NimiEi koskaanUusi kirjanmerkkiUusi kategoriaUudet viestit:UusikuuUusi käyttäjätunnus (vapaaehtoinen)Uusi salasanaAntamasi uudet salasanat eivät täsmää.UutisetSeuraavaSeuraavat 4 vaihettaEi löytynyt kirjanmerkkejäEi ääniäAsennusasetustietoja ei ole saatavilla, joista voisi näyttää eroavaisuuksia.Ei kirjanmerkkejä näytettäväksiEi vielä kirjanmerkkejä.Ei muutosta.Ikoneita ei löytynyt.Ei näytettävää sisältöäPaikkatietoa ei ole asetettu.Ei loukkaavat mietelauseetEi sisäänkirjautumispyyntöjä jonossa.Ei push toimintoa kun ei ole kotiverkossaTurvakysymystä ei ole asetettu. Ota yhteyttä ylläpitoon.Tuotantoversiota ei ole vielä olemassa.Käyttäjänimeä ei ollut annettu.Versiotietoja ei löytynyt asennusasetuksista. Luo asennusasetukset uudelleen.Versiotietoja ei löytynyt asennusasetuksistasi. Luo asennusasetukset uudelleen.Ei mitäänLappi/Pohjoismaat/Eskimo (ISO-8859-10)Pohjoinen pallonpuolisko:Ei jaettuMuistiinpano:MuistiotEi mitään selattavaa, palaa takaisin.Näytettävien artikkelien lukumääräNäytettävien kirjanmerkkien määräPäivitysten aikaväliObjektin luojaLoukkaavuussuodatinToimistoUusi salasana ei saa olla sama kuin nykyinen salasanasi.Nykyinen salasanaNykyinen salasana on väärin.tai uudemmissa Internet Explorer versioissa, sinun täytyy lisätä %s://%s Trusted Zone alueelle.Vain loukkaavat mietelauseetVain omistaja tai järjestelmän ylläpitäjä voi muuttaa jakojen omistajia tai oikeuksiaAvaa linkit uudessa ikkunassa.KäyttöjärjestelmäTai anna käyttäjätunnus:OrganisointiMuut tiedotMuut asetuksetMuut asetuksetMuutOmistajaOmistaja:PHPPHP-koodiPHP-komentotulkkiPOP/IMAP sähköpostitilitPOSIX-laajennukset puuttuvatPH_P-komentotulkkiSalasanaSalasanan monimutkaisuusSalasanan vaihto onnistui.Salasanojen pitää täsmätä.LiitäJonossa olevat sisäänkirjautumispyynnöt:IhmisetSuorita sisäänkirjautumistoimenpiteetOikeutta "%s" ei poistettu.OikeudetOikeuksien hallintaOmat tiedotLemmikitValokuvatLatteudetAnna salasana.Anna käyttäjätunnus.Anna lyhyt kuvaus ongelmasta.Lue seuraava teksti. Sinun PITÄÄ suostua käyttöehtoihin voidaksesi käyttää järjestelmää.Tökkää:Politiikan avainPolitiikan avain:PolitiikkaMihin kohtaan laitetaan vastausteksti kun kirjoitat vastausta laitteellasi.Huomaathan, että jotkut laitteet laittavat lainatun tekstin aina vastausteksisi perään.Lähetetty %sLähetetty %s kautta %sSademäärä edelliselle %d tunnille: Sademäärä edellisille %d tunneille: Sateen%stodennäköisyysIlmanpaineIlmanpaine merenpinnassa: Aikaisemmin käytetyt tagitPääasiallinenOngelman kuvausJaeltuJaellaanJulkaisu sallittuKyselyKiintiöSatunnainen mietelauseLukuLuku sallittuPoistetaanko "%s"? Tätä toimintoa ei voi peruuttaa.Poistetaanko käyttäjätiedot käyttäjästä "%s"? Tätä toimintoa ei voi peruuttaa.Päivitä dynaamiset valikkoelementit:Päivitä portaalinäkymää:Päivitysnopeus:Rekisteröidyt käyttäjälaitteetNormaalit ohjelmatViittaavat tagit:HuomiotEtäpalvelinPoistaPoista haustaPoista pariPoistettiin tallennettu skripti palvelimen väliaikaishakemistosta.Poista käyttäjäPoista käyttäjä: %sVastaaUudelleenjakele kaikki laitteetVaadi PINVaadi S/MIME-salausVaadi S/MIME-allekirjoitusTyhjennäTyhjennä salasanaTyhjentää laitteen tilan. Tämän jälkeen laitteesi synkronoin uudelleen kaikki tiedot.Resetoi salasanasiPalauta edellinen kyselyTuloksetTulokset - %sPalaa päänäkymäänRetweetRetweetannut %sVahvista uusi salasanaPalauta asennusasetuksetArvoituksetSuoritaSuorita sisäänkirjautumistoiminnotSD muistikorttiSD muistikortin salausSMS TekstiviestitSQL-komentotulkkiS_QL-komentotulkkiTallennaTallenna "%s"Tallenna ja lopetaTallenna luotu asennusasetustiedosto PHP-skriptinä palvelimen väliaikaishakemistoon.Asennusasetusskripti on tallennettu paikkaan: "%s".TiedeLaajuusHa_kuHakuHae kirjanmerkeistäHaun tulokset (%s)Haku ehdoillaHaku:Valitse lisättävä ryhmä:Valitse uusi omistaja:Valitse palvelinValitse lisättävä käyttäjä:Valitse osoitteiden laajennuksessa käytettävät kentät.Valitse ajan ja päiväyksen esitystapa:Valitse päiväyksen erotinmerkki:Valitse päiväyksen esitysmuoto:Valitse ajan ja päiväyksen järjestys:Valitse kellonajan erotinmerkki:Valitse ajan esitysmuoto:Valitse väriteema.Valitse käytettävä kieli:Lähetä ongelmaviestiTunnistin: Palvelimen aikaIstuntojen hallintaIstunnon aikaleimaIstunnotAseta kuika kirjanmerkkilistaus näytetään ja kuinka linkit avataan.Salasanan muuttamiseen liittyviä asetuksia, jos joskus satut unohtamaan salasanasi.Facebook käyttöön liittyviä asetuksia.Twitter käyttöön liittyviä asetuksia.Voit asettaa käytettävän kielen, aikavyöhykkeen ja muita päiväykseen liittyviä asetuksia.Voit asettaa aloitusohjelman, väriteeman, näkymän päivityksen ja muita näkymään liityviä asetuksia.Useat paikat sopivat annettuun parametriin: %sLyhyt kuvausKäytetäänkö pikavalintanäppäimiä useimmille linkeille?NäytäNäytä laajemmat asetuksetNäytä erot tämänhetkisen asennusasetustiedoston juuri luodun uudemman version välillä.Näytetäänkö lisätiedot?Näytetäänkö edellisen sisäänkirjautumisen päiväys?Näytä ilmoituksetOhita sisäänkirjautumistoiminnotPieniLumen syvyys: Lumen määrä vetenä: Laulut ja RunousJärjestä kirjanmerkitJärjestettyJärjestyssuuntaEtelä-Eurooppa (ISO-8859-3)Eteläinen pallonpuolisko:RoskapostiUrheiluStandardiStar TrekAloitusaikaTilatiedon hallintaTilaEi voi asettaa tilatietoja.VirtaAlihakemistoa "%s" ei löytynyt.Lähtettiin pyyntö lisätä "%s" järjestelmään. Et voi kirjautua sisään ennenkuin pyyntö on käsitelty ja hyväksytty.Facebook tiliin onnistuttiin muodostamaan yhteys tai päivitettiin oikeuksia.OnnistuiOnnistuttiin lisäämään "%s" järjestelmään.Onnistuttiin poistamaan järjestelmästä käyttäjän "%s" käyttäjätiedot.Onnistuttiin poistamaan "%s".Onnistuttiin poistamaan "%s" järjestelmästä.Palattiin onnistuneesti vanhoihin asetuksiin. Lataa sivu uudestaan nähdäksesi muutokset.Onnistuttiin tallentamaan varmuuskopiot asennusasetuksista.Onnistuttiin päivittämään "%s"Onnistuttiin kirjoittamaan %sAurinnnousuAuringonlaskuSunnuntaiAurinnnousuAurinko nousee/Aurinko laskeeAuringonlaskuSynkronoi kaikkiSyncMLLevitetty syöteAvainsanapilviTehtävätLämpötila edelliselle tunnille: LämpötilaLämpötila%s(%sHi%s/%sLo%s)MalliFacebookiin ei juuri nyt saada yhteyttä, yritä myöhemmin uudestaan.Twitteriin ei juuri nyt saada yhteyttä, yritä myöhemmin uudestaan.Thai (TIS-620)Etätyhjennys laitteelle id %s on peruutettu.Hälytys on poistettu.Hälytys on tallennettu.Asennusasetustietoja ohjelmalle %s ei voida päivittää automaattisesti. Huomaathan päivittää asennusasetustiedot käsin.Oletussähköpostiosoite, jota käytetään tämän profiilin kanssa:Lukko on poistettu.Jäsenvaltion tilapalveluun ei juuri nyt saada yhteyttä. Yritä myöhemmin uudestaan tai kokeile jotain muuta jäsenvaltiota.Jäsenvaltion tilapalveluun ei saada yhteyttä. Yritä myöhemmin uudestaan tai kokeile jotain muuta jäsenvaltiota.Annettu maakoodi ei kelpaa.Palveluun ei juuri nyt saada yhteyttä. Yritä myöhemmin uudestaan.Palvelun on juuri nyt liian kuormitettu. Yritä myöhemmin uudestaan.Sisäänkirjautumispyyntö "%s" on poistettu.Sisäänkirjautumispyyntö käyttäjälle "%s" on poistettu.Tilatiedot laitteelle laite id %s on nyt resetoitu. Laite yrittää synkronoida uudelleen kun se seuraavan kerran ottaa yhteyttä palvelimeen.Testitoiminto on tällä hetkellä käytössä. Turvallisuuden takia, ota testitoiminto pois päältä kun et sitä enää tarvi (katso horde/docs/INSTALL).Käyttäjä "%s" on jo olemassa.Käyttäjää "%s" ei ole olemassa.Teemahakemistoa "%s" ei löytynyt.Joitakin ongelmia "%s" lisäämisessä järjestelmään: %sKäyttäjän "%s" käyttäjätietojen poistamisessa järjestelmässä oli ongelmia: Kirjanmerkkiä poistettaessa tapahtui virhe: %sJoitakin ongelmia "%s" poistamisessa järjestelmästä: Joitakin ongelmia "%s" päivityksessä: %sKirjanmerkkiä lisätessä tapahtui virhe: %sTapahtui virhe yhteyksissä ActiveSync palvelimen kanssa: %sTapahtui virhe otettaessa yhteyttä Twitteriin: %sJoitakin ongelmia asennusasetuslomakkeessa. Ehkäpä jätit määrittelemättä joitakin pakollisia tietoja.Joitakin ongelmia muodostettaessa pyyntöä: %sTapahtui virhe haettaessa Facebook istuntoa. Yritä myöhemmin uudestaan.Joitakin ongelmia poistettaessa kaikkia tietoja %s. Tarkemmat tiedot on tallennettu.Kirjanmerkkiä tallennettaessa tapahtui virhe: %sJoitakin ongelmia pyydetyissa oikeuksissaTämä ALV-tunnusnumero on epäkelpoTämä ALV-tunnusnumero on kelvollinenTiketitAjanseurantaAjanmuotoAikaleima tai tuntematonOnnistuneiden synkronointi-istuntojen aikaleimatOtsikkoJotta voisit nopeasti lisätä kirjanmerkkejä www-selaimeesi:Estääksesi sen, että jotain kenttää ei tuoda tai korjataksesi väärin muodostetun pariliitoksen, niin valitse kentää alla olevasta listasta ja valitse "Poista pari".Voidaksesi valita useampia vaihtoehtoja, pidä Control- (PC) tai Command- (Mac) näppäintä pohjassa kun napsautat hiiren painiketta.TänäänHuomennaYläpuolelleKäännöksetTurkki (ISO-8859-9)TweetTwitterin käyttöTwitter aikajanaTwitter aikajana %sURLTwitteriin ei saatu yhteyttä. Yritä myöhemmin uudestaan. Virheilmoitus oli: %sEi voida poistaa "%s": %s.Ei voida asettaa pitää tietoja.Pyyntötokenia ei voida varmentaa. Yritä tehdä toiminto uudelleen.Peru muutoksetLuokittelematonUnicode (UTF-8)MittayksikötTuntematonAvaaPäivitäPäivitä %sPäivitä %s skeemaPäivitä kaikki tietokantaskeematPäivitä kaikki asetusasennuksetPäivitä käyttäjäPäivitettiin "%s".Päivitettiin skeema - "%s".VieVietiin kaikki ohjelmien asennusasetustiedostot palvelimelle.Käytä jos tunnus/salasana on eri IMSP-palvelimelle.KäyttäjäKäyttäjien hallintaKäyttäjäagentti: %sKäyttäjätunnusKäyttäjän rekisteröiminenTässä järjestelmässä ei voi rekisteröidä käyttäjiä.Käyttäjien rekisteröinti ei ole otettu oikein käyttöön tässä järjestelmässä.Käyttäjätunnusta ei löytynytLisättävä käyttäjä:KäyttäjätunnusKäyttäjätJärjestelmän käyttäjät:ALV id-numeron varmistusALV-tunnusnumero:ALV-numeroTarkista versiotVersionhallintaVietnam (VISCII)Näytä ulkoinen web-sivuNäkyväisyysVaroitusSääSäätiedot toimittaaWebsivustoSelainTervetuloaTervetuloa, %sLänsimainen (ISO-8859-1)Länsimainen (ISO-8859-15)Minkä ohjelma %s käynnistetään sisäänkirjautumisen jälkeen.Minkä parissa työskentelet juuri nyt?Mitä merkkiä käytetään erottimena?Mitä merkkiä käytetään lainaukseen?Mikä päivä näytetään viikon ensimmäisenä päivänä?Mitkä vaiheetVoit lisätä kirjanmerkkejä Napauttamalla "Lisää kirjanmerkkeihin" oikopolkua.Vasemman %s valikon leveys:WifiWikiTuuliTuulennopeus solmuissaTuuli:TyhjennäTyhjennys on käynnissäViisausKanssa TyöX-RefVVKyllä, hyväksynSinä ja %d muu henkilö pitää tästäSinä ja %d muuta henkilöä pitää tästäSinulla ei ole oikeuksia lisätä ryhmia.Sinulla ei ole oikeuksia lisätä jakoja.Sinulla ei ole oikeuksia muuttaa ryhmiä.Sinulla ei ole oikeuksia muuttaa jakoja.Sinulla ei ole lupaa luoda kuin %d kirjanmerkkiä.Sinulla ei ole oikeuksia poistaa ryhmia.Sinulla ei ole oikeuksia poistaa jakoja.Sinulla ei ole oikeuksia listata jakoryhmiä.Sinulla ei ole oikeuksia listata jakojen oikeuksia.Sinulla ei ole oikeuksia listata jakojaSinulla ei ole oikeuksia listata ryhmien jäseniä.Sinulla ei ole oikeuksia listata jakojen jäseniä.Et ole yhteydessä Facebook tiliisi. Sinun tulisi tarkistaa Facebook asetuksesi %s.Voit myös tarkistaa Facebook asetuksesi %s.Et suostunut käyttöehtoihin, joten et voi kirjautua sisään.Olet kirjautunut ulos.Olet kieltänyt pyydetyt oikeudet.Et ole kunnolla liittänyt Twitter tiliäsi Horden kanssa. Sinun tulisi tarkistaa Facebook asetukset %s.Pidätkö tästäSinun tulee kuvailla ongelmatilannetta ennenkuin voit lähettää ongelmaviestin.Sinun pitää antaa tyhjennettävä käyttäjätunnus.Sinun pitää antaa poistettava käyttäjätunnus.Sinun pitää antaa lisättävä käyttäjätunnus.Sinun pitää antaa päivitettävä käyttäjätunnus.SähköpostiosoitteesiOmat tietosiTietokoneesi IP-osoite on muuttunut sen jälkeen kun olit aloittanut istunnon. Tietoturvasyistä sinun tulee kirjautua uudestaan.NimesiKäyttämäsi autentikaatiotaustajärjestelmä ei tue käyttäjien lisäämistä. Jos haluat hallinnoida käyttäjätunnuksia, sinun pitää käyttää jotakin toista authentication taustajärjestelmää.Käyttämäsi autentikaatiotaustajärjestelmä ei tue käyttäjätietojen näyttämistä tai tämä piirre ei ole jostakin syystä käytettävissä.Käyttämäsi www-selain näyttää olevan muuttunut sen jälkeen kun olet aloittanut istunnon. Tietoturvasyistä sinun pitää kirjautua uudestaan järjestelmään.Selaimesi ei tue tätä piirrettä.Aikavyöhykkeesi:Koko nimesi:Käyttäjätunnuksesi on vanhentunut.Uusi salasanasi %s on: %sSalasanasi on nollattuSalasanasi on nollattu, mutta uutta salasanaa ei voitu lähettää sinulle. Ota yhteyttä järjestelmän ylläpitäjään.Salasanasi on nollattu, tarkista sähköpostisi ja kirjaudu sisään uudella salasanallasi.Salasanasi on vanhentunutSalasanasi on vanhentunut.Istuntosi on vanhentunut. Kirjaudu sisään uudestaan.Istuntosi on ylittänyt pisimmän sallitun ajan. Kirjaudu sisään uudestaan.Zippy[Ongelma]_Hälytykset_Selaa_Komentotulkki_Asennus_Ryhmät_Lukot_Uusi kirjanmerkki_Oikeudet_Haku_Käyttäjätliitetyyntänapsatusnapsautuksetsuunnasta %s (%s) nopeudella %s %spuuskittainsisällytettynäasetuksetnäytä eroavaisuudetvarmistaaksesi kirjoita salasana kahdestiunifiedsäätrean-1.0.3/locale/fi/LC_MESSAGES/trean.po0000664000175000017500000001753512171337643016045 0ustar janjan# Finnish translation for Trean. # This file is distributed under the same license as the Horde package. # Copyright # Leena Heino , 2003-2012. # msgid "" msgstr "" "Project-Id-Version: Trean 1.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-29 08:09:00+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" #: lib/Block/Bookmarks.php:54 lib/Block/Mostclicked.php:45 msgid "1 Line" msgstr "1-rivinen" #: lib/Block/Bookmarks.php:42 lib/Block/Mostclicked.php:33 msgid "10 rows" msgstr "10 riviä" #: lib/Block/Bookmarks.php:43 lib/Block/Mostclicked.php:34 msgid "15 rows" msgstr "15 riviä" #: lib/Block/Bookmarks.php:53 lib/Block/Mostclicked.php:44 msgid "2 Line" msgstr "2-rivinen" #: lib/Block/Bookmarks.php:44 lib/Block/Mostclicked.php:35 msgid "25 rows" msgstr "25 riviä" #: lib/Block/Bookmarks.php:52 lib/Block/Mostclicked.php:43 msgid "3 Line" msgstr "3-rivinen" #: templates/add.html.php:43 msgid "Add" msgstr "Lisää" #: templates/bookmarklet.html.php:1 msgid "Add to Bookmarks" msgstr "Lisää kirjanmerkkeihin" #: config/prefs.php:36 msgid "Ascending (A to Z or oldest to newest)" msgstr "Nouseva (A - Z tai vanhimmasta uusimpaan)" #: add.php:47 msgid "Bookmark Added" msgstr "Kirjanmerkkiä lisättiin" #: edit.php:19 #, php-format msgid "Bookmark not found: %s." msgstr "Kirjanmerkkiä ei löytynyt: %s." #: config/prefs.php:26 msgid "Bookmarked on" msgstr "Kirjanmerkki lisätty" #: lib/Block/Bookmarks.php:20 lib/Block/Bookmarks.php:65 #: lib/View/BookmarkList.php:116 msgid "Bookmarks" msgstr "Kirjanmerkit" #: lib/Trean.php:82 msgid "Bookmarks Feed" msgstr "Kirjanmerkkisyöte" #: browse.php:25 msgid "Browse" msgstr "Selaa" #: lib/View/BookmarkList.php:197 msgid "Browsing for tags:" msgstr "Selataan tageja:" #: templates/add.html.php:44 templates/edit.html.php:51 msgid "Cancel" msgstr "Peru" #: templates/add.html.php:31 templates/edit.html.php:39 msgid "Categorize your bookmark with comma separated tags." msgstr "Voit kategorisoida kirjanmerkkejä pilkuille erotetuilla tageilla." #: templates/list.html.php:14 msgid "Clicks" msgstr "Napsautukset" #: lib/Api.php:74 msgid "Close" msgstr "Sulje" #: templates/list.html.php:52 msgid "Delete" msgstr "Poista" #: app/controllers/DeleteBookmark.php:13 msgid "Deleted bookmark: " msgstr "Poistettu kirjanmerkki: " #: config/prefs.php:37 msgid "Descending (9 to 1 or newest to oldest)" msgstr "Laskeva (9 - 1 tai uusimmasta vanhimpaan)" #: templates/add.html.php:24 templates/edit.html.php:32 msgid "Description" msgstr "Kuvaus" #: config/prefs.php:13 msgid "Display Preferences" msgstr "Näytön asetukset" #: lib/Block/Bookmarks.php:38 msgid "Display Rows" msgstr "Näytä rivit" #: templates/add.html.php:57 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "Raahaa allaoleva \"Lisää kirjanmerkkeihin\"-linkki \"Links\" valikkoon" #: templates/add.html.php:55 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "Raahaa allaoleva \"Lisää kirjanmerkkeihin\"-linkki \"Personal Toolbar\" " "valikkoon" #: templates/list.html.php:48 msgid "Edit" msgstr "Muokkaa" #: edit.php:28 msgid "Edit Bookmark" msgstr "Muokkaa kirjanmerkkiä" #: templates/add.html.php:54 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: templates/add.html.php:56 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/add.html.php:34 templates/edit.html.php:42 msgid "Loading..." msgstr "Ladataan..." #: lib/Application.php:71 msgid "Maximum Number of Bookmarks" msgstr "Suurin sallittu määrä kirjanmerkkejä" #: config/prefs.php:25 lib/Block/Bookmarks.php:34 msgid "Most Clicked" msgstr "Eniten napsautuksia" #: lib/Block/Mostclicked.php:20 msgid "Most-clicked Bookmarks" msgstr "Eniten napsautetut kirjanmerkit" #: add.php:66 templates/add.html.php:9 msgid "New Bookmark" msgstr "Uusi kirjanmerkki" #: templates/search.php:3 msgid "No Bookmarks found" msgstr "Ei löytynyt kirjanmerkkejä" #: lib/Block/Bookmarks.php:94 lib/Block/Mostclicked.php:75 msgid "No bookmarks to display" msgstr "Ei kirjanmerkkejä näytettäväksi" #: browse.php:18 msgid "No bookmarks yet." msgstr "Ei vielä kirjanmerkkejä." #: templates/add.html.php:60 msgid "Note:" msgstr "Muistiinpano:" #: lib/Block/Mostclicked.php:29 msgid "Number of bookmarks to show" msgstr "Näytettävien kirjanmerkkien määrä" #: templates/add.html.php:61 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "tai uudemmissa Internet Explorer versioissa, sinun täytyy lisätä %s://%s " "Trusted Zone alueelle." #: config/prefs.php:46 msgid "Open links in a new window?" msgstr "Avaa linkit uudessa ikkunassa." #: config/prefs.php:12 msgid "Other Preferences" msgstr "Muut asetukset" #: templates/add.html.php:33 templates/edit.html.php:41 msgid "Previously used tags" msgstr "Aikaisemmin käytetyt tagit" #: lib/View/BookmarkList.php:181 msgid "Related Tags:" msgstr "Viittaavat tagit:" #: lib/View/BookmarkList.php:201 msgid "Remove from search" msgstr "Poista hausta" #: templates/edit.html.php:50 msgid "Save" msgstr "Tallenna" #: lib/Forms/Search.php:11 search.php:19 msgid "Search" msgstr "Haku" #: lib/Forms/Search.php:9 msgid "Search Bookmarks" msgstr "Hae kirjanmerkeistä" #: search.php:36 #, php-format msgid "Search Results (%s)" msgstr "Haun tulokset (%s)" #: lib/Forms/Search.php:12 msgid "Search for" msgstr "Haku ehdoilla" #: config/prefs.php:14 msgid "Set how to display bookmark listings and how to open links." msgstr "Aseta kuika kirjanmerkkilistaus näytetään ja kuinka linkit avataan." #: config/prefs.php:28 msgid "Sort bookmarks by:" msgstr "Järjestä kirjanmerkit" #: lib/Block/Bookmarks.php:29 msgid "Sort by" msgstr "Järjestetty" #: config/prefs.php:38 msgid "Sort direction:" msgstr "Järjestyssuunta" #: lib/Block/Bookmarks.php:48 lib/Block/Mostclicked.php:39 msgid "Template" msgstr "Malli" #: app/controllers/DeleteBookmark.php:16 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Kirjanmerkkiä poistettaessa tapahtui virhe: %s" #: add.php:41 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Kirjanmerkkiä lisätessä tapahtui virhe: %s" #: app/controllers/SaveBookmark.php:26 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Kirjanmerkkiä tallennettaessa tapahtui virhe: %s" #: config/prefs.php:24 lib/Block/Bookmarks.php:33 templates/add.html.php:19 #: templates/edit.html.php:27 templates/list.html.php:13 msgid "Title" msgstr "Otsikko" #: templates/add.html.php:53 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Jotta voisit nopeasti lisätä kirjanmerkkejä www-selaimeesi:" #: templates/add.html.php:14 templates/edit.html.php:22 msgid "URL" msgstr "URL" #: templates/add.html.php:58 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Voit lisätä kirjanmerkkejä Napauttamalla \"Lisää kirjanmerkkeihin\" " "oikopolkua." #: add.php:25 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Sinulla ei ole lupaa luoda kuin %d kirjanmerkkiä." #: lib/Application.php:81 msgid "_Browse" msgstr "_Selaa" #: lib/Application.php:82 msgid "_New Bookmark" msgstr "_Uusi kirjanmerkki" #: lib/Application.php:83 msgid "_Search" msgstr "_Haku" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "click" msgstr "napsatus" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "clicks" msgstr "napsautukset" trean-1.0.3/locale/fi/help.xml0000644000175000017500000000204012171337643014240 0ustar janjan Yleiskuva Esittely Ohjelmalla Kirjanmerkki voit tallettaa, hallinnoida, organisoida ja käyttää kirjanmerkkejäsi millä tahansa selaimella kaikkialta ja ne on kätevästi talletettuna yhteen paikkaan. Tallettamalla kirjanmerkkisi tähän ohjelmaan voit käyttää niitä millä selaimella tahansa miltä koneelta tahansa. Tämä tarkoittaa että voit käyttää kirjanmerkkejäsi monilla selaimilla, monilta eri koneilta ja eri paikoista. Etuna on myös se, että kirjanmerkkisi ei pääse katoamaan jos päivität selaimesi uudempaan versioon tai alat käyttämään kokonaan toista www-selainta. trean-1.0.3/locale/fr/LC_MESSAGES/trean.mo0000664000175000017500000021446712171337643016056 0ustar janjan}7J$J)JJ&J !K%.K$TK yK)KKK K KKKL L 6LRBLLLLLLLLM MM"M*M9MBMQMXME_MXMVM6UNVNNlOmOsOOO O OOOO O P P P ,P8PKP [PiPrPPNP-P Q#Q +Q8Q GQ QQ _Q kQ vQQQQ8Q#QlR%oRRR RRRRRS(S,S3S ESQSeSvSSSS%S<S%(TNTcT gT)qT TT'T,T*U%:U`U!qUUU UU UU'UV!V 0V ;V EVOVTV[VbVjVsVzVV V@V VVWW#WAWHWXWEmW!WdW:X@XYXbX~X X1X*XY Y)Y qUq\qaqdqjq oqhzqqr rr3rKr]r}r$rrrrr rrr s!s/4s dsrssssss sss ftqt t tt tttt|teuju pu }u uuuu uuuu u vv8%v^v tvvvvvvvEv=w[wErwAwwwx(x8x>xZx:xx$xxxx(x &y3yPy\hyyyyyyz #z1z8z>zEzIz Rz\ztz zzzzzzz{ {{ ;{G{b{w{|{ {{{*{({P|e| l| w||| $}.}B?}}}} }} } }}~~ ~~ !~4.~Gc~~~ ~~  & -69 p| ONbu}΀ , 6A FPR`,%<P`5v ͂:Um ăЃJ(M.v-;ӄ[1k -مޅOH%[ 0ӆ .BGN W al}dC&j&r8҈*;(T}ʼn͉܉  $ 9E*b>>̊ 4Okc5h:f% 803i-2ˍed %1FAx3%&?;){T)K$Ip1*()@Uj Ȓ ֒1):/jVDJS W dŔݔE'BDV ƕΕՕ ܕ ' 3AX;_2ΖӖ  2;O ӗ "2F `ks{  Ҙ/ 5VFs bǙ *!6X]bg{ D#"'"J%m%%%ߛ-.3#b,,c5DVzѝ*s E)ޞ&%/(U~v #sŠy9+ߡ?\\Q %-@Xnǣͣޣ  (-GO Vb"sl37G&1 ئ$2 <,Gt ŧ٧ z ڨ  1 :E V`u}LaөV58xŪ&>e $'/WkЬ 0AUol7ܭ4IQc rǮϮ#Ԯ952h6 %*/Zi!!Ȱ   7C]r 3ƱW3R 9 !.4C7x2+'@ Xd z2δִ    "-4;Cc]xֵ޵ 7@VUr#ȶz g q  ط76)R|%ZAYi|ùƹϹ޹   A>#4 ٺ  :9XQbG7<<ZyvԽK@?DKi|Ϳ /(P y% ;0;l8 ) 5Ib@}D %4=O eq3+- =Icx">e.x=KUB  '- U`v}/YaA@4>s|!4 J T`i ~!51JQYi z'& NZc t ~  8GPgmt% -J5 " ( H5 ~  "6)Hyr V#5z9C}   )17HOU&e)8@DJ P^$r$%9 )?OTn v q9.Eh N!>`i21"# 'D lx~ 10 6(_g~'jXo   %;&P w J %3Ie]%=#cWP06M_n(tJ18J`?g#* ) " )7HLUg %+$+ G"Q.t %#1I*{] ! 25< r}`  6@Yhw(E/5#e CE[ w! h!}  "(7 `k"r  lI  *%7)]*M-'G"o.&'%'6(^ l(h;:QZ5Gg#pk"9#]w9=*>Yjsz '(z G#O%L#r]<'1Yq)(1 Z g1HNRBbz+\}(#CB@QHxT'& .4;c[@C<"C5m3gi'7312/fb 4::@{0  '2AXW`+)7F`p  +(3 OpVxM )Ihz?Q@ _ y   + #   % : P  j  v         ? C (^ % 8  m  c q              M ^ 2| 3 0 03E5y=B20BcCGli5<rI 1V00:%AyS |8.+0)\wvu335>Q`i p }    /'/3sG+ ;8+"@=eS>1)#Kzu-Rn:BUPgm dN{b!KfL.28o$!&IRuVfo4zWu)<cR6YBqgYp} }'a/QH,x7Rm?ApJ;1v^  D QK=U0LT_lY&%L= Cj6{IwkIgt)t;=PoSbM1,3|\v}qO/2p;WbC yEW6Uz2{5mC:T4\/aIF$q N>p(rmQ-Xf.3 yk`,`G-*w&j #E{sM e)0 L:|DFw9Y Z A>nO%J,V aO >^?d.fQh4lh<T7G`W FM8O7v$XwMs_k]&nhhPt:Tu5g08cjS~xH*.[N@@0dE+V"  XA<H-F`K]\JDv ]4^*~ 6(rCo?*?b~jxieD'/X'9!\zl2kld17%#GV%"tB<9y]$iPnS}5NHZU9s'5x_( !| e[[r@#cy+E(3r[_AZiB"ca^Jq|iZ"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d Folders and %d Bookmarks imported.%d days until your password expires.%d minutes%d person likes this%d persons like this%d to %d of %d%d-day forecast%s - Notice%s Bookmarks%s Configuration%s Subcategories%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s is ready to perform the tasks below. Select each operation to run at this time.'%s' was not added: %s.'%s' was not created: %s., gusting %s %s, variable from %s to %s1 Day1 Line1 Month1 Week12 Hour Format2 Line2 Weeks24 Hour Format24 hours24-hour format3 Days3 Line cannot read information about your Facebook friends. cannot read your stream messages and various other Facebook data items. cannot set your status messages or publish other content to Facebook. can interact with your Twitter accountA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM/PMAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd BookmarkAdd ContentAdd Here:Add MembersAdd a groupAdd a new bookmarkAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll bookmarks and categories will be imported into here.All policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.AllowAllow alphanumericAllow anyAllow only numericAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAndAnswerAny Part of fieldApplicationApplication ContextApplication ListApplication is ready.Application is up-to-date.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscii ArtAt least one database schema is outdated.AttachmentAttachment DownloadAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated toAuthorize Access to Friends Data:Authorize PublishAuthorize Read:AutomaticAvailable fields:BOFH ExcusesBaltic (ISO-8859-13)Base graphics directory "%s" not found.BasicBlock SettingsBlock TypeBluetoothBookmarksBothBottomBrowseBrowserCalendarCameraCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.CategoriesCategories and LabelsCategoryCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange the number of columns to display in browse and search results.Change your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClient AnchorClose WindowCloudsCodeword frequencyCollapseColor PickerCombineComicsCommandCommand ShellComments: %dComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm PasswordContinueCookieCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DB schema is out of date.DB schema is ready.DDDataDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.Define one or more categories for your bookmarksDefinitionsDeleteDelete "%s"Delete All SyncML DataDelete GroupDelete current category?Delete this CategoryDeleted configuration upgrade script "%s".Deleted synchronization session for device "%s" and database "%s".Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice ManagementDevice encryptionDevice id:Device is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDisableDisplay 24-hour times?Display OptionsDisplay PreferencesDisplay detailed forecastDisplay edit buttons when displaying Bookmarks?Display forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload generated configuration as PHP script.Drag the 'Add to Bookmarks' link below onto your 'Links' BarDrag the 'Add to Bookmarks' link below onto your 'Personal Toolbar'DrugsDynamicEU VAT identificationEditEdit "%s"Edit %sEdit BookmarkEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnglishEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExportExport BookmarksExtra LargeFTP upload of configurationFacebook IntegrationFailed unlock attempts before device is wipedFeedFeed AddressFeels LikeFields to searchFile ManagerFilterFiltersFirst HalfFirst QuarterFoodForceForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFriend Requests:Friends enabledFrom the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoogle SearchGreek (ISO-8859-7)Group AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTML EmailHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hide Advanced PreferencesHide ResultsHome DirectoryHordeHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsIcons for %sIdentity's name:ImportImport BookmarksImport, Step %dImport/ExportImported BookmarksImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Incorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internet ExplorerInternet Expolorer Users will need to export their current Favorites by going to the 'File' menu and selected 'Import and Export'Invalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid parent permission.InventoryJapanese (ISO-2022-JP)Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLawLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLocal time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogged in to FacebookLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize Login to Twitter and authorize the applicationLogoutLoveMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.MatchMatching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Email ageMaximum Number of Portal BlocksMaximum attachment sizeMaximum number of entries to displayMedicineMediumMembersMentionsMetar WeatherMetricMin temp last 24 hours: Min temp last 6 hours: Minimum PIN lengthMinutes of inactivity before device should lockMiscellaneousMissing configuration.Mobile (Minimal)Mobile (Smartphone)Mobile Optimized AppsModeMondayMoon PhasesMozillaMozilla will need to export their current Bookmarks by going into 'Bookmark Manager' and selecting 'Export' from the 'Tools' menuMy AccountMy Account InformationMy BookmarksMy CategoriesMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeverNew BookmarkNew CategoryNew Messages:New MoonNew SubcategoryNew Username (optional)New passwordNew passwords don't match.NewsNextNext 4 PhasesNo Bookmarks foundNo SoundNo available configuration data to show differences for.No categories definedNo change.No icons found.No items to displayNo location is set.No offensive fortunesNo pending signups.No push while roamingNo security question has been set. Please contact your administrator.No stable version exists yet.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.NoneNordic (ISO-8859-10)Northern HemisphereNot ProvisionedNotesNothing to browse, go back.Number of articles to displayNumber of columns to display in browse and search results:Number of seconds to wait to refreshObject CreatorOffense filterOfficeOld and new passwords must be different.Old passwordOld password is not correct.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in new windowsOperating SystemOptionsOrOr enter a user name:Other InformationOther OptionsOthersOwnerOwner:PHPPHP CodePHP ShellPOP/IMAP Email accountsPOSIX extension is missingP_HP ShellPasswordPassword ComplexityPassword changed successfully.Passwords must match.PastePending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a password.Please enter a username.Please enter the name of the new category:Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Pokes:Policy KeyPolicy Key:PoliticsPosition of reply text when replying to email on your device. Note that some devices will always send the citation string at the end of the reply text.Posted %sPosted %s via %sPrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePressurePressure at sea level: PrincipalProblem DescriptionProvisionedProvisioningPublish enabled.QueryQuotaRandom FortuneReadRead enabledReally delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRegular AppsRemarksRemote HostRemoveRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sReplyReprovision All DevicesRequire PINRequire S/MIME EncryptionRequire S/MIME SignatureResetReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSD cardSD card encryptionSMS Text messagesSQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch BookmarksSearch ResultsSearch:Select a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the file to import:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Send Problem ReportSensor: Server TimeSession AdministrationSession TimestampSessionsSet preferences to allow you to reset your password if you ever forget it.Set the your preferred display language.Set up integration with your Facebook account.Set up integration with your Twitter account.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?ShowShow Advanced PreferencesShow differences between currently saved and the newly generated configuration.Show extra detail?Show last login time when logging in?Show notificationsSkip Login TasksSmallSnow depth: Snow equivalent in water: Some of Trean's configuration files are missing:Songs & PoemsSouth European (ISO-8859-3)Southern HemisphereSpamSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubdirectory "%s" not found.Submitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSync allSyncMLSyndicated FeedTag CloudTarget Category:TasksTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)Template to use when displaying Bookmarks:Temporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Thai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.Themes directory "%s" not found.There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmarkThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.This file contains preferences for Trean.This is the main Trean configuration file. It contains options for all Trean scripts.TicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTopTranslationsTrean is not properly configuredTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sURLUnable to contact Twitter. Please try again later. Error returned: %sUnable to delete "%s": %s.Unable to set like.Unable to validate the request token. Please try your request again.Undo ChangesUnfiledUnicode (UTF-8)UnitsUnknownUnlockUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated schema for %s.UploadUploaded all application configuration files to the server.Use if name/password is different for IMSP server.UserUser AdministrationUser Agent:User NameUser OptionsUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWeb browserWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to add bookmarks by clicking your new 'Add to Bookmarks' shortcut.Whole FieldWidth of the %s menu on the left:WifiWikiWindWind speed in knotsWind:WipeWipe is pendingWisdomWith WorkX-RefYYYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are creating a category folder.You are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are not connected to your Facebook account. You should check your Facebook settings in your %s.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You have been logged out.You have denied the requested permissions.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your session has expired. Please login again.Your session length has exceeded the maximum amount of time allowed. Please login again.Zippy[Problem Report]_Alarms_CLI_Configuration_Groups_Locks_Permissions_Usersattachmentcalmfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestype the password twice to confirmunifiedweatherProject-Id-Version: Trean 1.0-cvs Report-Msgid-Bugs-To: POT-Creation-Date: 2003-04-02 20:30+0200 PO-Revision-Date: 2003-04-02 23:04+0100 Last-Translator: Raphaël JEUDY Language-Team: French MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit « %s » a été ajouté au système des groupes.« %s » a été ajouté au système des permissions.« %s » n'a pas été créé : %s.%.2f Mo utilisés sur %.2f Mo permis (%.2f %%)%d %s et %s%d dossiers et %d signets importés.%d jours avant l'expiration de votre mot de passe.%d minutes%d personne aime ça%d personnes aiment ça%d à %d de %d%d-prévision du jour%s - Notice%s SignetsConfiguration de %s%s Sous catégoriesTâches %s - ConfirmationConditions d'utilisation de %s %s à %s %s%s est prêt à effectuer les tâches ci-dessous. Sélectionnez chaque opération que vous voulez effectuer cette fois-ci.'%s' n'a pas été ajouté: %s.'%s' n'a pas été créé: %s., rafale %s %s, variable du %s au %s1 jour1 ligne1 mois1 semaineFormat 12 heures2 lignes2 semainesFormat 24 heures24 heuresformat sur 24 heures3 jours3 lignes ne peut pas lire les informations sur vos amis de Facebook. ne peut pas lire votre flux de messages ainsi que d'autres données de Facebook. ne peut pas modifier votre statut ou publier du contenu sur Facebook. peut interagir avec votre compte TwitterUn effacement de l'appareil a été demandé. L'appareil sera effacé lors de la prochaine tentative de synchronisation.Une version plus récente (%s) existe.Un effacement distant de l'appareil %s a été demandé. L'appareil sera effacé lors de la prochaine tentative de synchronisation.AM/PMDonnées personnellesMot de passe du compteActionsActiveSyncAdministration des appareils ActiveSyncAppareil ActiveSyncActiveSync non activé.AjouterAjouter SignetAjouter du contenuAjouter ici :Ajouter des membresAjouter un groupeAjouter un nouveau signetAjouter un nouvel utilisateur :Ajouter une alarmeAjouter la paireAjouter aux signetsAjouter un utilisateur« %s » a été ajouté au système, mais l'ajout d'informations supplémentaires n'est pas possible : %s.« %s » a été ajouté. Vous pouvez vous connecter.La fonction d'ajout d'utilisateurs est désactivée.AdresseCarnet d'adressesAdministrationFin d'alarmeDébut d'alarmeDébut de l'alarmeTexte de l'alarmeTitres de l'alarmeAlarmesToutTous les utilisateurs authentifiésTous les signets et catégories vont être importés ici.Toutes les clés d'accès ont été réinitialisées.Tous les états ont été retirés de vos appareils ActiveSync. Ils seront resynchronisés lors de la prochaine connexion au serveur.Suppression de toutes les sessions de synchronisation.AutoriserAutoriser les caractères alphanumériquesAutoriser tousAutoriser seulement les nombresNom d'utilisateur IMSP alternatifMot de passe IMSP alternatifNom d'utilisateur IMSP alternatifAdresse de courriel alternativeEtRéponseN'importe quelle partie du champApplicationContexte de l'applicationListe d'applicationsL'application est prête.L'application est à jour.ApprouverArabe (Windows-1256)Êtes-vous certain de vouloir effacer « %s » ?Êtes-vous certain de vouloir supprimer cette requête d'inscription pour « %s » ?Êtes-vous certain de vouloir effacer « %s » ?Arménien (ARMSCII-8)ArtArt ASCIIIl y a au moins un schéma de base qui n'est pas à jour.Pièce jointeTélécharger les Pièces jointesTentative d'effacement d'un groupe inexistant.Tentative d'effacement d'une permission inexistante.Tentative de modification d'une permission inexistante.Tentative de modification d'un partage inexistant.Authentifié auprès deAutoriser l'accès aux données des amis :Autoriser la publicationAutoriser la lecture :AutomatiqueChamps disponibles :Excuses BOFHBalte (ISO-8859-13)Répertoire des graphiques « %s » non trouvé.BasiquePréférences de blocType de blocBluetoothSignetsLes deuxBasParcourirNavigateurAgendaCameraAnnulerAnnuler le rapport du problèmeAnnuler l'effacementImpossible de réinitialiser le mot de passe automatiquement, contactez votre administrateur.ClasserCatégories et ÉtiquettesCatégorieCelte (ISO-8859-14)Européen central (ISO-8859-2)ModifierChanger d'emplacementModifier votre mot de passeChangez le nombre de colonnes à afficher lors d'une recherche ou d'une consultation.Modifier vos données personnelles.La modification de votre mot de passe n'est pas supportée avec la configuration actuelle. Contactez votre administrateur.VérifierVérifier les nouvelles versionsVérificationChinois simplifié (GB2312)Chinois traditionnel (Big5)Choisir %sChoisir le mode d'affichage des dates (format court) :Choisir le mode d'affichage des dates (format long) :Choisir le mode d'affichage des heures :Effacer la requêteRetirer l'utilisateur: %sEffacer l'utilisateurEffacer les données de l'utilisateurCliquez sur un de vos carnets d'adresses puis sélectionnez tous les champs à rechercher.Cliquer pour poursuivreAncre du clientFermer la fenêtreNuagesFréquence des mots-clésRéduirePalette de couleursCombinerBDCommandeCommande shellCommentaires : %dOrdinateursConditionConditionsConfigurationDifférences de configurationSynchronisation des assistants personnels, ordiphones et Outlook.La configuration n'est pas à jour.Scripts de configuration de mise à jour disponiblesConfigurer %sConfirmer le mot de passePoursuivreTémoin (cookie)Échec de la connexion au serveur « %s » via FTP : %sImpossible de contacter le serveur. Réessayez plus tard.Impossible de supprimer le script de mise à jour de la configuration « %s ».Impossible de trouver une autorisation à interagir avec votre compte Twitter pour Impossible de réinitialiser le mot de passe pour l'utilisateur demandé. Certains (ou tous) les détails ne sont pas corrects. Réessayez ou contactez votre administrateur pour de l'aide.Impossible de revenir à la configuration précédente.Impossible d'enregistrer une copie de la configuration : %sImpossible d'enregistrer le script de mise à jour de la configuration dans : « %s ».Impossible d'enregistrer le fichier de configuration %s. Utilisez une des options ci-dessous pour sauvegarder le code.Impossible d'enregistrer le fichier de configuration %s. Vous pouvez soit utiliser une des options pour sauver le code sur %s soit copier manuellement le code ci-dessous dans %s.Impossible de enregistrer la configuration pour « %s » : %sPaysCréerCréer une nouvelle identité4 phases courantesAlarmes en coursCourantSessions en coursHeure actuelleObservations actuellesCondition actuelle :Cyrillique (KOI8-R)Cyrillique (Windows-1251)Cyrillique/Ukrainien (KOI8-U)Accès à la base non configuréLe schéma de la base n'est pas à jour.Le schéma de la base est prêt.JJDonnéesBase de donnéesDateDate de réceptionDate : %s ; heure : %sJourDéfautCouleur par défautInterpréteur de commande par défautJeu de caractères par défaut pour l'envoi des messages :Lieu par défaut pour les fonctionnalités géolocalisées.Definissez une ou plusieurs catégories pour vos signetsDéfinitionsSupprimerEffacer « %s »Suppression de toutes les données SyncMLSupprimer un groupeSupprimer la catégorie?Supprimer cette catégorieScript de mise à jour de la configuration supprimé « %s ».Session supprimée pour l'appareil « %s » et la base « %s ».Décrire le problèmeDescriptionDéveloppementAppareilId. de l'appareilGestion des appareilsChiffrementId. de l'appareil :L'appareil est effacéAppareil effectivement retiré.Annulation effective de l'effacement de l'appareil.Point de roséePoint de rosée pour la dernière heure : Point de roséeDésactiverAfficher sur 24 heures ?Afficher les optionsAfficher les préférencesAfficher la prévision détailléeAfficher un bouton d'édition lors de l'affichage des signets?Afficher la prévision (TAF)Le premier enregistrement contient-il le nom des champs ? Dans l'affirmative, cochez cette boîte :Vous n'avez pas de compte ? Enregistrez-vous.Télécharger %sTélécharger la configuration générée comme un script PHPGlissez le lien 'Ajouter aux signets' ci-dessous sur votre barre de 'liens'Glissez le lien 'Ajouter aux signets' ci-dessous sur votre barre d'outils 'personnel'DroguesDynamiqueIdentification TVA Eu.EditerModifier « %s »Editer %sEditer le signerÉdition des préférences deÉditer les permissionsÉditer les permissions pour « %s »ÉducationAdresse électroniqueFin àAnglaisSaisissez un nom pour la nouvelle catégorie :Écrivez une question de sécurité qu'on vous posera si vous devez réinitialiser votre mot de passe, par exemple « Quel est le nom de votre animal préféré ? » :Erreur de connexion à Twitter : %s détails ont été consignés pour l'administrateur.Erreur lors de la suppression de la session de synchronisation :Erreur lors de la suppression des sessions de synchronisation :Erreur lors de la mise à jour du mot de passe : %sEthniqueInvités à l'événement :Tous les ¼ d'heureToutes les 2 minutesToutes les 30 secondesToutes les 5 minutesToutes les ½ heuresToutes les heuresToutes les minutesExemple de valeurs :ExécuterDévelopperExporterExporter vos signetsTrès grandTransfert FTP de la configurationIntégration à FacebookErreur de déblocage avant l'effacement de l'appareilFluxFluxTempérature ressentieChamps à rechercherGestionnaire de fichiersFiltreFiltresPremière demiePremier quartierNourritureForcePrévision (TAF)Jours de prévision (notez que les prévisions fournies donnent le jour et la nuit ; un grand nombre ici peut faire un bloc très large)Vous avez oublié votre mot de passe ?FormulairesCitationType de citationCitationsCitations 2ForumsDemandes d'amis :Amis activésdepuis le %s (%s °) à %s %sdepuis le %s à %s %sDescription complètePleine luneNom completGénérer la configuration de %sCode généréLa suitePréférences globalesAllerGoedelRecherche GoogleGrec (ISO-8859-7)Administration des groupesNom du groupeLe groupe n'a pas été créé : %s.GroupesPermissions des invitésCourrier HTMLHébreu (ISO-8859-8-I)HauteurHauteur de la zone de flux (la largeur s'ajustera automatiquement au bloc)AideSuje_ts de l'aideHémisphèreVoici le début du fichier :Cacher les préférences avancéesRésultatsRépertoire personnelHordeCombien de champs (colonnes) y a-t-il ?Combien de secondes avant de vérifier pour de nouvelles publications ?HumiditéHumoristesIcônes pour %sNom du compte :ImporterImporter vos signetsImportation, étape %dImporter/ExporterSignets importésChamp importé : %sChamps importés :En réponse à :Dans les listes ci-dessous, sélectionnez un champ importé du fichier source à gauche, et le champ correspondant disponible dans votre carnet d'adresses à droite. Puis cliquez sur « Ajouter la paire » afin de les marquer pour l'importation. Cliquez sur « Suivant » quand vous avez fini.Nom d'utilisateur ou adresse alternative incorrect. Réessayez ou contactez votre administrateur système pour de l'aide.Utilisateurs individuelsInformationMembres héritésInscrivez une adresse de courrier à laquelle vous recevrez le nouveau mot de passe :Inscrivez la réponse à la question de sécurité :Internet ExplorerLes utilisateurs d'Internet Explorer devront exporter leurs signets en allant dans le menu 'Fichier' puis 'Importer et Exporter'Format numérique de l'identification de la TVA invalide.Action invalide %sApplication invalide.Résultat du hachage invalide.Permission invalide.InventaireJaponais (ISO-2022-JP)À l'instant…Débutants du noyauMot cléEnfantsKolabCoréen (EUC-KR)LangueGrandDernière demieDernière modification du mot de passeDernier quartierHeure de la dernière synchro.Dernière mise à jour :Dernière connexion : %sDernière connexion : %s à partir de %sDernière connexion : jamaisDernierLoiAimerRimesBiscuit LinuxAfficher les tablesÉchec de la liste des alarmes : %sÉchec de la liste des verrous : %sÉchec de la liste des sessions : %sL'affichage de la liste des utilisateurs est désactivé.LittératureHeure locale : %s %sHeure et localeLieuVerrouiller l'utilisateurVerrousConnexionDéconnexionAuthentifié sur FacebookLa connexion est refusée. Il est probable que votre nom d'utilisateur ou votre mot de passe ait été mal saisi.Échec de connexion.Connectez vous sur Facebook et autorisez Connectez vous sur Twitter et autorisez l'application DéconnectionAmourMMMagieCourrierAdministration du courrielAdministrez la liste de catégories et les couleurs liées à ces catégories.Gestion des appareils ActiveSync.ContientChamps apparentés :Température maximale des 24 dernières heures : Température maximale des 6 dernières heures : Age maximum d'un fichierNombre maximum de blocs du portailTaille maximale de la pièce jointeNombre maximum d'éléments à afficherMédicamentMoyenMembresMentionsMétéo MetarMétriqueTempérature minimum des 24 dernières heures : Température minimum des 6 dernières heures : Longueur maximale du code pinMinutes d'inactivité avant verrouillage de l'appareilVariésConfiguration absente.Vue SmartphoneMobile (ordiphone)Application optimisées pour smartphoneModeLundiPhases de la luneMozillaLes utilisateurs de Mozilla devront aller dans le menu 'Bookmarks-> Manage Bookmarks...->Tools->Export...'Paramétrage du compteMes données personnellesMes signetsMes categoriesMon flux FacebookMon portailPrésentation de mon portailN/ANON, je n'accepte pasN.B.: EFFACER UN APPAREIL PEUT LE RÉINITIALISER À SON ÉTAT DE SORTIE D'USINE. VEUILLEZ VOUS ASSURER QUE C'EST BIEN CE QUE VOUS VOULEZ FAIRE AVANT DE DEMANDER UN EFFACEMENTNomJamaisNouveau signetNouvelle catégorieNouveaux messages : %sNouvelle luneNouvelle sous catégorieNouveau nom de connexion (facultatif)Nouveau mot de passeLes nouveaux mots de passe diffèrent.NouvellesSuivant4 phases suivantesPas de signets trouvésPas de sonPas de données de configuration pour lesquelles montrer les différences.Pas de catégorie définieNon modifié.Aucun icône trouvé.Aucun élément à afficherAucun lieu n'est sélectionné.Pas d'aphorismes choquantsAucune confirmation en attentePas de push mail en itinéranceAucune question de sécurité n'a été configurée. Veuillez contacter votre administrateur.Pas de version stable pour l'instant.Aucun nom d'utilisateur spécifié.Pas de version trouvée dans la configuration originale. Régénérez la configuration.Pas de version trouvée dans votre configuration. Régénérez la configuration.AucunNordique (ISO-8859-10)Hémisphère NordSans provisionNotesRien à naviguer, retournez en arrière.Nombre d'articles à afficherNombre de colonnes à afficher lors d'une recherche ou d'une consultation:Nombre de secondes d'attente avant de rafraîchirCréateur d'objetFiltre anti-offensantBureauL'ancien et le nouveau mots de passe doivent être différents.Ancien mot de passeL'ancien mot de passe est incorrectSeulement les « fortunes » offensantesSeuls le propriétaire et l'administrateur du système peuvent changer la propriété ou les permissions du propriétaire d'un partageOuvrir le lien dans une nouvelle fenêtreSystème d'exploitationOptionsOuOu entrer un nom d'utilisateur :Autres informationsAutres optionsAutresPropriétairePropriétaire :PHPCode PHPInterpréteur PHPComptes e-mail POP/IMAPExtension POSIX absenteInterpréteur P_HPMot de passeRobustesse du mot de passeChangement du mot de passe effectué.Les mots de passe doivent être identiques.CollerConfirmations en attente :PersonnesEffectuer les tâches de connexionLa permission « %s » n'est pas supprimée.Droits d'accèsAdministration des permissionsDonnées personnellesAnimauxPhotosPlatitudesVeuillez saisir un mot de passe.Veuillez saisir un nom d'utilisateur.Veuillez entrer le nom de la nouvelle catégorie:Veuillez fournir un résumé du problème.Veuillez lire le texte suivant. Vous devez accepter les conditions pour utiliser le système.Pichenettes :Clef d'accèsClef d'accès :PolitiquePosition du texte cité dans un e-mail. Sur certains %s envoyéEnvoyé %s via %sPrécipitations pour la %d dernière heure : Précipitations pour les %d dernières heures : %s de probabilité de pluiePressionPression au niveau de la mer : PrincipalDescription du problèmeApprovisionnéApprovisionnéPublication activée.RequêteQuotaAphorisme au hasardLireLecture activéeSuppression définitive de « %s » ?Suppression définitive des données pour l'utilisateur « %s » ?Rafraîchir les éléments du menu dynamique :Rafraîchir l'écran du sommaire :Taux de rafraîchissement :Appareils déclarésApplication couranteRemarquesHôte distantRetirerRetirer la paireEnlever le script enregistré du répertoire temporaire du serveur.Retirer l'utilisateurRetirer l'utilisateur : %sRépondreApprovisionner tous les appareilsCode requisNécessite un chiffrement S/MIMENécessite une signature S/MIMERAZRemise à zéro du mot de passeRéinitialisation des états de l'appareil. Cela provoquera la resynchronisation de tous les éléments.Réinitialiser votre mot de passeRevenir à la dernière requêteRésultatsRésultats de %sRetour à l'écran principalRetweeterRetweeté par %sRé-entrer le nouveau mot de passeRevenir à la configuration précédenteDevinettesLancerExécuter les tâches de connexionEnvoyer une EcardChiffrementSMSInterpréteur SQLInterpréteur S_QLEnregistrerEnregistrer « %s »Enregistrer et terminerEnregistrer la configuration générée comme un script PHP dans le répertoire temporaire de votre serveur.Script de mise à jour de la configuration enregistré sous : « %s »SciencePortéeReche_rcheRechercheRechercher dans les signetsRésultats de la rechercheRecherche :Sélectionnez un groupe à ajouter :Sélectionnez un nouveau propriétaire :Sélectionnez un serveurSélectionnez un utilisateur à ajouter :Sélectionnez tous les champs à rechercher pour la complétion des adresses.Sélectionnez le format de date et d'heure :Sélectionnez le délimiteur de date :Sélectionnez le format de date :Sélectionnez l'ordre du jour et de la date :Séléctionnez le fichier à importer:Sélectionnez le délimiteur d'heure :Sélectionnez le format de l'heure :Sélectionnez votre thème de couleurs.Séléctionnez votre langue par défaut:Envoyer le rapport d'anomalieSonde : Heure du serveurAdministration de la sessionDébut de la sessionSessionsConfigurer les options pour vous permettre de remettre à zéro votre mot de passe si jamais vous l'oubliez.Séléctionnez votre langue d'affichage.Configuration de l'intégration avec votre compte Facebook.Configuration de l'intégration avec votre compte Twitter.Sélectionnez votre langue préférée, le fuseau horaire et les options de date.Définissez la première application lancée, le thème de couleurs, le rafraîchissement des pages, et d'autres options d'affichage.Plusieurs endroits possibles avec le paramètre : %sRésuméDoit-on définir des touches de raccourcis pour la plupart des liens ?AfficherMontrer les préférences avancéesMontrer les différences entre la configuration enregistrée actuellement et celle nouvellement générée.Montrer les détails additionnels?Montrer l'heure de la dernière connexion à l'entrée ?Montrer les notificationsSauter les tâches de connexionPetitHauteur de neige : Quantité d'eau équivalente à la quantité de neige : Certains fichiers de configuration pour Trean sont manquants:Chansons et poèmesSud-européen (ISO-8859-3)Hémisphère sudPourrielSportsStandardStar TrekHeure de débutGestion des étatsStatutImpossible de mettre à jour le statut.FluxSous-répertoire « %s » non trouvé.La demande d'ajout de « %s » au système a été soumise. Vous ne pourrez pas vous connecter jusqu'à son approbation.Connexion effective à votre compte Facebook ou permissions modifiées.Succès« %s » a bien été ajouté(e).Les données de l'utilisateur « %s » ont bien été retirées du système..« %s » a bien été supprimé(e).« %s » a bien été retiré(e).Retour à la configuration initiale réussi. Rafraîchir la page pour voir les modifications.Enregistrement de la configuration de la sauvegarde réussi.« %s » a bien été mis(e) à jour.Écriture de %s réussiLever du SoleilCoucher du SoleilDimancheLever du SoleilLever/Coucher du SoleilCoucher du SoleilTout synchroniserSyncMLFlux de syndicationNuage de mots clésCatégorie cible:TâchesTempérature pour la dernière heure : TempératureTempérature%s(%sMax%s/%sMini%s)Modèle à utiliser pour l'affichage des signets:Impossibilité temporaire de connexion à Facebook. Veuillez réessayer.Impossibilité temporaire de contacter Twitter. Veuillez réessayer plus tard.Thaï (TIS-620)L'effacement à distance pour l'appareil d'id. %s a été annulé.L'alarme a été supprimée.L'alarme a été enregistrée.La configuration de %s ne peut pas être modifiée automatiquement. Veuillez mettre à jour la configuration manuellement.Adresse par défaut pour cette identité :Le blocage a été retiré.Le service du statut des membres n'a pas pu être joint dans les délais. Réessayez plus tard ou avec le statut d'un autre membre.Le service du statut des membres n'est pas disponible actuellement. Réessayez plus tard ou avec le statut d'un autre membre.Le code du pays saisi est invalide.Le service n'est pas disponible actuellement. Réessayez plus tard.Le service est trop sollicité actuellement. Réessayez plus tard.La requête d'enregistrement pour « %s » a été supprimée.La requête de connexion pour l'utilisateur « %s » a été retirée.L'état de l'appareil d'id. %s a été réinitialisé. Il sera resynchronisé lors de la prochaine connexion au serveur.Le script de test est actuellement actif. Pour des raisons de sécurité, désactivez les scripts de test après usage (Cf. horde/docs/INSTALL).L'utilisateur « %s » existe déjà.L'utilisateur « %s » n'existe pas.Répertoire des thèmes « %s » non trouvéUn problème est apparu lors de l'ajout de « %s » : %sUn problème est apparu lors de la suppression des données de l'utilisateur « %s » : Un problème est apparu lors de la suppression de « %s » : Un problème est apparu lors de la mise à jour de « %s » : %sErreur lors de l'ajout aux signetsUne erreur s'est produite en contactant le serveur ActiveSync : %sUne erreur s'est produite en contactant Twitter : %sIl y avait une erreur dans le formulaire de configuration. Peut-être avez-vous laissé un champ requis vide.Une erreur s'est produite lors de la requête : %sIl y a eu une erreur lors de l'établissement de votre session Facebook. Veuillez réessayer plus tard.Une erreur s'est produite lors du retrait des données globales de %s. Les détails ont été consignés.Une erreur est survenue pour les permissions demandéesCe numéro d'identification de la TVA est invalide.Ce numéro d'identification de la TVA est valide.Ce fichiers contient les préférences pour Trean.Fichier principal de configuration pour Trean. Il contient les options pour tous les scripts de Trean.TicketsSuivi horaireFormat d'heureFormat date ou inconnuHorodatage des sessions de synchronisation réussiesTitrePour ajouter rapidement un signet depuis votre navigateur:Pour exclure un champ particulier de l'importation ou pour corriger un mauvais appariement, sélectionner un champ dans la liste ci-dessous et cliquez sur « Retirer la paire ».Pour sélectionner plusieurs champs à la fois, maintenez enfoncé le bouton « Ctrl » (PC) ou « Commande » (Mac) en cliquant.Aujourd'huiDemainHautTraductionsTrean n'est pas correctement configuréTurc (ISO-8859-9)TweetIntégration à TwitterFil de TwitterFil de Twitter pour %sAdresseImpossible de contacter Twitter. Veuillez réessayer plus tard. Erreur retournée : %sSuppression impossible de « %s » : %s.Impossible d'envoyer votre appréciation.Impossible de valider la requête. Merci de recommencerAnnuler les modificationsHors catégorieUnicode (UTF-8)UnitésInconnuDébloquerModifierModifier %sModifier le schéma %sMettre à jour tous les schémas de la baseMettre à jour toutes les configurationsModifier l'utilisateurMise à jour de « %s ».Mise à jour du schéma pour %s.ChargerTous les fichiers de configuration des applications ont été envoyés sur le serveur.Utiliser si le nom d'utilisateur/mot de passe est différent du serveur IMSP.UtilisateurAdministration des utilisateursLogiciel client utilisé : %sNom d'utilisateurOptions utilisateurEnregistrement des utilisateursL'enregistrement d'utilisateur est désactivé sur ce système.L'enregistrement d'utilisateur n'est pas configuré correctement sur ce système.Compte utilisateur non trouvéUtilisateur à ajouter :Nom d'utilisateurUtilisateursUtilisateurs définis :Vérification de l'id. numérique de la TVAIdentifiant numérique de la TVA :Numéro de TVAContrôle de versionContrôle de versionViêt-namien (VISCII)Voir une page web externeVisibilitéAttentionMétéoDonnées météo fournies parSite webNavigateurBienvenueBienvenue, %sOccidental (ISO-8859-1)Occidental (ISO-8859-15)Quelle application %s doit-il présenter après la connexion ?À quoi travaillez-vous ?Quel est le caractère de séparation ?Quel est le caractère de citation ?Quel jour voudriez-vous afficher en début de semaine ?Quelles phasesLors d'une navigation vous pouvez rapidement ajouter un signet en cliquant sur le lien 'Ajouter aux signets'.Tout le champLargeur du menu %s à gauche :WifiWikiVentVitesse du vent en nœudsVent :EffacerEffacement demandéSagesseAvecTravailX-RefAAOui, j'accepteVous et %d autre personne aiment ceciVous et %d autres personnes aiment ceciVous crééez une catégorie.Vous n'êtes pas autorisé à ajouter des groupes.Vous n'êtes pas autorisé à ajouter des partages.Vous n'êtes pas autorisé à changer de groupe.Vous n'êtes pas autorisé à changer de partageVous n'êtes pas autorisé à supprimer des groupesVous n'êtes pas autorisé à supprimer des partages.Vous n'êtes pas autorisé à lister les groupes de partages.Vous n'êtes pas autorisé à lister les permissions des partages.Vous n'êtes pas autorisé à lister les partages.Vous n'êtes pas autorisé à lister les utilisateurs des groupes.Vous n'êtes pas autorisé à lister les utilisateurs des partages.Vous n'avez pas configuré correctement votre compte Facebook. Vous devriez vérifier la configuration de Facebook dans votre %s.Vous pouvez aussi vérifier votre configuration Facebook dans votre %s.Vous n'avez pas accepté les conditions d'utilisation, vous n'êtes donc pas autorisé à vous connecter.Vous avez été déconnecté.Vous n'avez pas autorisé les permissions demandées.Vous n'avez pas configuré correctement votre compte Twitter avec Horde. Vous devriez vérifier la configuration de Twitter dans votre %s.Vous aimez çaVous devez décrire le problème avant de nous faire parvenir le rapport.Vous devez spécifier un utilisateur à retirer. Vous devez spécifier un utilisateur à retirer.Vous devez spécifier un utilisateur à ajouter.Vous devez spécifier le nom de l'utilisateur à modifier.Votre adresse électroniqueVotre informationVotre adresse Internet a changé depuis l'ouverture de votre session. Pour votre sécurité, vous devez vous reconnecter.Votre nomVotre module d'authentification ne supporte pas l'ajout d'utilisateurs. Si vous souhaitez utilisez Horde pour administrer les comptes utilisateurs, vous devez utiliser un autre module d'authentification.Votre module d'authentification n'est pas en mesure d'établir une liste des utilisateurs, ou cette fonction a été retirée pour une autre raison.Votre navigateur semble avoir changé depuis le début de votre session. Pour votre sécurité, vous devez vous reconnecter.Votre navigateur ne supporte pas cette option.Votre fuseau horaire actuel :Votre nom complet :Votre compte a expiré.Votre nouveau mot de passe pour %s est :%sVotre mot de passe a été réinitialiséVotre mot de passe a été réinitialisé, mais il n'a pas pu vous être transmis. Veuillez contacter l'administrateur.Votre mot de passe a été réinitialisé, vérifier votre courrier et connectez-vous avez votre nouveau mot de passe.Votre mot de passe a expiréVotre mot de passe a expiré.Votre session a expiré. Veuillez vous reconnecter.Votre session a expiré. Veuillez vous reconnecter.Zippy[Rapport de problème]_AlarmesLigne de _commande_Configuration_Groupes_Locks_Permissions_Utilisateurspièce jointecalmedepuis le %s (%s) à %s %sen rafaleincorporéepréférencesmontrer les différencesentrez le mot de passe deux fois pour confirmerunifiéMétéotrean-1.0.3/locale/fr/LC_MESSAGES/trean.po0000664000175000017500000002331412171337643016046 0ustar janjan# French translation for Trean package. # Copyright 2012-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the PACKAGE package. # Raphaël JEUDY , 2003. # msgid "" msgstr "" "Project-Id-Version: Trean 1.0-cvs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2003-04-02 20:30+0200\n" "PO-Revision-Date: 2003-04-02 23:04+0100\n" "Last-Translator: Raphaël JEUDY \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: data.php:70 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "%d dossiers et %d signets importés." #: templates/browse/bookmarks.inc:5 #, php-format msgid "%s Bookmarks" msgstr "%s Signets" #: templates/browse/categories.inc:5 #, php-format msgid "%s Subcategories" msgstr "%s Sous catégories" #: add.php:25 #, php-format msgid "'%s' was not added: %s." msgstr "'%s' n'a pas été ajouté: %s." #: add.php:48 #, php-format msgid "'%s' was not created: %s." msgstr "'%s' n'a pas été créé: %s." #: config/prefs.php.dist:40 msgid "1 Line" msgstr "1 ligne" #: config/prefs.php.dist:39 msgid "2 Line" msgstr "2 lignes" #: config/prefs.php.dist:38 msgid "3 Line" msgstr "3 lignes" #: templates/menu/menu.inc:7 msgid "Add" msgstr "Ajouter" #: add.php:65 msgid "Add Bookmark" msgstr "Ajouter Signet" #: templates/add/add.inc:11 msgid "Add a new bookmark" msgstr "Ajouter un nouveau signet" #: templates/add/add.inc:73 msgid "Add to Bookmarks" msgstr "Ajouter aux signets" #: templates/data/import.inc:23 msgid "All bookmarks and categories will be imported into here." msgstr "Tous les signets et catégories vont être importés ici." #: templates/search/search.inc:31 msgid "And" msgstr "Et" #: templates/search/search.inc:40 msgid "Any Part of field" msgstr "N'importe quelle partie du champ" #: browse.php:7 templates/menu/menu.inc:6 msgid "Browse" msgstr "Parcourir" #: templates/category/tree.inc:4 msgid "Categories" msgstr "Classer" #: templates/add/add.inc:39 templates/edit/edit.inc:41 msgid "Category" msgstr "Catégorie" #: config/prefs.php.dist:13 msgid "Change the number of columns to display in browse and search results." msgstr "" "Changez le nombre de colonnes à afficher lors d'une recherche ou d'une " "consultation." #: templates/search/search.inc:27 msgid "Combine" msgstr "Combiner" #: templates/add/nocategories.inc:11 msgid "Define one or more categories for your bookmarks" msgstr "Definissez une ou plusieurs catégories pour vos signets" #: templates/bookmark/1line.inc:24 templates/bookmark/1line.inc:25 #: templates/bookmark/standard.inc:23 templates/bookmark/standard.inc:24 #: templates/bookmark/2line.inc:25 templates/bookmark/2line.inc:26 msgid "Delete" msgstr "Supprimer" #: templates/browse/javascript.inc:34 msgid "Delete current category?" msgstr "Supprimer la catégorie?" #: templates/browse/categories.inc:10 msgid "Delete this Category" msgstr "Supprimer cette catégorie" #: templates/add/add.inc:34 templates/edit/edit.inc:36 #: templates/search/search.inc:22 msgid "Description" msgstr "Description" #: config/prefs.php.dist:12 msgid "Display Options" msgstr "Afficher les options" #: config/prefs.php.dist:49 msgid "Display edit buttons when displaying Bookmarks?" msgstr "Afficher un bouton d'édition lors de l'affichage des signets?" #: templates/add/add.inc:65 msgid "Drag the 'Add to Bookmarks' link below onto your 'Links' Bar" msgstr "" "Glissez le lien 'Ajouter aux signets' ci-dessous sur votre barre de 'liens'" #: templates/add/add.inc:63 msgid "Drag the 'Add to Bookmarks' link below onto your 'Personal Toolbar'" msgstr "" "Glissez le lien 'Ajouter aux signets' ci-dessous sur votre barre d'outils " "'personnel'" #: templates/bookmark/1line.inc:26 templates/bookmark/1line.inc:27 #: templates/bookmark/standard.inc:25 templates/bookmark/standard.inc:26 #: templates/bookmark/2line.inc:27 templates/bookmark/2line.inc:28 msgid "Edit" msgstr "Editer" #: templates/edit/edit.inc:13 #, php-format msgid "Edit %s" msgstr "Editer %s" #: edit.php:59 msgid "Edit Bookmark" msgstr "Editer le signer" #: templates/data/import.inc:44 msgid "Export" msgstr "Exporter" #: templates/data/import.inc:37 msgid "Export Bookmarks" msgstr "Exporter vos signets" #: templates/menu/menu.inc:23 msgid "Help" msgstr "Aide" #: templates/data/import.inc:24 msgid "Import" msgstr "Importer" #: data.php:99 templates/data/import.inc:7 msgid "Import Bookmarks" msgstr "Importer vos signets" #: templates/menu/menu.inc:15 msgid "Import/Export" msgstr "Importer/Exporter" #: data.php:14 data.php:72 msgid "Imported Bookmarks" msgstr "Signets importés" #: templates/add/add.inc:64 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/data/import.inc:16 msgid "" "Internet Expolorer Users will need to export their current Favorites by " "going to the 'File' menu and selected 'Import and Export'" msgstr "" "Les utilisateurs d'Internet Explorer devront exporter leurs signets en " "allant dans le menu 'Fichier' puis 'Importer et Exporter'" #: config/prefs.php.dist:6 msgid "Language" msgstr "Langue" #: templates/search/search.inc:37 msgid "Match" msgstr "Contient" #: templates/add/add.inc:62 msgid "Mozilla" msgstr "Mozilla" #: templates/data/import.inc:15 msgid "" "Mozilla will need to export their current Bookmarks by going into 'Bookmark " "Manager' and selecting 'Export' from the 'Tools' menu" msgstr "" "Les utilisateurs de Mozilla devront aller dans le menu 'Bookmarks-> Manage " "Bookmarks...->Tools->Export...'" #: lib/Trean.php:64 templates/browse/bookmarks.inc:5 #: templates/category/tree.inc:18 msgid "My Bookmarks" msgstr "Mes signets" #: templates/browse/categories.inc:5 msgid "My Categories" msgstr "Mes categories" #: templates/add/add.inc:29 templates/edit/edit.inc:31 #: templates/search/search.inc:17 msgid "Name" msgstr "Nom" #: templates/browse/bookmarks.inc:11 msgid "New Bookmark" msgstr "Nouveau signet" #: templates/add/nocategories.inc:5 templates/browse/categories.inc:8 msgid "New Subcategory" msgstr "Nouvelle sous catégorie" #: templates/search/results_none.inc:3 msgid "No Bookmarks found" msgstr "Pas de signets trouvés" #: add.php:62 msgid "No categories defined" msgstr "Pas de catégorie définie" #: config/prefs.php.dist:30 msgid "Number of columns to display in browse and search results:" msgstr "" "Nombre de colonnes à afficher lors d'une recherche ou d'une consultation:" #: config/prefs.php.dist:57 msgid "Open links in new windows" msgstr "Ouvrir le lien dans une nouvelle fenêtre" #: templates/menu/menu.inc:10 msgid "Options" msgstr "Options" #: templates/search/search.inc:30 msgid "Or" msgstr "Ou" #: config/prefs.php.dist:11 msgid "Other Options" msgstr "Autres options" #: templates/browse/javascript.inc:20 msgid "Please enter the name of the new category:" msgstr "Veuillez entrer le nom de la nouvelle catégorie:" #: templates/add/add.inc:15 templates/add/add.inc:50 #: templates/edit/edit.inc:17 templates/edit/edit.inc:52 msgid "Reset" msgstr "RAZ" #: templates/add/add.inc:14 templates/add/add.inc:49 #: templates/edit/edit.inc:16 templates/edit/edit.inc:51 msgid "Save" msgstr "Enregistrer" #: search.php:7 templates/menu/menu.inc:8 templates/search/search.inc:47 msgid "Search" msgstr "Recherche" #: templates/search/search.inc:7 msgid "Search Bookmarks" msgstr "Rechercher dans les signets" #: templates/search/results_header.inc:5 msgid "Search Results" msgstr "Résultats de la recherche" #: templates/data/import.inc:18 msgid "Select the file to import:" msgstr "Séléctionnez le fichier à importer:" #: config/prefs.php.dist:22 msgid "Select your preferred language:" msgstr "Séléctionnez votre langue par défaut:" #: config/prefs.php.dist:7 msgid "Set the your preferred display language." msgstr "Séléctionnez votre langue d'affichage." #: templates/index/notconfigured.inc:39 msgid "Some of Trean's configuration files are missing:" msgstr "Certains fichiers de configuration pour Trean sont manquants:" #: templates/data/import.inc:19 msgid "Target Category:" msgstr "Catégorie cible:" #: config/prefs.php.dist:41 msgid "Template to use when displaying Bookmarks:" msgstr "Modèle à utiliser pour l'affichage des signets:" #: add.php:21 msgid "There was an error adding the bookmark" msgstr "Erreur lors de l'ajout aux signets" #: templates/index/notconfigured.inc:51 msgid "This file contains preferences for Trean." msgstr "Ce fichiers contient les préférences pour Trean." #: templates/index/notconfigured.inc:44 msgid "" "This is the main Trean configuration file. It contains options for all Trean " "scripts." msgstr "" "Fichier principal de configuration pour Trean. Il contient les options pour " "tous les scripts de Trean." #: templates/add/add.inc:61 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Pour ajouter rapidement un signet depuis votre navigateur:" #: templates/index/notconfigured.inc:4 msgid "Trean is not properly configured" msgstr "Trean n'est pas correctement configuré" #: templates/add/add.inc:24 templates/edit/edit.inc:26 #: templates/search/search.inc:12 msgid "URL" msgstr "Adresse" #: prefs.php:33 msgid "User Options" msgstr "Options utilisateur" #: templates/add/add.inc:66 msgid "" "While browsing you will be able to add bookmarks by clicking your new 'Add " "to Bookmarks' shortcut." msgstr "" "Lors d'une navigation vous pouvez rapidement ajouter un signet en cliquant " "sur le lien 'Ajouter aux signets'." #: templates/search/search.inc:41 msgid "Whole Field" msgstr "Tout le champ" #: templates/browse/javascript.inc:20 msgid "You are creating a category folder." msgstr "Vous crééez une catégorie." #: config/prefs.php.dist:5 msgid "Your Information" msgstr "Votre information" trean-1.0.3/locale/it/LC_MESSAGES/trean.mo0000664000175000017500000022527212171337643016057 0ustar janjanQ? U$!U)FUpUU&U U%U$U #V).VXVjVyV V VVVVV VRVRWaWqWWWWWWWWWWWXX&X-XEX]XluXEXX(YVY6Y ZVZsZlZZ[[[$[5[ =[ H[i[|[[ [ [ [ [[ [[[\N \-X\\\ \\ \ \ \ \ \\] ]#"]lF]%]]]^^$6^&[^^^ ^^^^^_ _%!_7G_<_%____ `)` B`'M`,u`*`%``!a'a9aIahaza a a aaa'aa a b bb *b4bCbHbNbUb ^bkb tbbb b@bbbc2c9cIc!^cdcccd d)d Dd1Nd*dd dd ddQeTefe me{e eee eeee e eee f f f %f3f=Mff'f fffg gg0g7gIg!Ng pg.{g*g3gV h`hi(#i5Li0iXi j*jjjjjjk k#k 4kAkQkckukkkkkkkll%l6l?l DlRlelil ql l,l4l ll mm%m 5mBmUm*hmmBmmmn (n 4n@n GnQn cnnn~n"n nn nnn oo /oY  h2RXiЀ$%- 6 @ KYls ɁЁ   %7HW_  # 6@QU|h   (1 I Ta|  8 *>TEh̅EA)k ƆІ  %6T$p Ƈ͇(߇ j2\.? U`f x  ։ #9?Pah| Պڊ '-(FPo Nj ҋދ B Ndx  Ì  ! &,34`Gݍ 7 ?*Lw ~6 ͎ݎ/@Vv |O'=EUi~  Rΐ,!NV\dk|  đБ 5!iW 4Ogē ͓ٓ ;JS.-͔;[71 ŕ-ӕ=?D ^OkΖ%"@HY _l ܗ   '2CJcjdC0&88_*;ޙ(4CxȚךޚ $) >Jg>p>  4$Yuc5)hDf%!:\8|3-2eJ5S q%1A,,-Y++)ߡ3 %=*c(?)T!)vKI*6(a1*(  &21Gy:V= ¦צݦ 'E+q §ҧ ا %; U a o{; ը2ߨ + 7A2S;© ٩ / J Ucs ժު /M jF n !̬Ҭ׬ D "R"u%%53%N%t-.Ȯ#,,H5uV/2*Luws aEo%(۱)&.%U({vȲ ?Isy_+ٴ-Ia\QMg-Ŷ˶ ܶ &6>DS Z hu~ ķ̷ ӷ߷"##%ɹ! ). X%c1 %ź ! 1>Qg} j  7 >LU\e˼Ӽ 'M^iZ:ľ l $x}! #-DU \&g  'BVlp|<-*X`h x 2#;2%N't  /9 M6nB$  % 7-Bp4y50;Q#`  +52h|   " +LR\&)bP  9%7_##Uh ~    $ /:IDc)6 - ?I#Rv}*5769ap+@8@,dm3p  +>Qj ( -;OV^p1F  8JYq*U5I ^j s!0#0T ep "CX x3EK[ am   :EX)gMbBBE1 "0 @ N\ eq $" 1? R_ry - -2:K  ) 1;AG^n  (.5;J]cj!  H^d! *9 ?M/m )=N]]Vw  >#[3Rg~   # )5 Q_w   '4#Cg+   %,21d2t1 V'q)( '!E&g  &%@F_f y   ,  >M\{ O &GVi Y'ETeN '/E V dp 0%/ Uadf|;#sp(BT r|      ' HRqy $6 ;%G"m$$R- 4BQ ZewH  %0 I"Sv  <D>`#$#" '*4_ gAt+/N`&|xIc #$$+ E OY _jZy>#+3E\dw!!!A5tw " 0 N#o# " ,8QoNU574mFw2a,C7IW," #BJgo -4 =GXms G?#J !P 0r           $  3  =  H R Y  r ~  E E 1  H  V a >p   z Ad  ] b # "  = 8)8b?{W7-)e=L44OE::9@1z::P"5sY4Q8eCD44y  6*a=hfE   -9I=   (B KWj E D;Q  >Ia}   (!< ^ ju{  0!9 [|1 _ 0"=`ekW/Ge!3.  ! )B *l  ( 0 F!HX!5!!'!"")#L9#4###%#%$&+$&R$y$$$ (%4%&&-'>' S'!`'' ''i'd>((((7(!)'() P)^)g)o)t) )))))))) ) )* *** $* .*8*Q*Z* a*l*+~* **(F, Gq]{pxl++_Z&;o"L7lp7>z :| #& aSQ46ZyGH I_b#! 87K@V:TKhRNvi$~R}b4Gq)o8AtP7rH%C ^fOS<%i|rXYY*\[XU-= a'x9LY}vF0G9stM /@3Ed^$CQ.g)[y]U!>B20ua`LWn6XKnHjp}Lc(Rert&I$Oe$6Es.x={ni\D[11t_Jwi^342 >c(V?r! /h+/z=fF K,P B`_\3\DcSJnN'k}~%@de?OheNmb<z"5ET<- . gHzym)EClD|]q)k/F'm*8ZMJC=jmbYf{UJ;6~""WxVB{!@f95okd:4X- WvS;]0Au3 A#*'|g5g+wMkhyw8u2^Rq0jsIU*W-,lQB~d`Pj   1<M#1[25P`T Av9&DZ?,uVQwNs> ?ac %;(:pIO.T o"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s."%s" was not renamed: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d Folders and %d Bookmarks imported.%d days until your password expires.%d minutes%d person likes this%d persons like this%d stars out of 5%d to %d of %d%d-day forecast%s - Notice%s Bookmarks%s Configuration%s Response Codes%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s is ready to perform the tasks below. Select each operation to run at this time.%s's Bookmarks, gusting %s %s, variable from %s to %s1 Line1 star out of 510 rows12 Hour Format15 rows1xx Response Codes (%s)2 Line24 Hour Format24 hours24-hour format25 rows2xx Response Codes (%s)3 Line3xx Response Codes (%s)4xx Response Codes (%s)5xx Response Codes (%s) can interact with your Facebook account, but you must login to Facebook manually each time. cannot read information about your Facebook friends. cannot read your stream messages and various other Facebook data items. cannot set your status messages or publish other content to Facebook. can interact with your Twitter accountA charactersA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM/PMANDAcceptedAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd ContentAdd Here:Add MembersAdd a groupAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.Alternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAn error occured listing folders: %sAn error occurred counting folders: %sAnswerAny Part of the fieldApplicationApplication Context: Application ListApplication is ready.Application is up-to-date.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to delete the selected bookmarks?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscending (A to Z)Ascii ArtAt least one database schema is outdated.AttachmentAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated to:Authorize Access to Friends Data:Authorize PublishAuthorize Read:Authorize an infinite session:Available fields:AzurBOFH ExcusesBad GatewayBad RequestBaltic (ISO-8859-13)BarbieBase graphics directory "%s" not found.Block SettingsBlock TypeBlue MoonBlue and WhiteBookmark AddedBookmarksBookmarks FeedBothBrownBrowseBrowser:Burnt OrangeCalendarCamouflageCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.Categories and LabelsCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClicksClient AnchorCloseClose WindowCloudsCollapseColor PickerCombineComicsCommandCommand ShellComments: %dCompletely collapsedCompletely expandedComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm DeletionConfirm PasswordConflictContinueControl access to this folderCookieCopied bookmark: CopyCopying folders is not supported.CornflowerCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the backup configuration file %s.Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCreatedCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DB schema is out of date.DB schema is ready.DDDNS Failure or Other Error (%s)DataDataTreeDataTree BrowserDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.DefinitionsDeleteDelete "%s"Delete All SyncML DataDelete BookmarkDelete GroupDelete this folderDeleted bookmark: Deleted configuration upgrade script "%s".Deleted folder: Deleted synchronization session for device "%s" and database "%s".Deleted the folder "%s"Descending (9 to 1)Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice ManagementDevice id:Device is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDisableDisplay 24-hour times?Display OptionsDisplay PreferencesDisplay RowsDisplay detailed forecastDisplay forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload FolderDownload generated configuration as PHP script.Drag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrugsE charactersEU VAT identificationEditEdit "%s"Edit BookmarkEdit BookmarksEdit PermissionsEdit Permissions for %sEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExpectation FailedExport BookmarksExtra LargeFTP upload of configurationFacebook IntegrationFade to GreenFeedFeed AddressFeels LikeFields to searchFile ManagerFile to import:FilterFiltersFirefox/MozillaFirst HalfFirst QuarterFirst level shownFolderFolder ActionsFolder names must be non-emptyFolder to import into:FoodForbiddenForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFoundFriend Requests:Friends enabledFrom the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGateway Time-outGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoneGoogle SearchGreek (ISO-8859-7)GreenGreyGroup AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTTP StatusHTTP Version not supportedHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hi-ContrastHide Advanced PreferencesHide ResultsHide SidebarHighest RatedHighest-rated BookmarksHome DirectoryHordeHorde WebsiteHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsI charactersIcons OnlyIcons for %sIcons with textIdeasIdentity's name:ImportImport BookmarksImport, Step %dImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Include SubfoldersIncorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInfinite sessions enabled.InformationInherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internal Server ErrorInternet ExplorerInternet Explorer users will need to export their current Favorites by going to the "File" menu and selecting "Import and Export".Invalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid parent permission.InventoryJapanese (ISO-2022-JP)Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLavenderLawLength RequiredLight BlueLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLoading...Local time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize Login to Twitter and authorize the applicationLoveLoyolaLoyola BlueMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.MatchMatching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Number of BookmarksMaximum Number of FoldersMaximum Number of Portal BlocksMaximum number of entries to displayMedicineMediumMembersMentionsMenu ListMenu mode:Metar WeatherMethod Not AllowedMetricMin temp last 24 hours: Min temp last 6 hours: MiscellaneousMissing configuration.MobileMobile (Smartphone)ModeMondayMoon PhasesMost ClickedMost-clicked BookmarksMoveMoved PermanentlyMoved bookmark: Moved folder: MozillaMozilla/Firefox users will need to export their current Bookmarks by going into "Bookmark Manager" and selecting "Export" from the "Tools" menu.Multiple ChoicesMy AccountMy Account InformationMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeXTNeverNew BookmarkNew CategoryNew FolderNew Messages:New MoonNew Username (optional)New folderNew passwordNew passwords don't match.NewsNextNext 4 PhasesNoNo Bookmarks foundNo ContentNo SoundNo available configuration data to show differences for.No bookmarks to displayNo change.No icons found.No location is set.No offensive fortunesNo pending signups.No security question has been set. Please contact your administrator.No stable version exists yet.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.Non-Authoritative InformationNoneNordic (ISO-8859-10)Northern HemisphereNot AcceptableNot FoundNot ImplementedNot ModifiedNot ProvisionedNote:NotesNothing to browse, go back.Nothing to edit.Number of articles to displayNumber of bookmarks to showNumber of seconds to wait to refreshO charactersOKORObject CreatorOffense filterOfficeOld Horde WebsiteOld and new passwords must be different.Old passwordOld password is not correct.On newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOr enter a user name:OrganizingOtherOther InformationOther OptionsOther charactersOwnerOwner:PHPPHP CodePHP ShellPOSIX extension is missingP_HP ShellPartial ContentPasswordPassword changed successfully.Password:Passwords must match.PastePayment RequiredPending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a name for the new folder:Please enter a password.Please enter a username.Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Pokes:Policy KeyPolicy Key:PoliticsPosted %sPosted %s via %sPostnukePrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePrecondition FailedPressurePressure at sea level: PrincipalProblem DescriptionProvisionedProxy Authentication RequiredPublish enabled.Purple HordeQueryQuotaRandom FortuneRatingReadRead enabledReally delete "%s" and all of its bookmarks?Really delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRemarksRemote Host:Remote URL (http://www.example.com/horde):RemoveRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sRename this folderReplyReportsReprovision All DevicesRequest Entity Too LargeRequest Time-outRequest-URI Too LargeRequested range not satisfiableResetReset ContentReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch BookmarksSearch Results (%s)Search:See OtherSelect AllSelect All/Select NoneSelect NoneSelect a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the characters you need from the boxes below. You can then copy and paste them from the text area.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Select: %s, %sSend Problem ReportSensor: Server TimeService UnavailableSession AdminSession Timestamp:SessionsSet how to display bookmark listings and how to open links.Set preferences to allow you to reset your password if you ever forget it.Set up integration with your Facebook account.Set up integration with your Twitter account.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?Should your list of bookmark folders be open when you log in?ShowShow Advanced PreferencesShow SidebarShow differences between currently saved and the newly generated configuration.Show extra detail?Show folder actions panel?Show last login time when logging in?Show notificationsShow the %s Menu on the left?SimplexSkip Login TasksSmallSnow depth: Snow equivalent in water: Songs & PoemsSort bookmarks by:Sort bySort direction:South European (ISO-8859-3)Southern HemisphereSpamSpecial Character InputSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubdirectory "%s" not found.Submitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully saved the backup configuration file %s.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSwitching ProtocolsSyncMLSyndicated FeedTag CloudTango BlueTasksTealTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)TemplateTemporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Temporary RedirectText AreaText OnlyThai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The server "%s" has been deleted.The server "%s" has been saved.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.Themes directory "%s" not found.There are no bookmarks in this folderThere was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem copying the bookmark: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the folder: %sThere was a problem moving the bookmark: %sThere was a problem moving the folder: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error adding the folder: %sThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error saving the bookmark: %sThere was an error saving the folder: %sThere was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.TicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTotalTraditionalTranslationsTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sU charactersURLUnable to contact Twitter. Please try again later. Error returned: %sUnable to delete "%s": %s.Unable to set like.UnauthorizedUndo ChangesUnfiledUnicode (UTF-8)UnitsUnknown (%s)UnlockUnsupported Media TypeUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated %s.Updated schema for %s.UploadUploaded all application configuration files to the server.Use ProxyUse if name/password is different for IMSP server.UserUser AdministrationUser Agent:User NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsername:UsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?What's on your mind?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Whole FieldWidth of the %s menu on the left:WikiWindWind speed in knotsWind:WipeWipe is pendingWisdomWorkX-RefYYYesYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to create more than %d folders.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You do not have permission to view this folder.You have been logged out.You have denied the requested permissions.You have not properly connected your Facebook account with Horde. You should check your Facebook settings in your %s.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must select a target folder firstYou must select an server to be deleted.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has been locked.Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your remote servers:Your session has expired. Please login again.Zippy[Problem Report][Unknown]_Alarms_Browse_CLI_Configuration_DataTree_Delete Bookmarks_Edit Bookmarks_Groups_Home_Import/Export_Locks_New Bookmark_Permissions_Reports_Search_Usersattachmentcalmclickclicksfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestype the password twice to confirmunifiedweatherProject-Id-Version: trean v0.1 Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2008-09-05 17:46+0200 PO-Revision-Date: 2008-09-05 18:33+0200 Last-Translator: Fabio Pedretti Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); Aggiunto '%s' al sistema di gruppi."%s" aggiunto al sistema di permessi."%s" non è stato creato: %s"%s" non è stato rinominato: %s.%.2fMB usati di %.2fMB permessi (%.2f%%) %d %s e %s%d Cartelle e %d Preferiti importati.%d giorni prima della scadenza della tua password%d minutiA %d persona piaceA %d persone piace%d stelle su 5%d a %d di %dprevisione di %d giorni %s - Attenzione%s Preferiti%s Configurazione%s Codici di Risposta%s Compiti - Conferma%s Termini d'Uso%s a %s %s%s è pronto per svolgere i compiti di seguito. Selezionare ogni operazione da eseguire in questo momento.%s Preferiti, folata %s %s, variabile da %s a %s1 Riga1 stella su 510 righe12 ore15 righe1xx Codici di Risposta (%s)2 Righe24 ore24 oreFormato 24 ore25 righe2xx Codici di Risposta (%s)3 Righe3xx Codici di Risposta (%s)4xx Codici di Risposta (%s)5xx Codici di Risposta (%s) può interagire con il tuo account Facebook, ma è necessario effettuare il login a Facebook manualmente ogni volta. non può leggere le informazioni sui tuoi amici di Facebook. non può leggere i vostri messaggi e vari altri elementi di dati di Facebook. non è possibile impostare i messaggi di stato o pubblicare altri contenuti su Facebook. può interagire con il tuo account TwitterCaratteri AUna pulizia del dispositivo è stata richiesta. Il dispositivo verrà pulito alla prossima sincronizzazione.Esiste già una nuova versione (%s).Una pulizia remota per il dispositivo %s è stata avviata. Il dispositivo verrà pulito durante la prossima sincronizzazione.AM/PMEAccettatoInformazioni PersonaliAccount PasswordAzioniActiveSyncAmministrazione Dispositivi ActiveSyncDispositivi ActiveSyncActiveSync non attivatoAggiungiAggiungi un contenutoAggiungi qui:Aggiungi MembriAggiungi un gruppoAggiungi un nuovo utente:Aggiungi un nuovo allarme:Aggiungi una coppiaAggiungi ai PreferitiAggiungi utenteAggiunto "%s" al sistema, ma non era possibile inserire informazioni aggiuntive riguardo alla registrazione: %s.Aggiunto "%s" al sistema. Ora puoi iniziare la tua sessione.La funzione di aggiunta utenti non è attiva.RubricaRubricaAmministrazioneFine allarmeModalita di allarmeInizio allarmeTesto allarmeTitolo allarmeAllarmiTuttiTutti gli Utenti AutenticatiTutte le regole delle chiavi sono state resettate.Tutti gli stati sono stati rimossi per il tuo dispositivo ActiveSync. Essi verranno risincronizzati al prossimo collegamento al server.Tutte le sessioni di sincronizzazione sono state cancellateLogin IMSP alternativoPassword IMSP alternativaUsername IMSP alternativoIndirizzo email alternativoErrore nell'elenco delle cartelle: %sErrore nel conteggio delle cartelle: %sRispostaQualunque parte del campoApplicazioneContesto Applicazione: Lista ApplicazioneL'applicazione è pronta.L'applicazione è aggiornata.ApprovatoArabo (Windows-1256Sicuro di voler cancellare '%s'?Sei sicuro di voler eliminare i preferiti selezionati?Sei sicuro di voler eliminare la richiesta di iscrizione per "%s"?Sei sicuro di voler cancellare "%s"?Armeno (ARMSCII-8)ArteCrescente (A a Z)Arte AsciiAlmeno uno schema database non è aggiornato.AllegatoTentativo di cancellazione di un gruppo inesistente.Tentativo di eliminazione di un permesso inesistente.Tentativo di modifica di un permesso inesistenteSi è cercato di pubblicare una condivisione non esistente.Autenticato a:Autorizzare l'accesso a Dati Amici:Autorizza PubblicazioneAutorizza Lettura:Autorizza una sessione infinita:Campi disponibili:AzurBOFH ExcusesGateway ErratoRichiesta ErrataBaltico (ISO-8859-13)BarbieDirectory base degli oggetti grafici "%s" non trovataImpostazioni BloccoTipo di BloccoLuna PienaBlu e BiancoPreferito AggiuntoPreferitiFeed PreferitiEntrambiMarronePassa in RassegnaSfoglio:Arancio bruciatoCalendarioCamouflageCancellaAnnulla il Rapporto del ProblemaAnnulla PuliziaImpossibile resettare la password automaticamente, contatta il tuo amministratore.Categorie e EtichetteCeltico (ISO-8859-14)Europa Centrale (ISO-8859-2)ModificaCambia localitàCambia la tua PasswordModifica le tue informazioni personaliCambiamento password non supportato nella configurazione corrente. Contatta il tuo amministratore.ControlloControllo per nuove versioniVerificaCinese Simplificato (GB2312)Cinese Tradizionale (Big5)Scegli %sScegli come visualizzare le date (in formato abbreviato):Scegli come visualizzare le date (in formato completo):Scegli come visualizzare gli orari:Pulisci la QueryElimina utente: %sElimina utenteElimina le informazioni dell'utenteClicca su una delle rubriche selezionate e quindi seleziona tutti i campi da ricerca.Clicca per ContinuarePremi quiClient AnchorChiudiChiudi la FinestraNuvoleCollassaSeleziona ColoreContinuaFumettiComandoShell di ComandiCommenti: %dCompletoCompletoComputersCondizioniCondizioniConfigurazioneConfigurazione DifferenzeConfigurazione per la sincronizzazione con PDA, Smartphone e OutlookLa configurazione deve essere aggiornata.È disponibile uno script di configurazione aggiornatoConfigura %sConferma CancellazioneConferma PasswordConflittoContinuaControlla accesso a questa cartellaCookiePreferiti copiati: CopiaLa copia delle cartelle non è supportata.GirasoleImpossibile connettersi al server "%s" usando FTP: %sImpossibile contattare il server. Riprovare più tardi.Impossibile eliminare lo script di aggiornamento "%s".Impossibile trovare l'autorizzazione per di interagire con il tuo account TwitterImpossibile resettare la password per l'utente specificato. Alcuni o tutti i dettagli non sono corretti. Prova ancora o contatta l'amministratore se hai bisogno di ulteriore aiutoImpossibile rirpristinare la configurazioneImpossibile salvare una copia di backup della configurazione: %sImpossibile salvare lo script di aggiornamento in: "%s".Impossibile salvare una copia di backup della configurazione %s.Impossibile salvare il file di configurazione %s. Usa una delle opzioni sotto per salvare il codice.Impossibile salvare il file di configurazione %s. Potresti usare uno delle opzioni per salvare il codice dopo %s o copiare manualmente il codice sotto di %s.Impossibile scrivere la configurazione per "%s": %sPaeseCreaCrea una Nuova IdentitàCreato4 fasi correntiAllarmi attualiBlocchi attualiSessioni CorrentiOra attualeMeteo Attualecondizione attualeCirillico (KOI8-R)Cirillico (Windows-1251)Cirillico/Ucraino (KOI8-U)L'accesso DB non è configurato.Lo schema DB non è aggiornato.Lo schema DB è pronto.DDErrore DNS o altro Errore (%s)DatiDataTreeBrowser DataTreeDatabaseDatiData RicevutoData: %s: tempo: %sGiornoDefaultColore di DefaultShell di DefaultCharset di default per l'invio di messaggi email:Posizione predefinita da utilizzare per le funzioni di localizzazione.CondizioniEliminaCancella "%s"Cancella Tutti i Dati SyncMLElimina PreferitoElimina GruppoElimina questa CartellaPreferiti eliminato: Eliminato lo script di aggiornamento "%s".Cartella eliminata: Cancellate le sessioni di sicronizzazione per il dispositivo "%s" e il database "%s".Cartella "%s" eliminataDiscendente (9 a 1)Descrivi il ProblemaDescrizioneSviluppoDispositivoID DispositivoGestione DispositiviID Dispositivo:Il dispositivo è pulitoDispositivo rimosso con successo.Pulizia del Dispositivo annullata correttamente.Punto di RugiadaPunto di Rugiada per l'ultima ora: Punto di RugiadaDisabilitaVisualizza nel formato 24 ore?Opzioni di VisualizzazionePreferenze di VisualizzazioneMostra RigheOpzioni Visualizzazione previsioniVisualizza previsioni (TAF)La prima riga contiene i nomi dei campi? Se si, spunta questo campoNon hai un account? Registrati.Scarica: %sScarica CartellaScarica la configurazione generata come script PHP.Trascina il link "Aggiungi ai Preferiti" sotto nella tua barra "Link"Trascina il link "Aggiungi ai Preferiti" sotto nella tua "Barra Personale".DrogaCarattere Eidentificazione Partita IVAModificaModifica "%s"Modifica PreferitoModifica PreferitiModifica PermessiModifica Permessi per %sModificare le preferenze diModifica PermessiModifica permessi per "%s"EducazioneIndirizzo di PostaOrario di fineInserisci un nome per la nuova categoria:Inserisci una domanda di sicurezza che ti verrà chiesta se sarà necessario Errore durante la connessione a Twitter: %s I dettagli sono stati registrati per l'amministratore.Errore durante la cancellazione della sessione di sicronizzazione:Errore durante la cancellazione delle sessioni di sicronizzazione: %sErrore durante l'aggiornamento della password: %sEtnicoEventi Inviti:Ogni 15 minutiOgni 2 minutiOgni 30 secondiOgni 5 minutiOgni Mezz'oraOgni OraOgni minutoValori di esempio:EseguiEspandiAutenticazione fallitaEsporta PreferitiExtra LargeCaricamento FTP della configurazioneIntegrazione FacebookSfumatura verso il verde FeedIndirizzo FeedSi sente comeCampi da ricercareFile ManagerFile da importare:FiltroFiltriFirefox/MozillaPrima MetàPrimo TrimestreMostrato il primo livelloCartellaAzioni CartellaI nomi delle cartelle non devono essere vuotiCartella nella quale importare:CiboVietatoPrevisioni (TAF)Previsioni per i prossimi giorni (notare che le previsioni sono per il giorno e la notte; un alto numero di giorni potrebbe necessitare di un blocco largo)Hai dimenticato la tua password?ModuliIndovinoTipo di fortunaFortuneFortune 2ForumTrovaRichieste di amicizia:Amici abilitatiDa il %s (%s °) a %s %sdalle %s alle %s %sDescrizione CompletaLuna PienaNome CompletoGateway Time-outGenera Configurazione %s Codice GeneratoOttieni altroPreferenze GlobaliVai aGoedelFattoRicerca GoogleGreco (ISO-8859-7)VerdeGrigioAmministrazione Gruppinome del gruppoIl gruppo non è stato creato: %sGruppiPermessi degli OspitiStato HTTPVersione HTTP non supportataEbreo (ISO-8859-8-I)AltezzaAltezza del contenuto (la larghezza si regola automaticamente al blocco)AiutoElenca gli argomenti di AiutoEmisferoQuesto e l'inizio del file:Alto ContrastoNascondi Preferenze AvanzateNascondi RisultatiNascondi barra laterale (Sidebar)Più votatiPreferiti più votatiHome DirectoryHordeHorde WebsiteQuanti campi (colonne) ci sono?Quanti secondi prima di cercare nuovi articoli?UmiditàUmoristiI carattereSolo IconeIcone for %sIcone con TestoIdeeNome dell'Identità:ImportaImporta PreferitiImporta, Passo %dCampo importato: %sCampi importati:In risposta a:Nelle liste sotto selezionare entrambi, un campo importato dal file sorgente a sinistra, e il campo corrispondente disponibile nella tua agenda a destra. Quindi clicca "Aggiungi coppia" per marcarli per l'importazione. Una volta finito clicca "Prossimo".Includi le sotto cartelleNome Utente non corretto o indirizzo alternativo. Riprova o contatta l'amministratore Utenti IndividualiInfinite sessioni abilitate.InformazioneMembri ereditatiinserisci l'indirizzo email su cui ricevere la nuova password:Rispondi alla domanda di sicurezza:Errore interno del ServerInternet ExplorerGli utilizzatori di Internet Explorer possono esportare i loro Preferiti andando nel menu "File" e poi selezionare "Importa e Esporta".Formato partita IVA non validoAzione non valida %sApplicazione invalida.Hash non valido.Permesso padre non validoInventarioGiapponese (ISO-2022-JP)Proprio ora...Neofiti del KernelParola chiaveBambiniKolabCoreano (EUC-KR)LingualargoPrima MetàUltimo cambiamento passwordUltimo QuartoUltima SincronizzazioneUltimo Aggiornamento:Ultimo accesso: %sUltimo accesso: %s da %sUltimo accesso: MaiUltimoLavandaLeggeLunghezza RichiestaBlu ChiaroComeLimerick (poesia tipica inglese)Cookie LinuxElenco TabelleFunzione elenco allarmi fallito: %sElenco dei blocchi fallito: %sElenco sessioni fallito: %s.Non è attiva la funzione di elenco utenti.LetteraturaCaricamento...Ora locale: %s %sLingua e OraLuogoBlocca UtenteBlocchiUtenteEsciAccesso fallito: username o password non corretti.Accesso fallitoAccedere a Facebook e autorizzare Accedere a Twitter e autorizzare AmoreLoyolaLoyola BlueMMMagiaPostaIndirizzo AmministratoreGestisci la lista delle categorie dando loro un'etichetta e associando loro un colore.Gestisci i tuoi dispositivi ActiveSync.CombaciaCampi corrispondentiTemperatura massima nelle ultime 24 ore: Temperatura massima nelle ultime 6 ore: Numero Massimo dei PreferitiNumero Massimo delle CartelleNumero massimo di blocchi portaliNumero massimo di voci da visualizzareMedicinaMedioMembriCitazioniMenu ListaModalità menu:Meteo AttualeMetodo Non PermessometricoTemperatura minima nelle ultime 24 oreTemperatura minima nelle ultime 6 oreVarieConfigurazione mancante.MobileMobile (Cellulare)ModalitàLunedìFasi LunariPiù CliccatiPreferiti più cliccatiSpostaSpostato PermanentementePreferito spostato: Cartella spostata: MozillaGli utilizzatori di Netscape/Mozilla possono esportare i loro Preferiti andando in "Gestione Preferiti" e poi selezionare "Esporta" dal menu "Strumenti".Scelte MultipleMio AccountDati del mio accountMy Facebook StreamMio PortaleLayout del Mio PortaleN.D.NO, NON Sono d'Accordo.NOTA: Pulire un dispositivo può reimpostarlo alle impostazioni di fabbrica. Si prega di essere sicuri di voler fare questo prima di richiedere una puliziaNomeNeXTMaiNuovo PreferitoNuova CategoriaNuova cartellaNuovi Messaggi:Luna nuovaNuovo Nome Utente (Opzionale)Nuova cartellaNuova PasswordLe password non corrispondono.NotizieProssimoProssime 4 fasiNoNessun Preferito trovatoNessun ContenutoNessun suonoI dati della configurazione su cui mostrare le differenze non sono disponibili.Nessun preferito da visualizzareNon modificatoIcone non trovate.Nessuna locazione configurata.Nessuna fortuna offensivaNessuna registrazione in attesa.Nessuna domanda di sicurezza è stato impostato. Si prega di contattare l'amministratore.versione stabile ancora non disponibileNessun nome utente specificato.Nessuna versione trovata nella configurazione originale. Rigenera la configurazione.Nessuna versione trovata nella tua configurazione. Rigenera la configurazione.Informazioni Non AutoritativaNessunoNordico (ISO-8859-10)Emisfero BorealeNon AccettatoNon trovatoNon implementatoNon ModificatoNon FornitoAppunti:NoteNon vi sono risorse da sfogliare, tona indietro.Nulla da modificare.Numero di articoli da mostrareNumero di preferiti da mostrareNumero di secondi prima di aggiornareCaratteri OOKOCreatore dell'oggettoFiltro per le offeseUfficioVecchio sito HordeLa password nuova deve essere differente da quella vecchia.Vecchia Passwordla vecchia password non è correttaNelle nuove versioni di Internet Explorer, ti potrà essere richiesto di aggiungere %s://%s alla tua Trusted Zone.Solo fortune offensiveSolo il proprietario o l'amministratore di sistema può cambiare la proprietà o i permessi per una condivisioneAprire i collegamenti in nuova finestra?Sistema OperativoOppure digita il nome utente:StrumentiAltroAltre InformazioniAltre OpzioniAltri caratteriProprietarioProprietario:PHPCodice PHPShell PHPEstensione POSIX mancanteShell PHPContenuto ParzialePasswordPassword modificata con successoPassword:Le password devono coincidere.IncollaPagamento RichiestoRegistrazioni in Attesa:GenteEsegui le operazioni di LoginPermessi '%s' non eliminati.PermessiAmministrazione dei PermessiInformazioni PersonaliAnimali domesticiFotoSciocchezzeScrivi un nome per la nuova cartella:Si prega di inserire una password.Si prega di inserire un nome utente.Fornire una descrizione del problemaLeggi il seguente testo. DEVI accettare i termini d'uso per utilizzare il sistema.Pokes:Regola ChiaveRegola Chiave:PoliticaInviato %sInviato %s via %sPostnukePrecipitazioni nell'ultima %d ora: Precipitazioni nelle ultime %d ore: Possibili %s precipitazioniAutenticazione fallitaPressionePressione al livello di mare: PrincipaleDescrizione del problemaRifornitoAutenticazione del Proxy RichiestaPubblicazione abilitata.Purple HordeDomandaQuotaFortuna CasualeValutazioneLeggiLettura abilitataSei sicuro di voler eliminare "%s" e tutti i suoi preferiti?Sicuro di voler eliminare %s? L'operazione non può essere annullataEliminare i dati di %s? L'operazione non può essere annullataRigenera elementi dinamici del menuAggiorna la visualizzazione Portale:Frequenza di refresh:Dispositivi Registrati degli UtentiNoteHost remoto:URL remota (http://www.esempio.com/horde):EliminaElimina paioElimina gli scripts salvati dalla directory temporanea del serverElimina utenteElimina utente: %sRinomina questa CartellaRispondiRapportiRiapprovvigionamento di tutti i DispositiviEntita richiesta troppo grandeRichiesta ScadutaURI-richiesto troppo grandeIl range richiesto non è realizzabileAnnullaAzzera il contenutoAnnulla PasswordRipristina tutti gli stati del dispositivo. Questo farà sì che il tuo dispositivo risincronizzerà tutti gli elementi.Reimposta la tua passwordRipristina ultima richiestaRisultatiRisultati per %sRitornare alla schermata principaleRetweetRitweetato da %sDigita ancora la nuova passwordTorna alla configurazione precedenteRiddlesEseguiAvvia Operazioni di LoginShell SQLShell SQLSalvaSalva "%s"Salva e ChiudiSalva la configurazione generate come script PHP nella cartella temporanea del tuo server.Script di aggiornamento della configurazione salvato in: "%s".ScienzaPortataRicercaRicercaRicerca PreferitiRisultati Ricerca (%s)RicercaVisualizza l'altroSeleziona TuttoSeleziona Tutto/Deseleziona TuttoNessuna selezionataSeleziona un gruppo da aggiungereSeleziona un nuovo proprietarioSeleziona un serverSeleziona un utente da aggiungereSeleziona tutti i campi di ricerca quando si espandono indirizzi.Seleziona i caratteri di cui hai bisogno dalle caselle sottostanti, quindi copiarle e incollarle dall'area di testo.Scegli il formato di data e ora:Seleziona il delimitatore di data:Scegli il formato della data:Scegli l'ordine di giorno e dataSeleziona il delimitatore dell'ora:Scegli il formato dell'ora:Seleziona il tuo schema colori.Seleziona la lingua che preferisci:Seleziona: %s, %sInvia il report del problemaSensore: Time ServerServizio non disponibileAmministratore della sessioneTimestamp della Sessione:sessioniImposta come visualizzare la lista dei preferiti e come aprire i collegamenti.Configura le opzioni per permetterti di resettare la password nel caso la dimentichi.Impostare l'integrazione con il tuo account Facebook.Impostare l'integrazione con il tuo account Twitter.Impostare la lingua preferita, il fuso orario e il formato delle date.Impostare l'applicazione all'avvio, lo schema colori, il refresh della pagina e le altre preferenze di visualizzazione.Parecchie posizioni possibili con il parametro: %sBreve RiassuntoDefinire gli accessi da tastiera per i link?La tua lista dei Preferiti dovrà essere aperta quando ti colleghi?MostraMostra Preferenze AvanzateMostra barra laterale (Sidebar)Mostra differenze tra la configurazione salvata e quella appena generata.Mostra dettagli aggiuntivi?Mostra pannello della cartella delle azioni?Mostra l'ultimo login all'accesso?Mostra notificheMostrare il Menu %s sulla sinistra?SimplexSalta le operazioni di LoginPiccoloProfondità di neve: Neve equivalente in acqua: Canzoni e poemiOrdina preferiti perOrdina perOrdina direzioni:Europa Meridionale (ISO-8859-3)Emisfero AustraleSpamCarattere SpecialeSportsStandardStar TrekOrario di InizioGestione dello statoStatoImpossibile impostare lo statoStreamSottodirectory "%s" non trovata.La richiesta per aggiungere '%s' al sistema è stata inoltrata. Non sarà possibile fare il login finché non sarà stata approvata.Collegato con successo al tuo account Facebook o aggiornati i permessi.SuccessoAggiunto '%s' al sistema.Dati di '%s' eliminati dal sistema.'%s' eliminato con successo.Rimosso '%s' dal sistema.Configurazione ripristinata. Ricaricare la pagina per vedere le modifiche.Configurazione di backup salvata.Backup della configurazione salvato sul file %s.'%s' aggiornato con successoScritto con successo %sAlbaTramontoDomenicaAlbaAlba/TramontoTramontoScegli ProtocolliSyncMLSyndicate FeedTag CloudTango BlueAttivitàTotaleTemperatura ultima ora: TemperaturaTemperatura%s(%sMax%s/%sMin%s)ModelloTemporaneamente impossibile connettersi con Facebook, Riprova ancora.Impossibile temporaneamente contattare Twitter. Riprovare più tardi.Redirezione temporaneaarea di testoSolo TestoThai (TIS-620)La pulizia da remoto del dispositivo id %s è stata annullata.L'allarme è stato eliminato.L'allarme è stato salvato.La configurazione per %s non può essere aggiornata automaticamente. Si prega di aggiornare la configurazione manualmente.L'indirizzo e-mail di default da utilizzare per questa identità:Il blocco è stato rimosso.Lo stato del servizio non può essere raggiunto, riprova più tardi o con un differente statoLo stato del servizio non è attualmente disponibile. Riprovare in seguito con un differente statoCodice regionale immesso non validoIl server "%s" è stato eliminato.Il server "%s" è stato salvato.Servizio momentaneamente non disponibile. Riprova più tardi.Il servizio è attualmente occupato. Riprova più tardi.La richiesta di registrazione per %s è stata eliminata.La richiesta di iscrizione per l'utente "%s" è stata rimossa.Lo stato per il dispositivo id %s è stato reimpostato. Verrà risincronizzato la prossima volta che si connette al server.Lo script di test è attualmente abilitato. Per motivi di sicurezza, disabilitare lo script di test quando si è completato il test (vedi horde/ docs/ INSTALL).L'utente "%s" esiste già.L'utente "%s" non esiste.Impossibile trovare la directory "%s" contenente i temiNon ci sono preferiti in questa cartella.Si è verificato un problema aggiungendo "%s" al sistema: %s.Si è verificato un problema rimuovendo i dati dell'utente "%s" dal sistema:Si è verificato un errore copiando il preferito: %sSi verificato un errore eliminando il preferito: %sSi verificato un errore durante la cancellazione della cartella: %s.Si e' verificato un errore nell'aggiunta del preferito: %sSi è verificato un errore nello spostare la cartella: %s Si è verificato un problema rimuovendo "%s" dal sistema:Si è verificato un problema aggiornando '%s': %sSi e' verificato un errore nell'aggiunta del preferito: %sSi è verificato un errore nell'aggiungere la cartella: %sSi è verificato un errore durante la comunicazione con il server ActiveSync: %sSi è verificato un errore nel contattare Twitter: %sErrore nella compilazione del form. Verificare di aver compilato tutti i campi necessari.Si è verificato un errore nel fare la richiesta: %sC'è stato un errore per ottenere la tua sessione Facebook. Riprovare più tardi.Si è verificato un errore durante la rimozione dati globali di %s. I dettagli sono stati registrati.Si è verificato un errore durante il salvataggio del preferito: %sSi è verificato un errore durante il salvataggio della cartella: %sSi è verificato un errore nel richiedere i permessiNumero di partita IVA non validoNumero di partita IVA validoTicketGestione del TempoFormato OraTimestamp o sconosciutoTimestamp delle sincronizzazioni avvenute con successoTitoloPer poter aggiungere rapidamente i Preferiti dal tuo browser:Per escludere un campo dall'importazione o per correggere una corrispondenza errata scegliere un campo nell'elenco sottostante e selezionare "Rimuovi coppia".Per selezionare più voci, cliccare tenendo premuto contemporaneamente il tasto CTRL (Command su Mac).OggiDomaniTotaleTradizionaleTraduzioniTurco (ISO-8859-9)TweetIntegrazione TwitterTwitter TimelineTwitter Timeline di %sCaratteri UURLImpossibile contattare Twitter. Riprova più tardi. Errore restituito: %sImpossibile cancellare '%s': %s.Impossibile impostare Mi Piace.Non autorizzatoAnnulla le ModificheIndefinitoUnicode (UTF-8)UnitàSconosciuto (%s)SbloccaMedia Type non supportatoAggiornaAggiorna %sAggiorna %s schemaAggiorna tutti gli schemi DBAggiorna tutte le configurazioneAggiorna utenteAggiornato '%s'Aggiornato %s.Aggiorna lòo schema per: %s.AggiornaCaricato tutti i file di configurazione dell'applicazione sul server.Usa il ProxyUtilizza se utente/password sono differenti dal server IMSPUtenteAmministrazione UtentiUser Agent:Nome UtenteRegistrazione UtenteLa registrazione utente è stata disabilitata per questo sito.La registrazione utente non è configurato correttamente per questo sito.Account utente non trovato.Utente da aggiungere:Nome UtenteNome Utente:UtentiUtenti nel sistema:Verifica Numero Partita IVANumero Partita IVAPartita IVAControllo VersioneControllo VersioneVietnamita (VISCII)Visualizza una pagina web esternaVisibilitàAttenzioneMeteoDati meteorologici forniti daSito WebBenvenutoBenvenuto, %sOccidentale (ISO-8859-1)Occidentale (ISO-8859-15)Che applicazione %s deve mostrare dopo il login?A cosa stai lavorando ora?Cosa è il carattere delimitatoreCosa è il carattere virgolette?Che cos'hai in testa?Quale giorno mostrare come primo della settimana?Scegli faseDurante la navigazione potrai aggiungere la pagina corrente cliccando "Aggiungi ai Preferiti".Campo InteroLarghezza del menu %s di sinistra:WikiVentoVelocità del vento in nodiVento:PulisciPulizia in attesaSaggezzalavoroX-RefAASiSi, sono d'accordoTu e %d altra persona piace questo elementoTu e %d altre persone piace questo elementoNon puoi creare gruppi.Non puoi creare condivisioni.Non puoi modificare gruppi.non puoi modificare condivisioni.Non hai il permesso di creare più di %d preferiti.Non ti è permesso creare più di %d cartelle.Non puoi eliminare gruppi.Non puoi eliminare condivisioni.Non puoi elencare gruppi di condivisioni.Non puoi elencare permessi di condivisone.Non puoi elencare condivisioni.Non puoi elencare gli utenti dei gruppi.Non puoi elencare gli utenti delle condivisioni.È anche possibile controllare le impostazioni di Facebook nel tuo %s.Non hai accettato i termini di utilizzo, per cui non puoi fare il login.Non hai il permesso per visualizzare questa cartella.La sessione è stata terminata.Hai negato le autorizzazioni richieste.Non hai collegato correttamente il tuo account Facebook con Horde. Si consiglia di verificare le impostazioni di Facebook nel tuo %s.Non hai collegato correttamente il tuo account Twitter con Horde. Si consiglia di verificare le impostazioni di Twitter nel tuo %s.Ti piace questoE' necessario descrivere il problema prima di inviare il report del problemaDevi prima selezionare una cartella di destinazione.Specificare il server da eliminare.Specificare lo username da rimuovere.Specificare lo username da rimuovere.Specificare lo username da aggiungere.Specificare lo username da aggiornare.Tuo Indirizzo EmailVostra informazioneIl tuo indirizzo IP è cambiato dall'inizio della tua sessione.Per ragioni di sicurezza è necessario effettuare nuovamente l'accesso.Il tuo nomeIl tuo backend di autenticazione non supporta la aggiunta di utenti.Se si desidera utilizzare Horde per l'amministrazione degli account utente è necesario utilizzare un differente backend di autenticazione.Il tuo backend di autenticazione non supporta la elencazione degli utenti, o la caratteristica è stata disabilitata per qualche motivo.Il tuo browser è cambiato dall'inizio della tua sessione. Per ragioni di sicurezza è necessario effettuare nuovamente l'accesso.Il tuo browser non ha questa funzionalità.'.Fuso orario attuale:Il tuo nome:Il tuo accesso è stato bloccato.Accesso scaduto la nuova password per %s è : %sLa password è stata resettata.La tua password è stata resettata, ma non può esserti inviata. Si prega di contattare l'amministratore.La tua password è stata resettata, controlla l'email e accedi nuovamente con la tua nuova password.La password è scaduta.La password è scaduta.I tuoi server remoti:La tua sessione è scaduta. Effettua il login di nuovo.vivace[Documento di descrizione del problema][Sconosciuto]_Allarmi_Mostra_CLI_Configurazione_AlberoDati_Elimina Preferiti_Modifica Preferiti_Gruppi_Home_Importa/Esporta_Blocchi_Nuovo Preferito_PermessiR_apporti_Ricerca_Utentiallegatocalmopremi quipremi quidalle %s (%s) alle %s %ssoffiareinlinePreferenzemostra differenzedigita la password due volte per confermareunificatometeotrean-1.0.3/locale/it/LC_MESSAGES/trean.po0000664000175000017500000005021112171337643016047 0ustar janjan# Italian translations for trean package. # Copyright 2008-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the trean package. # Fabio Pedretti , 2008. # msgid "" msgstr "" "Project-Id-Version: trean v0.1\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2008-09-05 17:46+0200\n" "PO-Revision-Date: 2008-09-05 18:33+0200\n" "Last-Translator: Fabio Pedretti \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" #: edit.php:237 #, php-format msgid "\"%s\" was not renamed: %s." msgstr "\"%s\" non è stato rinominato: %s." #: data.php:156 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "%d Cartelle e %d Preferiti importati." #: templates/star_rating_helper.php:21 templates/star_rating_helper.php:22 #: templates/star_rating_helper.php:23 templates/star_rating_helper.php:24 #, php-format msgid "%d stars out of 5" msgstr "%d stelle su 5" #: templates/reports.php:104 #, php-format msgid "%s Bookmarks" msgstr "%s Preferiti" #: reports.php:25 #, php-format msgid "%s Response Codes" msgstr "%s Codici di Risposta" #: lib/base.php:78 #, php-format msgid "%s's Bookmarks" msgstr "%s Preferiti" #: lib/Block/bookmarks.php:63 lib/Block/highestrated.php:38 #: lib/Block/mostclicked.php:38 msgid "1 Line" msgstr "1 Riga" #: templates/star_rating_helper.php:20 msgid "1 star out of 5" msgstr "1 stella su 5" #: lib/Block/bookmarks.php:55 lib/Block/highestrated.php:30 #: lib/Block/mostclicked.php:30 msgid "10 rows" msgstr "10 righe" #: lib/Block/bookmarks.php:56 lib/Block/highestrated.php:31 #: lib/Block/mostclicked.php:31 msgid "15 rows" msgstr "15 righe" #: templates/reports.php:36 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx Codici di Risposta (%s)" #: lib/Block/bookmarks.php:62 lib/Block/highestrated.php:37 #: lib/Block/mostclicked.php:37 msgid "2 Line" msgstr "2 Righe" #: lib/Block/bookmarks.php:57 lib/Block/highestrated.php:32 #: lib/Block/mostclicked.php:32 msgid "25 rows" msgstr "25 righe" #: templates/reports.php:42 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx Codici di Risposta (%s)" #: lib/Block/bookmarks.php:61 lib/Block/highestrated.php:36 #: lib/Block/mostclicked.php:36 msgid "3 Line" msgstr "3 Righe" #: templates/reports.php:53 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx Codici di Risposta (%s)" #: templates/reports.php:64 #, php-format msgid "4xx Response Codes (%s)" msgstr "4xx Codici di Risposta (%s)" #: templates/reports.php:86 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx Codici di Risposta (%s)" #: lib/Forms/Search.php:24 msgid "AND" msgstr "E" #: lib/Trean.php:176 msgid "Accepted" msgstr "Accettato" #: templates/add.html.php:59 lib/Block/tree_menu.php:24 msgid "Add" msgstr "Aggiungi" #: templates/add.html.php:82 msgid "Add to Bookmarks" msgstr "Aggiungi ai Preferiti" #: templates/search.php:65 msgid "All" msgstr "Tutti" #: data.php:39 perms.php:239 lib/Block/bookmarks.php:32 #, php-format msgid "An error occured listing folders: %s" msgstr "Errore nell'elenco delle cartelle: %s" #: lib/Trean.php:49 #, php-format msgid "An error occurred counting folders: %s" msgstr "Errore nel conteggio delle cartelle: %s" #: lib/Forms/Search.php:25 msgid "Any Part of the field" msgstr "Qualunque parte del campo" #: templates/search.php:29 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "Sei sicuro di voler eliminare i preferiti selezionati?" #: config/prefs.php.dist:33 msgid "Ascending (A to Z)" msgstr "Crescente (A a Z)" #: perms.php:44 msgid "Attempt to edit a non-existent share." msgstr "Si è cercato di pubblicare una condivisione non esistente." #: lib/Trean.php:208 msgid "Bad Gateway" msgstr "Gateway Errato" #: lib/Trean.php:188 msgid "Bad Request" msgstr "Richiesta Errata" #: add.php:66 msgid "Bookmark Added" msgstr "Preferito Aggiunto" #: data.php:18 lib/Block/bookmarks.php:3 lib/Block/bookmarks.php:81 msgid "Bookmarks" msgstr "Preferiti" #: templates/common-header.inc:27 msgid "Bookmarks Feed" msgstr "Feed Preferiti" #: browse.php:61 msgid "Browse" msgstr "Passa in Rassegna" #: templates/add.html.php:60 templates/edit/footer.inc:2 msgid "Cancel" msgstr "Cancella" #: templates/views/BookmarkList.php:28 msgid "Clicks" msgstr "Premi qui" #: lib/api.php:438 msgid "Close" msgstr "Chiudi" #: lib/Forms/Search.php:24 msgid "Combine" msgstr "Continua" #: config/prefs.php.dist:63 msgid "Completely collapsed" msgstr "Completo" #: config/prefs.php.dist:65 msgid "Completely expanded" msgstr "Completo" #: edit.php:247 msgid "Confirm Deletion" msgstr "Conferma Cancellazione" #: lib/Trean.php:197 msgid "Conflict" msgstr "Conflitto" #: lib/Trean.php:172 msgid "Continue" msgstr "Continua" #: templates/browse.php:109 templates/browse.php:110 msgid "Control access to this folder" msgstr "Controlla accesso a questa cartella" #: edit.php:214 msgid "Copied bookmark: " msgstr "Preferiti copiati: " #: templates/search.php:72 msgid "Copy" msgstr "Copia" #: edit.php:222 #, php-format msgid "Copying folders is not supported." msgstr "La copia delle cartelle non è supportata." #: lib/Trean.php:175 msgid "Created" msgstr "Creato" #: templates/reports.php:96 #, php-format msgid "DNS Failure or Other Error (%s)" msgstr "Errore DNS o altro Errore (%s)" #: templates/browse.php:93 templates/search.php:70 msgid "Delete" msgstr "Elimina" #: templates/browse.php:170 msgid "Delete Bookmark" msgstr "Elimina Preferito" #: templates/browse.php:94 msgid "Delete this folder" msgstr "Elimina questa Cartella" #: edit.php:51 edit.php:110 msgid "Deleted bookmark: " msgstr "Preferiti eliminato: " #: edit.php:123 msgid "Deleted folder: " msgstr "Cartella eliminata: " #: edit.php:273 #, php-format msgid "Deleted the folder \"%s\"" msgstr "Cartella \"%s\" eliminata" #: config/prefs.php.dist:34 msgid "Descending (9 to 1)" msgstr "Discendente (9 a 1)" #: templates/add.html.php:42 templates/edit/bookmark.inc:15 #: lib/Forms/Search.php:22 msgid "Description" msgstr "Descrizione" #: config/prefs.php.dist:10 msgid "Display Options" msgstr "Opzioni di Visualizzazione" #: lib/Block/bookmarks.php:52 msgid "Display Rows" msgstr "Mostra Righe" #: templates/data/export.inc:11 msgid "Download Folder" msgstr "Scarica Cartella" #: templates/add.html.php:73 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" "Trascina il link \"Aggiungi ai Preferiti\" sotto nella tua barra \"Link\"" #: templates/add.html.php:71 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "Trascina il link \"Aggiungi ai Preferiti\" sotto nella tua \"Barra Personale" "\"." #: templates/search.php:69 msgid "Edit" msgstr "Modifica" #: edit.php:292 msgid "Edit Bookmark" msgstr "Modifica Preferito" #: templates/browse.php:165 msgid "Edit Bookmarks" msgstr "Modifica Preferiti" #: perms.php:235 msgid "Edit Permissions" msgstr "Modifica Permessi" #: perms.php:242 #, php-format msgid "Edit Permissions for %s" msgstr "Modifica Permessi per %s" #: lib/Trean.php:205 msgid "Expectation Failed" msgstr "Autenticazione fallita" #: templates/data/export.inc:4 msgid "Export Bookmarks" msgstr "Esporta Preferiti" #: templates/data/import.inc:9 msgid "File to import:" msgstr "File da importare:" #: templates/add.html.php:70 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: config/prefs.php.dist:64 msgid "First level shown" msgstr "Mostrato il primo livello" #: templates/add.html.php:47 templates/views/BookmarkList.php:26 #: templates/edit/bookmark.inc:25 lib/Block/bookmarks.php:42 msgid "Folder" msgstr "Cartella" #: templates/browse.php:73 templates/browse.php:74 msgid "Folder Actions" msgstr "Azioni Cartella" #: lib/Bookmarks.php:354 msgid "Folder names must be non-empty" msgstr "I nomi delle cartelle non devono essere vuoti" #: templates/data/import.inc:11 msgid "Folder to import into:" msgstr "Cartella nella quale importare:" #: lib/Trean.php:191 msgid "Forbidden" msgstr "Vietato" #: lib/Trean.php:183 msgid "Found" msgstr "Trova" #: lib/Trean.php:210 msgid "Gateway Time-out" msgstr "Gateway Time-out" #: lib/Trean.php:198 msgid "Gone" msgstr "Fatto" #: reports.php:25 templates/reports.php:33 msgid "HTTP Status" msgstr "Stato HTTP" #: lib/Trean.php:211 msgid "HTTP Version not supported" msgstr "Versione HTTP non supportata" #: lib/Block/bookmarks.php:50 config/prefs.php.dist:22 msgid "Highest Rated" msgstr "Più votati" #: lib/Block/highestrated.php:3 lib/Block/highestrated.php:49 msgid "Highest-rated Bookmarks" msgstr "Preferiti più votati" #: templates/data/import.inc:16 msgid "Import" msgstr "Importa" #: data.php:184 templates/data/import.inc:4 msgid "Import Bookmarks" msgstr "Importa Preferiti" #: templates/data/export.inc:9 msgid "Include Subfolders" msgstr "Includi le sotto cartelle" #: lib/Trean.php:206 msgid "Internal Server Error" msgstr "Errore interno del Server" #: templates/add.html.php:72 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/data/import.inc:7 msgid "" "Internet Explorer users will need to export their current Favorites by going " "to the \"File\" menu and selecting \"Import and Export\"." msgstr "" "Gli utilizzatori di Internet Explorer possono esportare i loro Preferiti " "andando nel menu \"File\" e poi selezionare \"Importa e Esporta\"." #: lib/Trean.php:199 msgid "Length Required" msgstr "Lunghezza Richiesta" #: lib/Forms/Search.php:25 msgid "Match" msgstr "Combacia" #: lib/api.php:98 msgid "Maximum Number of Bookmarks" msgstr "Numero Massimo dei Preferiti" #: lib/api.php:95 msgid "Maximum Number of Folders" msgstr "Numero Massimo delle Cartelle" #: lib/Block/tree_menu.php:3 msgid "Menu List" msgstr "Menu Lista" #: lib/Trean.php:193 msgid "Method Not Allowed" msgstr "Metodo Non Permesso" #: lib/Block/bookmarks.php:51 config/prefs.php.dist:23 msgid "Most Clicked" msgstr "Più Cliccati" #: lib/Block/mostclicked.php:3 lib/Block/mostclicked.php:49 msgid "Most-clicked Bookmarks" msgstr "Preferiti più cliccati" #: templates/search.php:71 msgid "Move" msgstr "Sposta" #: lib/Trean.php:182 msgid "Moved Permanently" msgstr "Spostato Permanentemente" #: edit.php:161 msgid "Moved bookmark: " msgstr "Preferito spostato: " #: edit.php:174 msgid "Moved folder: " msgstr "Cartella spostata: " #: templates/data/import.inc:6 msgid "" "Mozilla/Firefox users will need to export their current Bookmarks by going " "into \"Bookmark Manager\" and selecting \"Export\" from the \"Tools\" menu." msgstr "" "Gli utilizzatori di Netscape/Mozilla possono esportare i loro Preferiti " "andando in \"Gestione Preferiti\" e poi selezionare \"Esporta\" dal menu " "\"Strumenti\"." #: lib/Trean.php:181 msgid "Multiple Choices" msgstr "Scelte Multiple" #: templates/edit/folder.inc:9 msgid "Name" msgstr "Nome" #: add.php:113 templates/browse.php:160 templates/add.html.php:27 msgid "New Bookmark" msgstr "Nuovo Preferito" #: lib/Trean.php:90 msgid "New Folder" msgstr "Nuova cartella" #: templates/browse.php:83 msgid "New folder" msgstr "Nuova cartella" #: templates/edit/delete_folder_confirmation.inc:15 msgid "No" msgstr "No" #: templates/search.php:76 msgid "No Bookmarks found" msgstr "Nessun Preferito trovato" #: lib/Trean.php:178 msgid "No Content" msgstr "Nessun Contenuto" #: lib/Block/bookmarks.php:128 lib/Block/highestrated.php:73 #: lib/Block/mostclicked.php:73 msgid "No bookmarks to display" msgstr "Nessun preferito da visualizzare" #: lib/Trean.php:177 msgid "Non-Authoritative Information" msgstr "Informazioni Non Autoritativa" #: templates/search.php:66 msgid "None" msgstr "Nessuno" #: lib/Trean.php:194 msgid "Not Acceptable" msgstr "Non Accettato" #: lib/Trean.php:192 msgid "Not Found" msgstr "Non trovato" #: lib/Trean.php:207 msgid "Not Implemented" msgstr "Non implementato" #: lib/Trean.php:185 msgid "Not Modified" msgstr "Non Modificato" #: templates/add.html.php:76 msgid "Note:" msgstr "Appunti:" #: edit.php:286 msgid "Nothing to edit." msgstr "Nulla da modificare." #: lib/Block/highestrated.php:27 lib/Block/mostclicked.php:27 msgid "Number of bookmarks to show" msgstr "Numero di preferiti da mostrare" #: lib/Trean.php:174 msgid "OK" msgstr "OK" #: lib/Forms/Search.php:24 msgid "OR" msgstr "O" #: templates/add.html.php:77 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "Nelle nuove versioni di Internet Explorer, ti potrà essere richiesto di " "aggiungere %s://%s alla tua Trusted Zone." #: perms.php:56 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "" "Solo il proprietario o l'amministratore di sistema può cambiare la proprietà " "o i permessi per una condivisione" #: config/prefs.php.dist:54 msgid "Open links in a new window?" msgstr "Aprire i collegamenti in nuova finestra?" #: config/prefs.php.dist:9 msgid "Other Options" msgstr "Altre Opzioni" #: lib/Trean.php:180 msgid "Partial Content" msgstr "Contenuto Parziale" #: lib/Trean.php:190 msgid "Payment Required" msgstr "Pagamento Richiesto" #: templates/add.html.php:4 msgid "Please enter a name for the new folder:" msgstr "Scrivi un nome per la nuova cartella:" #: lib/Trean.php:200 msgid "Precondition Failed" msgstr "Autenticazione fallita" #: lib/Trean.php:195 msgid "Proxy Authentication Required" msgstr "Autenticazione del Proxy Richiesta" #: templates/views/BookmarkList.php:27 msgid "Rating" msgstr "Valutazione" #: templates/edit/delete_folder_confirmation.inc:3 #, php-format msgid "Really delete \"%s\" and all of its bookmarks?" msgstr "Sei sicuro di voler eliminare \"%s\" e tutti i suoi preferiti?" #: templates/browse.php:102 msgid "Rename this folder" msgstr "Rinomina questa Cartella" #: reports.php:18 msgid "Reports" msgstr "Rapporti" #: lib/Trean.php:201 msgid "Request Entity Too Large" msgstr "Entita richiesta troppo grande" #: lib/Trean.php:196 msgid "Request Time-out" msgstr "Richiesta Scaduta" #: lib/Trean.php:202 msgid "Request-URI Too Large" msgstr "URI-richiesto troppo grande" #: lib/Trean.php:204 msgid "Requested range not satisfiable" msgstr "Il range richiesto non è realizzabile" #: lib/Trean.php:179 msgid "Reset Content" msgstr "Azzera il contenuto" #: templates/edit/footer.inc:1 msgid "Save" msgstr "Salva" #: search.php:23 lib/Forms/Search.php:20 lib/Block/tree_menu.php:33 msgid "Search" msgstr "Ricerca" #: lib/Forms/Search.php:18 msgid "Search Bookmarks" msgstr "Ricerca Preferiti" #: search.php:59 #, php-format msgid "Search Results (%s)" msgstr "Risultati Ricerca (%s)" #: lib/Trean.php:184 msgid "See Other" msgstr "Visualizza l'altro" #: templates/search.php:65 msgid "Select All" msgstr "Seleziona Tutto" #: templates/views/BookmarkList.php:29 msgid "Select All/Select None" msgstr "Seleziona Tutto/Deseleziona Tutto" #: templates/search.php:66 msgid "Select None" msgstr "Nessuna selezionata" #: templates/search.php:64 #, php-format msgid "Select: %s, %s" msgstr "Seleziona: %s, %s" #: lib/Trean.php:209 msgid "Service Unavailable" msgstr "Servizio non disponibile" #: config/prefs.php.dist:11 msgid "Set how to display bookmark listings and how to open links." msgstr "" "Imposta come visualizzare la lista dei preferiti e come aprire i " "collegamenti." #: config/prefs.php.dist:66 msgid "Should your list of bookmark folders be open when you log in?" msgstr "La tua lista dei Preferiti dovrà essere aperta quando ti colleghi?" #: config/prefs.php.dist:45 msgid "Show folder actions panel?" msgstr "Mostra pannello della cartella delle azioni?" #: config/prefs.php.dist:24 msgid "Sort bookmarks by:" msgstr "Ordina preferiti per" #: lib/Block/bookmarks.php:46 msgid "Sort by" msgstr "Ordina per" #: config/prefs.php.dist:35 msgid "Sort direction:" msgstr "Ordina direzioni:" #: lib/Trean.php:173 msgid "Switching Protocols" msgstr "Scegli Protocolli" #: lib/Block/bookmarks.php:58 lib/Block/highestrated.php:33 #: lib/Block/mostclicked.php:33 msgid "Template" msgstr "Modello" #: lib/Trean.php:187 msgid "Temporary Redirect" msgstr "Redirezione temporanea" #: templates/browse.php:181 msgid "There are no bookmarks in this folder" msgstr "Non ci sono preferiti in questa cartella." #: edit.php:216 #, php-format msgid "There was a problem copying the bookmark: %s" msgstr "Si è verificato un errore copiando il preferito: %s" #: edit.php:53 edit.php:112 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Si verificato un errore eliminando il preferito: %s" #: edit.php:125 #, php-format msgid "There was a problem deleting the folder: %s" msgstr "Si verificato un errore durante la cancellazione della cartella: %s." #: edit.php:163 #, php-format msgid "There was a problem moving the bookmark: %s" msgstr "Si e' verificato un errore nell'aggiunta del preferito: %s" #: edit.php:176 #, php-format msgid "There was a problem moving the folder: %s" msgstr "Si è verificato un errore nello spostare la cartella: %s " #: add.php:61 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Si e' verificato un errore nell'aggiunta del preferito: %s" #: add.php:45 add.php:102 edit.php:147 edit.php:201 #, php-format msgid "There was an error adding the folder: %s" msgstr "Si è verificato un errore nell'aggiungere la cartella: %s" #: edit.php:74 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Si è verificato un errore durante il salvataggio del preferito: %s" #: edit.php:87 #, php-format msgid "There was an error saving the folder: %s" msgstr "Si è verificato un errore durante il salvataggio della cartella: %s" #: templates/add.html.php:37 templates/views/BookmarkList.php:25 #: templates/edit/bookmark.inc:10 lib/Forms/Search.php:21 #: lib/Block/bookmarks.php:49 config/prefs.php.dist:21 msgid "Title" msgstr "Titolo" #: templates/add.html.php:69 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Per poter aggiungere rapidamente i Preferiti dal tuo browser:" #: templates/reports.php:103 msgid "Total" msgstr "Totale" #: templates/add.html.php:32 templates/edit/bookmark.inc:20 #: lib/Forms/Search.php:23 msgid "URL" msgstr "URL" #: lib/Trean.php:189 msgid "Unauthorized" msgstr "Non autorizzato" #: templates/reports.php:100 #, php-format msgid "Unknown (%s)" msgstr "Sconosciuto (%s)" #: lib/Trean.php:203 msgid "Unsupported Media Type" msgstr "Media Type non supportato" #: perms.php:228 #, php-format msgid "Updated %s." msgstr "Aggiornato %s." #: lib/Trean.php:186 msgid "Use Proxy" msgstr "Usa il Proxy" #: templates/add.html.php:74 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Durante la navigazione potrai aggiungere la pagina corrente cliccando " "\"Aggiungi ai Preferiti\"." #: lib/Forms/Search.php:25 msgid "Whole Field" msgstr "Campo Intero" #: templates/edit/delete_folder_confirmation.inc:9 msgid "Yes" msgstr "Si" #: add.php:23 data.php:65 data.php:132 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Non hai il permesso di creare più di %d preferiti." #: add.php:86 data.php:56 data.php:107 #, php-format msgid "You are not allowed to create more than %d folders." msgstr "Non ti è permesso creare più di %d cartelle." #: browse.php:45 msgid "You do not have permission to view this folder." msgstr "Non hai il permesso per visualizzare questa cartella." #: templates/add.html.php:11 msgid "You must select a target folder first" msgstr "Devi prima selezionare una cartella di destinazione." #: lib/Trean.php:149 msgid "_Browse" msgstr "_Mostra" #: templates/browse.php:171 msgid "_Delete Bookmarks" msgstr "_Elimina Preferiti" #: templates/browse.php:166 msgid "_Edit Bookmarks" msgstr "_Modifica Preferiti" #: lib/Trean.php:155 msgid "_Import/Export" msgstr "_Importa/Esporta" #: templates/browse.php:161 msgid "_New Bookmark" msgstr "_Nuovo Preferito" #: lib/Trean.php:151 msgid "_Reports" msgstr "R_apporti" #: lib/Trean.php:150 msgid "_Search" msgstr "_Ricerca" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "click" msgstr "premi qui" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "clicks" msgstr "premi qui" trean-1.0.3/locale/lv/LC_MESSAGES/trean.mo0000664000175000017500000022046112171337643016057 0ustar janjan,/<>R$R)SHSbS&|S S%S$S S)T0TBTQT aT mTzTTTT TRT*U9UIUbUhUoUwU~UUUUUUUUUUUVV"V)VAVYVEqVXVVW6gWVWWlXXXXXXX X XXXY Y (Y 2Y >YJY ZYhYqYYNY-YZ"Z *Z7Z FZ PZ ^Z jZ uZZZZ#ZlZ%5[[[a[ t[~[[[[[$[&\:\A\ W\c\w\\\\\%\7\<5]%r]]]] ])] ]^'^,?^*l^%^^!^^_ __ ._ ;_ G_S_'h___ _ __ _______` `` *`@6`w``````!`dasayaaaa a1a*b9b Vbbb ubbQbbb b c cc#c6c ?cLcTc[c cc qc~cc c c c cc=c,d'Jd rddddddddd!d.e*@e3keVeef(f5fXgqg*h/h7h>hRhZhkh zhh hhhhhhi+iEiYi\iaiji oi}iii i i,i4i j&j -j9jPj `jmjj*jjBjk*k>k Sk _kkk rk|kk kkk"k kl l)l1lHl \lillCll l m/mJmPmXmnm sm }mmmmmmm n nn$n",n{OnOn'o(Coloooooooo o opp p'p:p KpWpsp-pp p pp ppqqq q +q9qKqRqaqqq qqq|q8rNrTr \rir rr}rrrrrrr r rss0s?sHs[s^s essss ssss s ss t"t?)tit nt {t"tt t tttu$ u20ucu lu vuuuuuuu uuvjvVw gwswBw4wwx)%xOxax vxx xx xxxxxxxy yy ,y9y HyVyey|yyyyyy y yyyzz :zEzWzgz pzzzzzzGz z0z>,{k{r{w{z{{ {h{{||0|I|a|s||||$|}}}} '}5}H}O}h}}/} }}}} ~#~(~ /~ ;~H~_~d~v~~~ ~~~ ~~~~|      " '58 KV8_ ˀ߀ E3yEA6TYn  Ȃ΂Ԃ$;`cfu( ރ\So ȄτՄ܄  &1AJ^}…օ /4 ;'Fn(PɆ ! ,8A هB7Maj  ׈ ,4IG~Ɖ  - 5A H6T Ȋ  @Lf O!0FN^r Ќ ڌ R,Wƍ ΍ ؍ 1A5W Ɏ3Mm| ЏJ.6-e;[ϐ1+ ]-kO%6\o  ϒג# , 6ARYrydC?&G8n*”;()Rlȕ ؕ  &>/>n4ϖ c:5ԗhfX%83-R2e ښ%1!AS,-›++)H3r%*̜(? )`T)ߝK IU*(ʞ1*%(Py 1:#V  #8>Rc{EšD 9 FS[kq y Ƣܢ  3;: v2 ̣ أ2;'c zƤ   8CKSl u / .FK !ͦҦצܦ #& *D7"|"%§%53D%x%-Ĩ.#!,E,rc5V9/*ڪs yE%ͫ)&%D(jv .8sڭyN+Ȯ 4T\qQί :-UXܰ)9AP W er{ ɱ бܱ" %0Ar1 ٴ)3 CFO ʵص *AjQͶ޶    ,6 ISj s  ѷڷH(\q`θ9/diιtci lw $˺ ';Kgcû/'#W{ɼ߼ %?e( +8%Qw%!Ծ" # 7CZo" %ɿ9C)%m .  %!*G*r3" 7DUgz-  ,BF N Y cnu|L&CKe v[ " Bc@s:',DXhs  ,5JS cmu } @ M-j  %!,<N9?ci==\BxV'!(1 LVn %A]v  ,B2 u  :2CC   $9)X    L77 + 1<Oc}   ';\))*S~    )2Jc&vH ) /PW^ nz%  &   1Ob q } &4E^e } C #7?#Nr% !; 3 A KU mw ! 9*3N:`)  $3 CQX^nu {!# 2 S^e z+'$+% Q]u M.9FD  S"G jv$#!")L0k   "!18H-  #1 U `k    !   ', T _l  @$ 6DY!r3I$Hm_P9W]r  * (4!]-  u&" ' 3@D MX"o   #8#Ae  )"'>gf   f%? _i  /  .:A2U7J. ":]#z:'9O d nx&"(.Mhw\ *5Dds%# 0 ; GQ`Ts5 2O Xfu %6&P!w' 9Nc E/&.V9h<(e/w$V+I=h!( ESk     f)O%8G'`L6 , E O Z ep    21P4R:hhf"$6: %;oab-'2 !D !f  %  #  $( M -j ! R " 50 Uf $  " #! "E h q   0  7  e * 3=D JTioK "C?      5#Tx5=+ it934Fa s~   . 9GXmt2"*G;e  %.17=@D^S#*"($8M0 '0;1*m.3e<aT%!(;ed3 )/(Y+-r w?}0Ar%aWh-.=C[      1 <  O  Y c  k  v         * ! !s@ i&C}w32Y POfO;)0_$Ma>N[=+ag *~JzT p$TFP<W KM/Y_'rB$DfSg'3GE%4cveI.^ 0L/iZloyj2M`6d5-:98"dF%|hORQ)lGE"2'(&y -E>Q-9oy~m/~fdhXq{l*  opt]Lqb\ EH@KKCx-p5r #n!mL+rq.d0s!:W1s6B.cv8ZS1iI+RnN Dm={: Ab{}m_7?aYFA1>R7vDb5h^fk `UICw|4/xR"&GB4;n#|q[ 4{ze%g3HU6)kM (O" BQS)#x@tc ~;J<K.u0V,Ut<D}jPy5` (uk;b\X9i+X?[rn'u j^l` Lz2]}, ?h<oZ%^>@X]Z$wtISVNVJeGgw |&j*#xcJ_6W=szNTe[3]?HV,ak(v\pY uH8W8AA\!9C7*1U=7QT,P!:F"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s."%s" was not renamed: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d Folders and %d Bookmarks imported.%d days until your password expires.%d minutes%d person likes this%d persons like this%d stars out of 5%d to %d of %d%d-day forecast%s - Notice%s Bookmarks%s Configuration%s Response Codes%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s is ready to perform the tasks below. Select each operation to run at this time.%s's Bookmarks, gusting %s %s, variable from %s to %s1 Day1 Line1 Month1 Week1 star out of 510 rows12 Hour Format15 rows1xx Response Codes (%s)2 Line2 Weeks24 Hour Format24 hours24-hour format25 rows2xx Response Codes (%s)3 Days3 Line3xx Response Codes (%s)4xx Response Codes (%s)5xx Response Codes (%s) cannot read information about your Facebook friends. cannot read your stream messages and various other Facebook data items. cannot set your status messages or publish other content to Facebook. can interact with your Twitter accountA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM/PMANDAcceptedAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd ContentAdd Here:Add MembersAdd a groupAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.AllowAllow alphanumericAllow anyAllow only numericAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAn error occured listing folders: %sAn error occurred counting folders: %sAnswerAny Part of the fieldApplicationApplication ContextApplication ListApplication is ready.Application is up-to-date.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to delete the selected bookmarks?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscending (A to Z)Ascii ArtAt least one database schema is outdated.AttachmentAttachment DownloadAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated toAuthorize Access to Friends Data:Authorize PublishAuthorize Read:AutomaticAvailable fields:BOFH ExcusesBad GatewayBad RequestBaltic (ISO-8859-13)Base graphics directory "%s" not found.BasicBlock SettingsBlock TypeBluetoothBookmark AddedBookmarksBookmarks FeedBothBottomBrowseBrowserCalendarCameraCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.Categories and LabelsCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClicksClient AnchorCloseClose WindowCloudsCodeword frequencyCollapseColor PickerCombineComicsCommandCommand ShellComments: %dCompletely collapsedCompletely expandedComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm DeletionConfirm PasswordConflictContinueControl access to this folderCookieCopied bookmark: CopyCopying folders is not supported.Could not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCreatedCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DB schema is out of date.DB schema is ready.DDDataDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.DefinitionsDeleteDelete "%s"Delete All SyncML DataDelete BookmarkDelete GroupDelete this folderDeleted bookmark: Deleted configuration upgrade script "%s".Deleted folder: Deleted synchronization session for device "%s" and database "%s".Deleted the folder "%s"Descending (9 to 1)Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice ManagementDevice encryptionDevice id:Device is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDisableDisplay 24-hour times?Display PreferencesDisplay RowsDisplay detailed forecastDisplay forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload FolderDownload generated configuration as PHP script.DrugsDynamicEU VAT identificationEditEdit "%s"Edit BookmarkEdit BookmarksEdit PermissionsEdit Permissions for %sEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnglishEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExpectation FailedExport BookmarksExtra LargeFTP upload of configurationFacebook IntegrationFailed unlock attempts before device is wipedFeedFeed AddressFeels LikeFields to searchFile ManagerFile to import:FilterFiltersFirefox/MozillaFirst HalfFirst QuarterFirst level shownFolderFolder ActionsFolder names must be non-emptyFolder to import into:FoodForbiddenForceForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFoundFriend Requests:Friends enabledFrom the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGateway Time-outGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoogle SearchGreek (ISO-8859-7)Group AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTML EmailHTTP StatusHTTP Version not supportedHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hide Advanced PreferencesHide ResultsHighest RatedHighest-rated BookmarksHome DirectoryHordeHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsIcons for %sIdentity's name:ImportImport BookmarksImport, Step %dImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Include SubfoldersIncorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internal Server ErrorInternet ExplorerInvalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid parent permission.InventoryJapanese (ISO-2022-JP)Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLawLength RequiredLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLocal time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogged in to FacebookLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize Login to Twitter and authorize the applicationLogoutLoveMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.MatchMatching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Email ageMaximum Number of BookmarksMaximum Number of FoldersMaximum Number of Portal BlocksMaximum attachment sizeMaximum number of entries to displayMedicineMediumMembersMentionsMetar WeatherMethod Not AllowedMetricMin temp last 24 hours: Min temp last 6 hours: Minimum PIN lengthMinutes of inactivity before device should lockMiscellaneousMissing configuration.Mobile (Minimal)Mobile (Smartphone)Mobile Optimized AppsModeMondayMoon PhasesMost ClickedMost-clicked BookmarksMoveMoved PermanentlyMoved bookmark: Moved folder: Multiple ChoicesMy AccountMy Account InformationMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeverNew BookmarkNew CategoryNew FolderNew Messages:New MoonNew Username (optional)New folderNew passwordNew passwords don't match.NewsNextNext 4 PhasesNoNo Bookmarks foundNo ContentNo SoundNo available configuration data to show differences for.No bookmarks to displayNo change.No icons found.No items to displayNo location is set.No offensive fortunesNo pending signups.No push while roamingNo security question has been set. Please contact your administrator.No stable version exists yet.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.Non-Authoritative InformationNoneNordic (ISO-8859-10)Northern HemisphereNot AcceptableNot FoundNot ImplementedNot ModifiedNot ProvisionedNote:NotesNothing to browse, go back.Nothing to edit.Number of articles to displayNumber of bookmarks to showNumber of seconds to wait to refreshOKORObject CreatorOffense filterOfficeOld and new passwords must be different.Old passwordOld password is not correct.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOr enter a user name:Other InformationOther OptionsOther PreferencesOthersOwnerOwner:PHPPHP CodePHP ShellPOP/IMAP Email accountsPOSIX extension is missingP_HP ShellPartial ContentPasswordPassword ComplexityPassword changed successfully.Passwords must match.PastePayment RequiredPending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a name for the new folder:Please enter a password.Please enter a username.Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Pokes:Policy KeyPolicy Key:PoliticsPosition of reply text when replying to email on your device. Note that some devices will always send the citation string at the end of the reply text.Posted %sPosted %s via %sPrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePrecondition FailedPressurePressure at sea level: PrincipalProblem DescriptionProvisionedProvisioningProxy Authentication RequiredPublish enabled.QueryQuotaRandom FortuneRatingReadRead enabledReally delete "%s" and all of its bookmarks?Really delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRegular AppsRemarksRemote HostRemoveRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sRename this folderReplyReportsReprovision All DevicesRequest Entity Too LargeRequest Time-outRequest-URI Too LargeRequested range not satisfiableRequire PINRequire S/MIME EncryptionRequire S/MIME SignatureResetReset ContentReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSD cardSD card encryptionSMS Text messagesSQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch BookmarksSearch Results (%s)Search:See OtherSelect AllSelect All/Select NoneSelect NoneSelect a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Select: %s, %sSend Problem ReportSensor: Server TimeService UnavailableSession AdministrationSession TimestampSessionsSet preferences to allow you to reset your password if you ever forget it.Set up integration with your Facebook account.Set up integration with your Twitter account.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?ShowShow Advanced PreferencesShow differences between currently saved and the newly generated configuration.Show extra detail?Show folder actions panel?Show last login time when logging in?Show notificationsSkip Login TasksSmallSnow depth: Snow equivalent in water: Songs & PoemsSort bookmarks by:Sort bySort direction:South European (ISO-8859-3)Southern HemisphereSpamSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubdirectory "%s" not found.Submitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSync allSyncMLSyndicated FeedTag CloudTasksTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)TemplateTemporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Temporary RedirectThai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.Themes directory "%s" not found.There are no bookmarks in this folderThere was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem copying the bookmark: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the folder: %sThere was a problem moving the bookmark: %sThere was a problem moving the folder: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error adding the folder: %sThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error saving the bookmark: %sThere was an error saving the folder: %sThere was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.TicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTopTotalTranslationsTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sURLUnable to contact Twitter. Please try again later. Error returned: %sUnable to delete "%s": %s.Unable to set like.Unable to validate the request token. Please try your request again.UnauthorizedUndo ChangesUnfiledUnicode (UTF-8)UnitsUnknownUnknown (%s)UnlockUnsupported Media TypeUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated %s.Updated schema for %s.UploadUploaded all application configuration files to the server.Use ProxyUse if name/password is different for IMSP server.UserUser AdministrationUser Agent:User NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWeb browserWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?Which day would you like to be displayed as the first day of the week?Which phasesWhole FieldWidth of the %s menu on the left:WifiWikiWindWind speed in knotsWind:WipeWipe is pendingWisdomWith WorkX-RefYYYesYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to create more than %d folders.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are not connected to your Facebook account. You should check your Facebook settings in your %s.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You do not have permission to view this folder.You have been logged out.You have denied the requested permissions.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must select a target folder firstYou must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your session has expired. Please login again.Your session length has exceeded the maximum amount of time allowed. Please login again.Zippy[Problem Report]_Alarms_Browse_CLI_Configuration_Delete Bookmarks_Edit Bookmarks_Groups_Import/Export_Locks_New Bookmark_Permissions_Reports_Search_Usersattachmentcalmclickclicksfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestype the password twice to confirmunifiedweatherProject-Id-Version: Trean H4 (1.0-git) Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2011-05-18 12:23+0200 PO-Revision-Date: 2013-06-03 14:10+0300 Last-Translator: Jānis Eisaks Language-Team: i18n@lists.horde.org Language: lv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2); X-Poedit-Language: Latvian X-Poedit-Country: LATVIA X-Poedit-SourceCharset: utf-8 "%s" tika pievienots grupu sistēmai."%s" tika pievienots pieejas tiesību sistēmai."%s" nav izveidots: %s"%s" netika pārdēvēts: %s.izmantoti %.2fMB no atļautajiem %.2fMB (%.2f%%)%d %s un %sImportētas %d mapes un %d grāmatzīmes.%d dienas līdz paroles derīguma termiņa beigām.%d minūtes%d personām tas patīk%d personai tas patīk%d personām tas patīk%d punkti no 5%d līdz %d no %d%d-dienas prognoze%s - Piezīme%s Grāmatzīmes%s konfigurācija%s Atbildes kodi%s uzdevumi - apstiprinājums%s Līguma nosacījumi%s plkst. %s %s%s ir gatavs veikt zemāk uzskaitītos uzdevumus. Atzīmējiet operācijas, kuras vēlaties veikt šoreiz.%s Grāmatzīmes, brāzmas %s %s, mainīgs no %s līdz %s1 diena1 rinda1 mēnesis1 nedēļa1 punkts no 510 rindas12 stundu formāts15 rindas1xx atbildes kodi (%s)2 rindas2 nedēļas24 stundu formāts24 stundas24 stundu formāts25 rindas2xx atbildes kodi (%s)3 dienas3 rindas3xx atbildes kodi (%s)4xx atbildes kodi (%s)5xx atbildes kodi (%s)nevar nolasīt informāciju par Jūsu Facebook draugiem. nevar nolasīt Jūsu paziņojumu plūsmu un dažādus citus Facebook datus. nevar uzstādīt Jūsu statusa informāciju vai publicēt citu saturu Facebook. var mijiedarboties ar Jūsu Twitter kontuPieprasīta datu iztīrīšana no iekārtas. Tas tiks izdarīts nākošās sinhronizēšanas laikā.Pieejama jaunāka (%s) versija.Attālināti ierosināta iekārtas %s datu tīrīšana. Iekārta tiks iztīrīta nākošās sinhronizācijas laikā.AM/PMUNAkceptētsKonta informācijaParoleDarbībasActiveSyncActiveSync Iekārtu administrēšanaActiveSync IekārtasActiveSync nav iespējots.PievienotPievienot saturuPievienot šeit:Pievienot locekļusPievienot grupuPievienot jaunu lietotāju:Pievienot jaunu brīdinājumuPievienot pāriPievienot grāmatzīmēmPievienot lietotāju"%s" pievienots sistēmai, taču nav iespējams pievienot papildus pieteikšanās informāciju: %s."%s" pievienots sistēmai. Tagad varat ienākt.Lietotāju pievienošana atslēgta.AdreseKontaktiLietotāju vadībaBrīdinājuma beigasBrīdināšanas veidsBrīdinājuma sākumsBrīdinājuma tekstsBrīdinājuma nosaukumsBrīdinājumiVissVisi autentificētie lietotājiVisas politikas atslēgas atjaunotas.Visu Jūsu ActiveSync iekārtu stāvokļi aizvākti. Tie tiks atkārtoti sinhronizēti, kad nākošo reizi pieslēgsies serverim.Visas sinhronizācijas sesijas dzēstas.AtļautAtļaut burtciparuAtļaut visuAtļaut tikai skaitliskuAlternatīvais IMSP lietotāja vārdsAlternatīvā IMSP paroleAlternatīvais IMSP lietotāja vārdsAlternatīvā e-pasta adreseRadusies kļūda rādot mapes: %sRadusies kļūda skaitot mapes: %sAtbildētJebkura lauka daļaAplikācijaAplikācijas kontekstsAplikāciju sarakstsAplikācija gatava.Aplikācijas versija ir aktuālā.ApstiprinātArābu (Windows-1256)Vai tiešām vēlaties izdzēst '%s'?Vai tiešām vēlaties dzēst atzīmētās grāmatzīmes?Vai tiešām vēlaties dzēst "%s" reģistrēšanās pieprasījumu?Vai tiešām vēlaties izdzēst "%s"?Armēņu (ARMSCII-8)MākslaAugoši (no A līdz Z)Ascii ArtVismaz vienas datubāzes shēma ir novecojusi.PielikumsPielikuma lejupielādeMēģinājums dzēsts neesošu grupu.Mēģinājums dzēsts neesošas tiesības.Mēģinājums mainīt neesošas tiesības.Mēģinājums mainīt neeksistējošu koplietojumu.AutentificētsApstipriniet pieeju draugu datiem:Apstiprināt publicēšanuApstiprināt lasīšanu:AutomātisksPieejamie lauki:BOFH attaisnojumiNepareiza vārtejaNekorekts pieprasījumsBaltijas (ISO-8859-13)Noformējuma tēmu katalogs "%s" nav atrasts.PamataBloka iestatījumiBloka tipsBluetoothGrāmatzīme pievienotaGrāmatzīmesGrāmatzīmju plūsmaAbiApakšaPārlūkotPārlūksKalendārsKameraAtceltAtcelt problēmas pieteikumuAtcelt tīrīšanuParoli automātiski nomainīt nav iespējams. Sazinieties ar administratoru.Kategorijas un iezīmesĶeltu (ISO-8859-14)Centrāleiropas (ISO-8859-2)MainītMainīt atrašanās vietuNomainiet paroliMainīt personīgo informāciju.Paroles maiņa netiek uzturēta šajā konfigurācijā. Sazinieties ar savu administratoru.ĶeksisPārbaudīt jauninājumusPārbaudaĶīniešu vienkāršotā (GB2312)Ķīniešu tradicionālā (Big5)Izvēlieties %sIzvēlieties datumu attēlošanas veidu (saīsinātā formāta):Izvēlieties datumu attēlošanas veidu (pilnā formāta):Izvēlieties laika attēlošanas veidu:Notīrīt vaicājumuIzdzēst lietotāju: %sIzdzēst lietotājuNotīrīt lietotāja datusUzklikšķiniet vienai no Jūsu izvēlētajām adrešu grāmatām un atzīmējiet laukus, kuros meklēt.Uzklikšķiniet, lai turpinātuKlikšķiKlienta enkursAizvērtAizvērt loguMākoņiKoda vārdu biežumsSavērstKrāsu izvēlneKombinētKomiksiKomandaKomandrindaKomentāri: %dPilnībā savērstsPilnībā izvērstsDatoriNosacījumsNosacījumiKonfigurācijakonfigurācijas atšķirībasSinhronizācijas konfigurācija PDA, viedtālruņiem un Outlook.Konfigurācija ir novecojusiPieejami konfigurācijas jauninājuma skriptiKonfigurēt %sApstipriniet dzēšanuApstiprināt paroliKonfliktsTurpinātIerobežot pieeju šai mapeiKūciņaNokopētā grāmatzīme:KopētMapju kopēšana nav atbalstīta.Nav iespējams pieslēgties serverim "%s" izmantojot FTP: %sNav iespējams pieslēgties serverim. Mēģiniet vēlāk.Nevar nodzēst konfigurācijas atsvaidzināšanas skriptu "%s".Nevar atrasta autorizācijas informāciju , lai mijiedarbotos ar Jūsu Twitter kontuPieprasītajam lietotājam paroli nav iespējams atjaunot. Atsevišķa vai visa informācija nav korekta. Mēģiniet vēlreiz vai arī sazinieties ar Jūsu sistēmas administratoru, ja nepieciešama palīdzība.Nevar atjaunot konfigurāciju.Nav iespējams saglabāt konfigurācijas rezerves kopiju: %s.Nevar saglabāt konfigurācijas atsvaidzināšanas skriptu : "%s".Nav iespējams saglabāt konfigurācijas failu %s. Izmantojiet vienu no piedāvātajām iespējām koda saglabāšanai.Nav iespējams saglabāt konfigurācijas failu %s. Vai nu izmantojiet vienu no piedāvātajām opcijām lai saglabātu kodu %s vai arī iekopējiet to %s ar roku.Nevar saglabāt "%s" konfigurāciju: %sValstsIzveidotIzveidot jaunu identitātiIzveidotsPašreizējās 4 fāzesPašreizējie brīdinājumiPašreiz bloķētieAktuālās sesijasPašreizējais laiksŠā brīža laika apstākļiŠībrīža apstākļiCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB pieeja nav konfigurēta.Db shēma ir novecojusi.Db shēma gatava.DDDatiDatubāzeDatumsSaņemšanas datumsDatums: %s; laiks: %sDienaNoklusētieNoklusētās krāsasNoklusētā čaulaNoklusētais nosūtāmo vēstuļu kodējums:Noklusētā atrašanās vieta dislokācijas jūtīgām funkcijām.DefinīcijasDzēstDzēst "%s"Dzēst visus SyncML datusDzēst grāmatzīmiDzēst grupuDzēst šo mapiDzēstā grāmatzīme:Konfigurācijas atsvaidzināšanas skripts "%s" izdzēsts.Izdzēstā mape:Dzēsta sinhronizācijas sesija iekārtai "%s" un datu bāzei "%s".Dzēst mapi "%s"Dilstoši (no 9 līdz 1)Aprakstiet problēmuAprakstsIzstrādeIekārtaIekārtas IDIekārtu vadībaIerīces šifrēšanaIekārtas ID:Iekārta izslaucītaIekārta veiksmīgi atvienota.Iekārtas tīrīšana veiksmīgi atcelta.Rasas punktsRasas punkts pēdējā stundā:Rasas punktsIzslēgtRādīt 24 h laiku?Attēlošanas iestatījumiRindu skaitsParādīt detalizētu prognoziRādīt prognozi (TAF)Vai pirmā rinda satur lauku nosaukumus? Ja jā, ieķeksējiet šo rūtiņu:Nav konta? Reģistrējieties.Lejupielādēt %sLejupielādes mapeLejuplādēt ģenerēto konfigurāciju kā PHP skriptu.NarkotikasDinamisksES PVN identifikācijaLabotLabot "%s"Labot grāmatzīmiLabot grāmatzīmesMainīt pieejas tiesībasMainīt %s pieejas tiesībasMainīt iestatījumusLabot pieejas tiesībasLabot pieejas tiesības "%s"IzglītībaE-pasta adreseBeigu laiksAngļuIevadiet jaunās kategorijas nosaukumu:Ievadiet drošības jautājumu, kuru izmantot paroles maiņas nepieciešamības gadījumā, piemēram - 'kāds ir Jūsu mājdzīvnieka vārds?':Kļūda pieslēdzoties Twitte: %s. Sīkāka informācija fiksēta administratora žurnālā.Kļūda dzēšot sinhronizācijas sesiju:Kļūda dzēšot sinhronizācijas sesijas:Kļūda mainot paroli: %sEtniskieUzaicinātie:Ik 15 minūtesIk 2 minūtesIk 30 sekundesIk 5 minūtesIk pusstunduIk stunduKatru minūtiParaugvērtībasIzpildītIzvērstCerības neattaisnojāsEksportēt grāmatzīmesĀrkārtīgi lielsFTP konfigurācijas augšuplietošanaFacebook integrācijaNeveiksmīgas atslēgšanas mēģinājumi pirms iekārtas iztīrīšanasPlūsmaFeed adreseKomfortsMeklēt laukos:FailiIzvēlieties importējamo failu:FiltrsFiltriFirefox/MozillaPirmā pusePirmais ceturksnisParādīts pirmais līmenisMapeMapju darbībasMapju nosaukumi nedrīkst būt tukšiMape, kurā importētPārtikaAizliegtsPiespieduPrognoze (TAF)Prognozes dienas (ņemiet vērā, ka prognozes satur gan dienas, gan nakts informāciju, liels dienu skaits var izvērsties par apjomīgu bloku)Aizmirsāt paroli?FormasFortuneFortune tipsAforismiFortunes 2ForumiAtrastsDraugu pieprasījumi:Draugi iespējotino %s (%s °) plkst. %s %sNo %s plkst. %s %sPilns aprakstsPilnmēnessPilns vārdsVārtejas taimautsĢenerēt %s konfigurācijuĢenerētais kodsSaņemt vairākGlobālie iestatījumiAizietGoedelGoogle meklēšanaGreek (ISO-8859-7)Grupu vadībaGrupas nosaukumsGrupa nav izveidota: %s.GrupasViesa pieejas tiesībasHTML e-pastsHTTP statussHTTP versija nav atbalstītaHebrew (ISO-8859-8-I)AugstumsPlūsmas satura augstums (platums pieskaņojas blokam automātiski)PalīdzībaPalīdzības tematiPuslodeFaila sākums:Slēpt paplašinātos iestatījumusSlēpt rezultātusVisaugstāk vērtētāsVisaugstāk vērtētās grāmatzīmesMājas mapeHordeCik daudz lauku (sleju) šeit ir?Cik sekundes līdz nākošajam jaunu rakstu pieprasījumam?Gaisa mitrumsHumoristiIkonas %sIdentitātes nosaukums:ImportētImportēt grāmatzīmesImports, %d solisIelādētais lauks: %sIelādētie lauki:Atbildot uz:Zemāk redzamajos sarakstos izvēlieties lauka nosaukumu no importējamās datnes (kreisajā pusē) un atbilstošo nosaukumu no Jūsu adrešu grāmatas (labajā pusē). Pēc tam uzklikšķiniet "Pievienot pāri", lai atzīmētu tos importam. Kad viss pabeigts, uzklikšķiniet "Turpināt".Iekļaut apakšmapesNepareizs lietotāja vārds vai alternatīvā adrese. Sazinieties ar Jūsu sistēmas administratoru, ja nepieciešama palīdzība.Individuālie lietotājiInformācijaAtvasinātie locekļiNorādiet e-pasta adresi, kur varat saņemt jauno paroli.Pareizā atbilde uz drošības jautājumu:Servera iekšējā kļūdaInternet ExplorerNepareizs PVN maksātāja reģistrācijas numura formāts.Nepareiza darbība %sNederīga aplikācija.Nepareizs hash.Nederīgas augstākā līmeņa tiesības.InventārsJapanese (ISO-2022-JP)Tikai tagad...Kodola jaunuļiAtslēgvārdsBērniKolabKorean (EUC-KR)ValodaLielsOtrā pusePēdēja paroles maiņaPēdējais ceturksnisPēdējās sinhronizācijas laiksPēdējo reizi atjaunots:Pēdējā pieslēgšanās: %sPēdējā pieslēgšanās: %s no %sPēdējā pieslēgšanās: nekadPēdējaisLikumiNepieciešams garumsLīdzīgsLimerikaLinux kūciņaTabulu sarakstsKļūme veidojot brīdinājumu sarakstu: %sKļūme veidojot bloķēto sarakstu: %sKļūme veidojot sesiju sarakstu: %sLietotāju saraksta aplūkošana atslēgta.LiteratūraVietējais laiks: %s %sLokāle un laiksAtrašanās vietaBloķēt lietotājuBloķētiePieslēgtiesIzietSavieno s ar FacebookPieslēgties neizdevās, jo ievadīts nepareizs lietotāja vārds vai parole.Pieslēgties neizdevāsPieslēdzities Facebook un autorizējiet Pieslēdzities Twitter un autorizējiet aplikācijuIzietMīlestībaMMMagicPastsPasta adminsJūsu objektu iezīmēšanai izmantojamo kategoriju un piešķirto krāsu saraksts.Vadīt Jūsu ActiveSync iekārtas.AtbilstībaSaskanošie laukiMaks. temp. pēdējās 24 stundās:Maks. temp. pēdējās 6 stundās:Maksimālais e-pasta vecumsMaksimālais grāmatzīmju skaitsMaksimālais mapju skaitsMaksimālais portāla bloku skaitsMaksimālais pielikuma lielumsMaksimālais vienlaikus rādāmo ierakstu skaitsMedicīnaVidējsLocekļiCitātiMetar WeatherMetode nav atļautaMetriskāsMin. temp. pēdējās 24 stundās:Min. temp. pēdējās 6 stundās:Minimālais PIN garumsMinūtes bez aktivitātes pirms ierīces aizslēgšanāsDažādiNav atrodama konfigurācija.Mobilais pastsMobilais (viedtālrunis)Mobilai lietošanai optimizētas aplikācijasModePirmdienaMēness fāzesBiežās apmeklētāsBiežāk apmeklētās grāmatzīmesPārvietotPārvietotPārvietotā grāmatzīme:Pārvietotā mape:Vairākas iespējasMan kontsJūsu informācijaMana Facebook plūsmaMans portālsMans portāla izkārtojumsNavNē, es nepiekrītuUZMANĪBU: IEKĀRTAS IZTĪRĪŠANA VAI NOVEST PIE RŪPNĪCAS IESTATĪJUMU ATJAUNOŠANAS. PIRMS IZTĪRĪŠANAS PIEPRASĪŠANAS PĀRLIECINIETIES, VAI PATIEŠĀM TO VĒLATIESNosaukumsNekadJauna grāmatzīmeJauna kategorijaJauna mapeJaunas vēstules:Jauns MēnessJauns lietotāja vārds (nav obligāts)Jauna mapeJauna paroleJaunās paroles neatbilst.JaunumiTurpinātNākošās 4 fāzesNēGrāmatzīmes nav atrastasNav saturaNav skaņasNav pieejami konfigurācijas dati, kuriem rādīt atšķirības.Grāmatzīmju navNav izmaiņu.Ikonas nav atrastas.Nav attēlojamu ierakstuNav iestatīta atrašanās vieta.Neaizskaroši dienas citātiNav gaidošu pieteikumu.Neizmantot stumšanu (push) viesabonēšanas laikāNav norādīts drošības jautājums. Sazinieties ar savu administratoru.Stabila versija pagaidām nepastāv.Nav norādīts lietotājs.Oriģinālajā konfigurācijā nav atrasta versijas informācija. Reģenerējam konfigurāciju.Konfigurācijā nav atrasta versijas informācija. Reģenerējam konfigurāciju.Neapstiprināta informācijasNekasNordic (ISO-8859-10)Ziemeļu puslodeNav pieņemamsNav atrastsNav ieviestsNav mainītsNav nodrošinātsPiezīme:PiezīmesNav ko pārlūkot, atgriezieties atpakaļ.Nekas nav labojams.Rādāmo rakstu skaitsVienlaikus rādāmo grāmatzīmju skaitspēc cik sekundēm atsvaidzināt:OKVAIObjektu redaktorsApvainojumu filtrsBirojsVecajai un jaunajai parolei ir jāatšķiras.Vecā paroleNepareiza vecā parole.Tikai aizskaroši dienas citātiTikai objekta īpašnieks vai sistēmas administrators var manīti koplietojuma īpašnieku vai tā pieejas tiesībasSaites atvērt jaunā logā?OperētājsistēmaVai ievadiet lietotāja vārdu:Cita informācijaCiti iestatījumiCiti iestatījumiCitiĪpašnieksĪpašnieks:PHPPHP kodsPHP čaulaPOP/IMAP e-pasta kontiPOSIX paplašinājums nav atrodamsP_HP čaulaDaļējs satursParoleParoles sarežģītībaParole veiksmīgi nomainīta.Parolēm ir jāsakrīt.IelīmētNepieciešama samaksaGaidoši pieteikumi:CilvēkiIzpildīt pieslēgšanās uzdevumusTiesības "%s" nav izdzēstas.TiesībasTiesību vadībaPersonīgā informācijaMājdzīvniekiFotoBanalitātesLūdzu, ievadiet jaunās mapes nosaukumu:Lūdzu ievadiet paroli.Lūdzu ievadiet lietotāja vārdu.Lūdzu norādiet problēmas anotāciju.Lūdzu, izlasiet sekojošo tekstu. Jums IR JĀPIEKRĪT noteikumiem, ja vēlaties izmantot šo sistēmu.Belzieni:Politikas atslēgaPolicy Key:PolitikaAtbildes teksta novietojums, atbildot uz e-pastu no Jūsu ierīces. Ņemiet vērā, ka dažas ierīces citēto tekstu vienmēr pievieno atbildes beigās.Nosūtīts %sNosūtīts %s caur %sNokrišņi pēdējā %d stundā:Nokrišņi pēdējās %d stundās:Nokrišņi pēdējās %d stundās:Nokrišņu%siespējamībaPriekšnoteikums nav izpildītsSpiediensSpiediens jūras līmenī:GalvenaisProblēmas aprakstsNodrošinātsNodrošināšanaNepieciešama starpniekservera autentifikācijaPublicēšana iespējota.VaicājumsKvotaGadījuma citātsVērtējumsLasītLasīšana atļautaTiešām dzēst "%s" un visas grāmatzīmes tajā?Tiešām dzēst "%s"? Šī darbība ir neatgriezeniska.Tiešām izdzēst lietotāja "%s" datus? Šī darbība ir neatgriezeniska.Atsvaidzināt dinamiskās izvēlnes elementus:Atsvaidzināt portāla skatījumu:Atsvaidzināšanas biežums:Reģistrētās lietotāja iekārtasIerastās aplikācijasRemarkasAttālinātā stacijaAizvāktIzdzēst pāriIzdzēsiet saglabāto skriptu no servera pagaidu kataloga.Dzēst lietotājuDzēst lietotāju: %sPārdēvēt šo mapiAtbildētAtskaitesNodrošināt visas iekārtasPieprasījuma objekts ir pārāk lielsPieprasījuma taimautsPieprasījuma URI ir pārāk lielsPieprasījuma diapazons nav apmierināmsPieprasīt PINPieprasīt S/MIME šifrēšanuPieprasīt S/MIME parakstuSākt no jaunaNotīrīt saturuAtjaunot paroliAtjaunot iekārtas stāvokli. Tas liks Jūsu iekārtās atkārtoti sinhronizēt visus datus.Atjaunojiet savu paroliAtjaunot pēdējo vaicājumuRezultāti%s rezultāti Atgriezties Galvenajā ekrānāPārčiepstētPārčiepstējis %sAtkārtojiet jauno paroliAtjaunot iepriekšējo konfigurācijuMīklasPalaistIzpildīt pieslēgšanās uzdevumusSD karteSD kartes ŠifrēšanaSMS teksta ziņojumiSQl čaulaS_Ql čaulaSaglabātSaglabāt "%s"Saglabāt un beigtSaglabāt ģenerēto konfigurāciju kā PHP skriptu Jūsu servera pagaidu katalogā.Konfigurācijas uzlabojuma skripts saglabāts : "%s".ZinātneLoksMeklētMeklētMeklēt grāmatzīmesMeklēšanas rezultāti (%s)Meklēt:Skatīt citasIezīmēt visuIezīmēt visu/nekoNeizvēlēties nekoIzvēlieties pievienojamo grupu:Izvēlieties jaunu īpašnieku:Izvēlieties serveriIzvēlieties pievienojamo lietotāju:Izvēlieties laukus, kuros meklēt izvēršot adreses.Izvēlieties datuma un laika formātu:Izvēlieties datuma atdalītāju:Izvēlieties datuma formātu:Izvēlieties dienas un laika kārtību:Izvēlieties laika atdalītāju:Izvēlieties laika formātu:Izvēlieties krāsu shēmu.Izvēlieties valodu:Izvēlieties: %s, %sNosūtīt problēmas pieteikumuSensors:Servera laiksPakalpojums nav pieejamsSesiju vadībaSesijas laika zīmogsSesijasIestatiet iespēju atjaunot paroli gadījumam, ja sanāk to aizmirst.Iestatiet integrāciju ar Jūsu Facebook kontu.Iestatiet integrāciju ar Jūsu Twitter kontu.Iestaties vēlamo valodu, laika joslu un datuma formātu.Iestatiet starta aplikāciju, krāsu shēmu, lapu atjaunošanas biežumu un citus ekrāna iestatījumus.Šim parametram iespējamas vairākas atrašanās vietas: %sĪss kopsavilkumsVai vairuma saišu definēt pieejas taustiņus?RādītRādīt paplašinātos iestatījumusRādīt atšķirības starp šobrīd saglabāto un no jauna ģenerēto konfigurāciju.Rādīt papildu informāciju?Rādīt mapju darbību paneli?Pieslēdzoties rādīt iepriekšējās pieslēgšanās laiku?Rādīt paziņojumusIzlaist pieslēgšanās uzdevumusMazsSniega segas dziļums:Sniega ūdens ekvivalents:Dziesmas un poēmasŠķirot grāmatzīmes pēc:Šķirot pēcŠķirošanas kārtībaSouth European (ISO-8859-3)Dienvidu puslodeMēstulesSportsStandartaStar TrekSākuma laiksStāvokļa vadībaStatussNevar uzstādīt statusu.StraumeApakškatalogs "%s" nav atrasts.Iesniegts pieteikums pievienot "%s" sistēmai. Jūs nevarat ieiet kamēr pieteikums nav apstiprināts.Veiksmīgi pieslēdzās Jūsu Facebook kontam vai atsvaidzināja iestatījumus.Veiksme"%s" veiksmīgi pievienots sistēmai.Lietotāja "%s" dati veiksmīgi iztīrīti no sistēmas."%s" veiksmīgi dzēsts."%s" veiksmīgi aizvākts no sistēmas.Konfigurācija veiksmīgi atjaunota. Pārlādējiet, lai redzētu izmaiņas.Konfigurācijas rezerves kopija veiksmīgi saglabāta."%s" veiksmīgi atsvaidzināts.%s veiksmīgi saglabātsSaule lecSaule rietSvētdienaSaullēktsSaullēkts/saulrietsSaulrietsSinhronizēt visuSyncMLSindicētā plūsmaTag CloudUzdevumiTemp. pēdējā stundā:TemperatūraTemperatūra%s(%sMaks%s/%sMin%s)VeidneNevar sazināties ar Facebook. Mēģiniet vēlāk.Nevar sazināties ar Twitter. Mēģiniet vēlāk.Īslaicīga pāradresācijaThai (TIS-620)Ierīces ar id %s attālinātā tīrīšana atcelta.Brīdinājums izdzēsts.Brīdinājums saglabāts.%s konfigurāciju nevar atsvaidzināt automātiski. Lūdzu veiciet to pašrocīgi.Noklusētā e-pasta adrese lietošanai ar šo identitāti:Bloķēšana atcelta.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.Norādītais valsts kods nav pareizsPakalpojums šobrīd nav pieejams. Mēģiniet vēlāk.Serviss šobrīd ir pārāk noslogots. Mēģiniet vēlāk."%s" pieteikums aizvākts.Lietotāja "%s" pieteikums aizvākts.Iekārtas %s stāvoklis aizvākts. Tā tiks atkārtoti sinhronizēta, kad nākošo reizi pieslēgsies serverim.Testa skripts šobrīd ir ieslēgts. Kad esat beiguši testēšanu, drošības apsvērumu dēļ iesakām to atslēgt (skat. horde/docs/INSTALL).Lietotājs "%s" jau eksistē.Lietotājs "%s" neeksistē.Noformējuma tēmu katalogs "%s" nav atrasts.Šajā mapē grāmatzīmju navKļūme pievienojot sistēmai "%s" : %sKļūme tīrot lietotāja "%s" datus no sistēmas:Kļūme kopējot grāmatzīmi: %sKļūme dzēšot grāmatzīmi: %sKļūme dzēšot mapi: %sKļūme pārvietojot grāmatzīmi: %sKļūme pārvietojot mapi: %sKļūme dzēšot "%s" no sistēmas:Kļūme atsvaidzinot "%s": %sKļūme pievienojot grāmatzīmi: %sKļūme pievienojot mapi: %sKļūda sazinoties ar ActiveSync serveri: %sKļūda sazinoties ar Twitter: %sKļūda konfigurācijas formā. Iespējams, neaizpildījāt kādu obligāto lauku.Kļūda izpildot pieprasījumu: %sKļūda uzsākot Facebook sesiju. Mēģiniet vēlāk.Kļūda dzēšot %s globālos datus. Informācija par kļūmi ierakstīta žurnālā.Kļūme saglabājot grāmatzīmi: %sKļūme saglabājot mapi: %sKļūda pieprasītajās tiesībāsPVN maksātāja numurs nav derīgs.PVN maksātāja numurs ir derīgs.BiļetesLaika uzskaiteLaika formātsLaika zīmogs vai nezināmsVeiksmīgo sinhronizācijas sesiju laika zīmogiVirsrakstsLai ātri piekļūtu grāmatzīmēm no Jūsu pārlūka:Lai izslēgtu kādu lauku no importa vai lai labotu nepareizu atbilstību, izvēlieties pāri no zemāk redzamajiem sarakstiem un uzklikšķiniet "Aizvākt pāri". Lai iezīmētu vairākus objektus, klikšķinot turiet nospiestu Control (PC) vai Command (MAC) pogu.ŠodienaRītdienaAugšaKopāTulkojumiTurkish (ISO-8859-9)TweetTwitter IntegrācijaTwitter skrejošā rinda%s Twitter skrejošā rindaURLNevar sazināties ar Twitter. Mēģiniet vēlreiz. Kļūdas paziņojums: %sNevar nodzēst "%s": %s.Nevar uzstādīt patikšanu.Nav iespējams apstiprināt pieprasījumu. Lūdzu, atkārtojiet to.NeautorizētsAtcelt izmaiņasNeklasificētsUnicode (UTF-8)VienībasNezināmsNezināms (%s)AtbloķētNeatbalstīts mēdiju tipsMainītMainīt %sAtsvaidzināt %s shēmuAtsvaidzināt visas DB shēmasAtsvaidzināt visas konfigurācijasMainīt lietotāju"%s" mainīts.%s atsvaidzināts.%s shēma atsvaidzināta.AugšupielādētVisas aplikāciju konfigurācijas augšupielādētas.Izmantojiet starpniekserveriLietot, ja lietotāja vārds/parole IMSP serverim atšķiras.LietotājsLietotāju vadībaLietotāja aģentsLietotāja vārdsLietotāja reģistrācijaLietotāju reģistrēšana šai sistēmai nav iespējota.Lietotāju reģistrācija nav korekti konfigurēta.Konts nav atrastsPievienojamais lietotājs:Lietotāja vārdsLietotājiLietotāji sistēmā:PVN numura verifikācijaPVN identifikācijas numurs:PVN numursVersijas pārbaudeVersiju kontroleVietnamese (VISCII)apskatīt ārējo tīmekļa lapuRedzamībaBrīdinājumsLaika apstākļiLaika ziņu avots - VietneTīmekļa pārlūksLaipni lūdzamLaipni lūdzm, %sWestern (ISO-8859-1)Western (ISO-8859-15)Kuru aplikāciju %s jāatver pēc pieslēgšanās?Pie kā Jūs šobrīd strādājat?Kāds ir atdalītājsimbols?Kāds ir citēšanas simbols?Kuru nedēļas dienu vēlaties noteikt kā pirmo nedēļā?Kuras fāzesViss lauksKreisās %s izvēlnes platums:WifiWikiVējšVēja ātrums mezglosVējš:SlaucītGaida uz tīrīšanuGudrībaArDarbsX-RefGGJāJā, piekrītuJums un %d personām tas patīkJums un %d personai tas patīkJums un %d personām tas patīkJums nav atļauts pievienot grupas.Jums nav atļauts pievienot koplietojumus.Jums nav atļauts mainīti grupas.Jums nav atļauts mainīt koplietojumus.Jūs nedrīkstat saglabāt vairāk kā %d grāmatzīmes.Jums nav atļauts izveidot vairāk kā %d mapes.Jums nav atļauts dzēst grupas.Jums nav atļauts dzēst koplietojumus.Jums nav atļauts apskatīt koplietojumu grupas.Jums nav atļauts apskatīt koplietojumu pieejas tiesības.Jums nav atļauts apskatīt koplietojumus.Jums nav atļauts apskatīt grupu lietotājus.Jums nav ļauts apskatīt koplietojumu lietotājus.Pieslēgums Jūsu Facebook kontam nav izveidots. Lūdzu, pārbaudiet Facebook iestatījumus savā %s.Jūs varat pārbaudīt savus Facebook iestatījums Jūsu %s.Jūs nepiekritāt Lietošanas noteikumiem, tādēļ pieeja sistēmai Jums ir liegta.Jums nav tiesību apskatīt šo mapi.Jūs atslēdzāties no sistēmas.Jūsu tiesību pieprasījums noraidīts.Jūsu Twitter konts nav pareizi pieslēgts Horde. Lūdzu, pārbaudiet Twitter iestatījumus savā %s.Jums tas patīkAprakstiet problēmu pirms pieteikuma sūtīšanas.Vispirms jānorāda mērķa mapeJānorāda iztīrāmā lietotāja vārds.Jānorāda dzēšamā lietotāja vārds.Jānorāda pievienojamā lietotāja vārds.Jānorāda atsvaidzināmā lietotāja vārds.Jūsu e-pasta adreseJūsu informācijaJūsu IP adrese ir mainījusies sesijas laikā. Lai aizsargātu Jūsu drošību, lūdzu, pieslēdzieties no jauna.Jūsu vārdsJūsu autentifikācijas mehānisms neuztur lietotāju pievienošanu. Ja vēlaties izmantot Horde lietotāju kontu administrēšanai, jāizmanto atbilstošs autentifikācijas mehānisms.Jūsu autentifikācijas mehānisms neuztur lietotāju saraksta attēlošanu vai arī šī funkcionalitāte ir ar nolūku atslēgta.Izskatās, ka sesijas laikā ir mainījies Jūsu pārlūks. Lai aizsargātu Jūsu drošību, Jums ir jāpieslēdzas no jauna.Jūsu pārlūkprogramma neuztur šādu funkciju.Jūsu pašreizējā laika zona:Jūsu pilnais vārds:Jūsu pieejas tiesības izbeigušās.Jūsu jaunā %s parole ir: %sJūsu parole ir atjaunotaJūsu parole ir atjaunota, taču to nav iespējams nosūtīt. Sazinieties ar savu administratoru.Jūsu parole ir atjaunota, pārbaudiet savu e-pastu un pieslēdzieties ar jauno paroli.Jūsu paroles derīguma termiņš ir beidziesJūsu paroles derīguma termiņš ir beidzies.Jūsu sesija ir beigusies. Lūdzu pieslēdzieties atkārtoti.Jūsu sesijas laiks ir beidzies. Lūdzu pieslēdzieties atkārtoti.Sparīgs[Problēmas ziņojums]BrīdinājumiPārlūkot_CLIKonfigurācijaDzēst grāmatzīmesLabot grāmatzīmesGrupasImportēt/EksportētBloķētieJauna grāmatzīmeTiesībasAtskaitesMeklētLietotājipielikumsmierīgsklikšķisklikšķino %s (%s) plkst. %s %sbrāzmasiekļautaisiestatījumirādīt atškirībaslai apstiprinātu, ievadiet paroli divreizvienotsLaika apstākļitrean-1.0.3/locale/lv/LC_MESSAGES/trean.po0000664000175000017500000004534612171337643016071 0ustar janjan# Latvian translations for Trean H4 package. # Copyright 2011-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Trean package. # Automatically generated, 2011. # msgid "" msgstr "" "Project-Id-Version: Trean H4 (1.0-git)\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2011-05-18 12:23+0200\n" "PO-Revision-Date: 2013-06-03 14:10+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" #: edit.php:232 #, php-format msgid "\"%s\" was not renamed: %s." msgstr "\"%s\" netika pārdēvēts: %s." #: data.php:156 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "Importētas %d mapes un %d grāmatzīmes." #: templates/star_rating_helper.php:20 templates/star_rating_helper.php:21 #: templates/star_rating_helper.php:22 templates/star_rating_helper.php:23 #, php-format msgid "%d stars out of 5" msgstr "%d punkti no 5" #: templates/reports.php:104 #, php-format msgid "%s Bookmarks" msgstr "%s Grāmatzīmes" #: reports.php:27 #, php-format msgid "%s Response Codes" msgstr "%s Atbildes kodi" #: lib/Trean.php:26 #, php-format msgid "%s's Bookmarks" msgstr "%s Grāmatzīmes" #: lib/Block/Bookmarks.php:81 lib/Block/Highestrated.php:45 #: lib/Block/Mostclicked.php:45 msgid "1 Line" msgstr "1 rinda" #: templates/star_rating_helper.php:19 msgid "1 star out of 5" msgstr "1 punkts no 5" #: lib/Block/Bookmarks.php:69 lib/Block/Highestrated.php:33 #: lib/Block/Mostclicked.php:33 msgid "10 rows" msgstr "10 rindas" #: lib/Block/Bookmarks.php:70 lib/Block/Highestrated.php:34 #: lib/Block/Mostclicked.php:34 msgid "15 rows" msgstr "15 rindas" #: templates/reports.php:36 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx atbildes kodi (%s)" #: lib/Block/Bookmarks.php:80 lib/Block/Highestrated.php:44 #: lib/Block/Mostclicked.php:44 msgid "2 Line" msgstr "2 rindas" #: lib/Block/Bookmarks.php:71 lib/Block/Highestrated.php:35 #: lib/Block/Mostclicked.php:35 msgid "25 rows" msgstr "25 rindas" #: templates/reports.php:42 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx atbildes kodi (%s)" #: lib/Block/Bookmarks.php:79 lib/Block/Highestrated.php:43 #: lib/Block/Mostclicked.php:43 msgid "3 Line" msgstr "3 rindas" #: templates/reports.php:53 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx atbildes kodi (%s)" #: templates/reports.php:64 #, php-format msgid "4xx Response Codes (%s)" msgstr "4xx atbildes kodi (%s)" #: templates/reports.php:86 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx atbildes kodi (%s)" #: lib/Forms/Search.php:24 msgid "AND" msgstr "UN" #: lib/Trean.php:164 msgid "Accepted" msgstr "Akceptēts" #: lib/Application.php:110 templates/add.html.php:59 msgid "Add" msgstr "Pievienot" #: templates/add.html.php:82 msgid "Add to Bookmarks" msgstr "Pievienot grāmatzīmēm" #: templates/search.php:65 msgid "All" msgstr "Viss" #: data.php:39 lib/Block/Bookmarks.php:37 perms.php:240 #, php-format msgid "An error occured listing folders: %s" msgstr "Radusies kļūda rādot mapes: %s" #: lib/Trean.php:65 #, php-format msgid "An error occurred counting folders: %s" msgstr "Radusies kļūda skaitot mapes: %s" #: lib/Forms/Search.php:25 msgid "Any Part of the field" msgstr "Jebkura lauka daļa" #: templates/search.php:29 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "Vai tiešām vēlaties dzēst atzīmētās grāmatzīmes?" #: config/prefs.php:34 msgid "Ascending (A to Z)" msgstr "Augoši (no A līdz Z)" #: perms.php:46 msgid "Attempt to edit a non-existent share." msgstr "Mēģinājums mainīt neeksistējošu koplietojumu." #: lib/Trean.php:196 msgid "Bad Gateway" msgstr "Nepareiza vārteja" #: lib/Trean.php:176 msgid "Bad Request" msgstr "Nekorekts pieprasījums" #: add.php:65 msgid "Bookmark Added" msgstr "Grāmatzīme pievienota" #: data.php:18 lib/Block/Bookmarks.php:24 msgid "Bookmarks" msgstr "Grāmatzīmes" #: lib/Application.php:64 msgid "Bookmarks Feed" msgstr "Grāmatzīmju plūsma" #: browse.php:59 msgid "Browse" msgstr "Pārlūkot" #: templates/add.html.php:60 templates/edit/footer.inc:2 msgid "Cancel" msgstr "Atcelt" #: templates/views/BookmarkList.php:29 msgid "Clicks" msgstr "Klikšķi" #: lib/Api.php:338 msgid "Close" msgstr "Aizvērt" #: lib/Forms/Search.php:24 msgid "Combine" msgstr "Kombinēt" #: config/prefs.php:61 msgid "Completely collapsed" msgstr "Pilnībā savērsts" #: config/prefs.php:63 msgid "Completely expanded" msgstr "Pilnībā izvērsts" #: edit.php:240 msgid "Confirm Deletion" msgstr "Apstipriniet dzēšanu" #: lib/Trean.php:185 msgid "Conflict" msgstr "Konflikts" #: lib/Trean.php:160 msgid "Continue" msgstr "Turpināt" #: templates/browse.php:107 templates/browse.php:108 msgid "Control access to this folder" msgstr "Ierobežot pieeju šai mapei" #: edit.php:211 msgid "Copied bookmark: " msgstr "Nokopētā grāmatzīme:" #: templates/search.php:72 msgid "Copy" msgstr "Kopēt" #: edit.php:219 #, php-format msgid "Copying folders is not supported." msgstr "Mapju kopēšana nav atbalstīta." # #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # #: lib/Trean.php:163 msgid "Created" msgstr "Izveidots" #: templates/browse.php:91 templates/search.php:70 msgid "Delete" msgstr "Dzēst" #: templates/browse.php:167 msgid "Delete Bookmark" msgstr "Dzēst grāmatzīmi" # #: templates/browse.php:92 msgid "Delete this folder" msgstr "Dzēst šo mapi" #: edit.php:51 edit.php:111 msgid "Deleted bookmark: " msgstr "Dzēstā grāmatzīme:" #: edit.php:124 msgid "Deleted folder: " msgstr "Izdzēstā mape:" #: edit.php:265 #, php-format msgid "Deleted the folder \"%s\"" msgstr "Dzēst mapi \"%s\"" #: config/prefs.php:35 msgid "Descending (9 to 1)" msgstr "Dilstoši (no 9 līdz 1)" #: lib/Forms/Search.php:22 templates/add.html.php:42 #: templates/edit/bookmark.inc:15 msgid "Description" msgstr "Apraksts" #: config/prefs.php:13 msgid "Display Preferences" msgstr "Attēlošanas iestatījumi" #: lib/Block/Bookmarks.php:65 msgid "Display Rows" msgstr "Rindu skaits" #: templates/data/export.inc:11 msgid "Download Folder" msgstr "Lejupielādes mape" # #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# # #-#-#-#-# lv_LV.po (Mnemo 2.1.2) #-#-#-#-# # # #-#-#-#-# lv_LV.po (Gollem 1.0.3) #-#-#-#-# # #-#-#-#-# lv_LV.po (Mnemo 2.1.2) #-#-#-#-# # # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # #: templates/search.php:69 msgid "Edit" msgstr "Labot" #: edit.php:280 msgid "Edit Bookmark" msgstr "Labot grāmatzīmi" #: templates/browse.php:162 msgid "Edit Bookmarks" msgstr "Labot grāmatzīmes" #: perms.php:236 msgid "Edit Permissions" msgstr "Mainīt pieejas tiesības" #: perms.php:243 #, php-format msgid "Edit Permissions for %s" msgstr "Mainīt %s pieejas tiesības" #: lib/Trean.php:193 msgid "Expectation Failed" msgstr "Cerības neattaisnojās" #: templates/data/export.inc:4 msgid "Export Bookmarks" msgstr "Eksportēt grāmatzīmes" # #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # #: templates/data/import.inc:9 msgid "File to import:" msgstr "Izvēlieties importējamo failu:" #: templates/add.html.php:70 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: config/prefs.php:62 msgid "First level shown" msgstr "Parādīts pirmais līmenis" #: lib/Block/Bookmarks.php:49 templates/add.html.php:47 #: templates/edit/bookmark.inc:25 templates/views/BookmarkList.php:27 msgid "Folder" msgstr "Mape" #: templates/browse.php:72 templates/browse.php:73 msgid "Folder Actions" msgstr "Mapju darbības" #: lib/Bookmarks.php:342 msgid "Folder names must be non-empty" msgstr "Mapju nosaukumi nedrīkst būt tukši" #: templates/data/import.inc:11 msgid "Folder to import into:" msgstr "Mape, kurā importēt" #: lib/Trean.php:179 msgid "Forbidden" msgstr "Aizliegts" #: lib/Trean.php:171 msgid "Found" msgstr "Atrasts" #: lib/Trean.php:198 msgid "Gateway Time-out" msgstr "Vārtejas taimauts" #: reports.php:27 templates/reports.php:33 msgid "HTTP Status" msgstr "HTTP statuss" #: lib/Trean.php:199 msgid "HTTP Version not supported" msgstr "HTTP versija nav atbalstīta" #: config/prefs.php:24 lib/Block/Bookmarks.php:60 msgid "Highest Rated" msgstr "Visaugstāk vērtētās" #: lib/Block/Highestrated.php:20 msgid "Highest-rated Bookmarks" msgstr "Visaugstāk vērtētās grāmatzīmes" #: templates/data/import.inc:16 msgid "Import" msgstr "Importēt" #: data.php:184 templates/data/import.inc:4 msgid "Import Bookmarks" msgstr "Importēt grāmatzīmes" #: templates/data/export.inc:9 msgid "Include Subfolders" msgstr "Iekļaut apakšmapes" #: lib/Trean.php:194 msgid "Internal Server Error" msgstr "Servera iekšējā kļūda" #: templates/add.html.php:72 msgid "Internet Explorer" msgstr "Internet Explorer" #: lib/Trean.php:187 msgid "Length Required" msgstr "Nepieciešams garums" #: lib/Forms/Search.php:25 msgid "Match" msgstr "Atbilstība" #: lib/Application.php:76 msgid "Maximum Number of Bookmarks" msgstr "Maksimālais grāmatzīmju skaits" #: lib/Application.php:80 msgid "Maximum Number of Folders" msgstr "Maksimālais mapju skaits" #: lib/Trean.php:181 msgid "Method Not Allowed" msgstr "Metode nav atļauta" #: config/prefs.php:25 lib/Block/Bookmarks.php:61 msgid "Most Clicked" msgstr "Biežās apmeklētās" #: lib/Block/Mostclicked.php:20 msgid "Most-clicked Bookmarks" msgstr "Biežāk apmeklētās grāmatzīmes" #: templates/search.php:71 msgid "Move" msgstr "Pārvietot" #: lib/Trean.php:170 msgid "Moved Permanently" msgstr "Pārvietot" #: edit.php:160 msgid "Moved bookmark: " msgstr "Pārvietotā grāmatzīme:" #: edit.php:173 msgid "Moved folder: " msgstr "Pārvietotā mape:" #: lib/Trean.php:169 msgid "Multiple Choices" msgstr "Vairākas iespējas" #: templates/edit/folder.inc:9 msgid "Name" msgstr "Nosaukums" #: add.php:118 templates/add.html.php:27 templates/browse.php:157 msgid "New Bookmark" msgstr "Jauna grāmatzīme" #: lib/Trean.php:105 msgid "New Folder" msgstr "Jauna mape" #: templates/browse.php:81 msgid "New folder" msgstr "Jauna mape" #: templates/edit/delete_folder_confirmation.inc:15 msgid "No" msgstr "Nē" #: templates/search.php:76 msgid "No Bookmarks found" msgstr "Grāmatzīmes nav atrastas" #: lib/Trean.php:166 msgid "No Content" msgstr "Nav satura" #: lib/Block/Bookmarks.php:143 lib/Block/Highestrated.php:76 #: lib/Block/Mostclicked.php:76 msgid "No bookmarks to display" msgstr "Grāmatzīmju nav" #: lib/Trean.php:165 msgid "Non-Authoritative Information" msgstr "Neapstiprināta informācijas" #: templates/search.php:66 msgid "None" msgstr "Nekas" #: lib/Trean.php:182 msgid "Not Acceptable" msgstr "Nav pieņemams" #: lib/Trean.php:180 msgid "Not Found" msgstr "Nav atrasts" #: lib/Trean.php:195 msgid "Not Implemented" msgstr "Nav ieviests" # #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # #: lib/Trean.php:173 msgid "Not Modified" msgstr "Nav mainīts" #: templates/add.html.php:76 msgid "Note:" msgstr "Piezīme:" #: edit.php:276 msgid "Nothing to edit." msgstr "Nekas nav labojams." #: lib/Block/Highestrated.php:29 lib/Block/Mostclicked.php:29 msgid "Number of bookmarks to show" msgstr "Vienlaikus rādāmo grāmatzīmju skaits" #: lib/Trean.php:162 msgid "OK" msgstr "OK" #: lib/Forms/Search.php:24 msgid "OR" msgstr "VAI" #: perms.php:58 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "" "Tikai objekta īpašnieks vai sistēmas administrators var manīti koplietojuma " "īpašnieku vai tā pieejas tiesības" #: config/prefs.php:53 msgid "Open links in a new window?" msgstr "Saites atvērt jaunā logā?" #: config/prefs.php:12 msgid "Other Preferences" msgstr "Citi iestatījumi" #: lib/Trean.php:168 msgid "Partial Content" msgstr "Daļējs saturs" #: lib/Trean.php:178 msgid "Payment Required" msgstr "Nepieciešama samaksa" #: templates/add.html.php:4 msgid "Please enter a name for the new folder:" msgstr "Lūdzu, ievadiet jaunās mapes nosaukumu:" #: lib/Trean.php:188 msgid "Precondition Failed" msgstr "Priekšnoteikums nav izpildīts" #: lib/Trean.php:183 msgid "Proxy Authentication Required" msgstr "Nepieciešama starpniekservera autentifikācija" #: templates/views/BookmarkList.php:28 msgid "Rating" msgstr "Vērtējums" #: templates/edit/delete_folder_confirmation.inc:3 #, php-format msgid "Really delete \"%s\" and all of its bookmarks?" msgstr "Tiešām dzēst \"%s\" un visas grāmatzīmes tajā?" #: templates/browse.php:100 msgid "Rename this folder" msgstr "Pārdēvēt šo mapi" #: reports.php:19 msgid "Reports" msgstr "Atskaites" #: lib/Trean.php:189 msgid "Request Entity Too Large" msgstr "Pieprasījuma objekts ir pārāk liels" #: lib/Trean.php:184 msgid "Request Time-out" msgstr "Pieprasījuma taimauts" #: lib/Trean.php:190 msgid "Request-URI Too Large" msgstr "Pieprasījuma URI ir pārāk liels" #: lib/Trean.php:192 msgid "Requested range not satisfiable" msgstr "Pieprasījuma diapazons nav apmierināms" #: lib/Trean.php:167 msgid "Reset Content" msgstr "Notīrīt saturu" # #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# # #-#-#-#-# lv_LV.po (Nag 2.1.4) #-#-#-#-# # # #-#-#-#-# nag.po (Nag 2.1.4) #-#-#-#-# # #: templates/edit/footer.inc:1 msgid "Save" msgstr "Saglabāt" #: lib/Application.php:122 lib/Forms/Search.php:20 search.php:19 msgid "Search" msgstr "Meklēt" #: lib/Forms/Search.php:18 msgid "Search Bookmarks" msgstr "Meklēt grāmatzīmes" #: search.php:56 #, php-format msgid "Search Results (%s)" msgstr "Meklēšanas rezultāti (%s)" #: lib/Trean.php:172 msgid "See Other" msgstr "Skatīt citas" #: templates/search.php:65 msgid "Select All" msgstr "Iezīmēt visu" #: templates/views/BookmarkList.php:24 msgid "Select All/Select None" msgstr "Iezīmēt visu/neko" #: templates/search.php:66 msgid "Select None" msgstr "Neizvēlēties neko" #: templates/search.php:64 #, php-format msgid "Select: %s, %s" msgstr "Izvēlieties: %s, %s" #: lib/Trean.php:197 msgid "Service Unavailable" msgstr "Pakalpojums nav pieejams" #: config/prefs.php:45 msgid "Show folder actions panel?" msgstr "Rādīt mapju darbību paneli?" #: config/prefs.php:26 msgid "Sort bookmarks by:" msgstr "Šķirot grāmatzīmes pēc:" #: lib/Block/Bookmarks.php:55 msgid "Sort by" msgstr "Šķirot pēc" #: config/prefs.php:36 msgid "Sort direction:" msgstr "Šķirošanas kārtība" #: lib/Block/Bookmarks.php:75 lib/Block/Highestrated.php:39 #: lib/Block/Mostclicked.php:39 msgid "Template" msgstr "Veidne" #: lib/Trean.php:175 msgid "Temporary Redirect" msgstr "Īslaicīga pāradresācija" #: templates/browse.php:178 msgid "There are no bookmarks in this folder" msgstr "Šajā mapē grāmatzīmju nav" #: edit.php:213 #, php-format msgid "There was a problem copying the bookmark: %s" msgstr "Kļūme kopējot grāmatzīmi: %s" #: edit.php:53 edit.php:113 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Kļūme dzēšot grāmatzīmi: %s" #: edit.php:126 #, php-format msgid "There was a problem deleting the folder: %s" msgstr "Kļūme dzēšot mapi: %s" #: edit.php:162 #, php-format msgid "There was a problem moving the bookmark: %s" msgstr "Kļūme pārvietojot grāmatzīmi: %s" #: edit.php:175 #, php-format msgid "There was a problem moving the folder: %s" msgstr "Kļūme pārvietojot mapi: %s" #: add.php:60 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Kļūme pievienojot grāmatzīmi: %s" #: add.php:44 add.php:103 edit.php:146 edit.php:198 #, php-format msgid "There was an error adding the folder: %s" msgstr "Kļūme pievienojot mapi: %s" #: edit.php:74 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Kļūme saglabājot grāmatzīmi: %s" #: edit.php:87 #, php-format msgid "There was an error saving the folder: %s" msgstr "Kļūme saglabājot mapi: %s" #: config/prefs.php:23 lib/Block/Bookmarks.php:59 lib/Forms/Search.php:21 #: templates/add.html.php:37 templates/edit/bookmark.inc:10 #: templates/views/BookmarkList.php:26 msgid "Title" msgstr "Virsraksts" #: templates/add.html.php:69 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Lai ātri piekļūtu grāmatzīmēm no Jūsu pārlūka:" #: templates/reports.php:103 msgid "Total" msgstr "Kopā" #: lib/Forms/Search.php:23 templates/add.html.php:32 #: templates/edit/bookmark.inc:20 msgid "URL" msgstr "URL" #: lib/Trean.php:177 msgid "Unauthorized" msgstr "Neautorizēts" #: templates/reports.php:100 #, php-format msgid "Unknown (%s)" msgstr "Nezināms (%s)" #: lib/Trean.php:191 msgid "Unsupported Media Type" msgstr "Neatbalstīts mēdiju tips" #: perms.php:229 #, php-format msgid "Updated %s." msgstr "%s atsvaidzināts." #: lib/Trean.php:174 msgid "Use Proxy" msgstr "Izmantojiet starpniekserveri" #: lib/Forms/Search.php:25 msgid "Whole Field" msgstr "Viss lauks" #: templates/edit/delete_folder_confirmation.inc:9 msgid "Yes" msgstr "Jā" #: add.php:26 data.php:68 data.php:135 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Jūs nedrīkstat saglabāt vairāk kā %d grāmatzīmes." #: add.php:89 data.php:59 data.php:110 #, php-format msgid "You are not allowed to create more than %d folders." msgstr "Jums nav atļauts izveidot vairāk kā %d mapes." #: browse.php:45 msgid "You do not have permission to view this folder." msgstr "Jums nav tiesību apskatīt šo mapi." #: templates/add.html.php:11 msgid "You must select a target folder first" msgstr "Vispirms jānorāda mērķa mape" #: lib/Application.php:90 msgid "_Browse" msgstr "Pārlūkot" #: templates/browse.php:168 msgid "_Delete Bookmarks" msgstr "Dzēst grāmatzīmes" #: templates/browse.php:163 msgid "_Edit Bookmarks" msgstr "Labot grāmatzīmes" # #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # #: lib/Application.php:96 msgid "_Import/Export" msgstr "Importēt/Eksportēt" #: templates/browse.php:158 msgid "_New Bookmark" msgstr "Jauna grāmatzīme" #: lib/Application.php:92 msgid "_Reports" msgstr "Atskaites" # #-#-#-#-# horde.po (Horde 2.1) #-#-#-#-# # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # # #-#-#-#-# mnemo.po (Mnemo 2.1.2) #-#-#-#-# # #: lib/Application.php:91 msgid "_Search" msgstr "Meklēt" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "click" msgstr "klikšķis" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "clicks" msgstr "klikšķi" trean-1.0.3/locale/lv/help.xml0000644000175000017500000000151412171337643014270 0ustar janjan Overview Introduction The Bookmarks application allows you to store, organize and manage, and most importantly access your web browser booksmarks on-line and in one central place accessible from any web browser. By storing your bookmarks here, you can access them from any browser on any machine. This means you can easily access your bookmarks from multiple browsers, multiple machines, remote locations, etc. And if you upgrade, switch, or test out browsers, you don't have to worry about what happens to your bookmarks or how to import them into the new browser. trean-1.0.3/locale/nb/LC_MESSAGES/trean.mo0000644000175000017500000027627312171337643016047 0ustar janjan-\[yHyz)z 9zGz Pz \ziz nz%{zz%zz zz { {"{1{(7{`{ i{t{{ {{&{'{& |4|H| W| b|'p| |||"|5}9}K} Z} h} u}}}-}}$})~A~[~u~ ~~~~~~~~~&-@Xk.28+TdQZ Wf4 . 7 AKZ%c  ˂ւނ   ,?Yx $ "9NB-߄ ,;JNT Zei #ą $<Th'x)ʆ #4J`hy 78Ї; 8E~ 9ƈ9و',;*h% ÉΉ/։7.>Um-Ê--@M##-֋38N)h$Ɍ ی   3J'Ow) ʍՍ ڍ  &+2 9GKOg{A ˎ "".Et!T) 3 ;F\e ~ Ð Ӑ  $ 9FTMEDASew*! ); O\cj{  œ͓ԓ ܓ  % -7L` u  ”ϔ+;< x6Е (6U!q̖.6&Nu&͗+3 &T+{8/D W)xԙw#()ۚ(.N d%(-ԛ03!Ɯ&*CAnD   '8KSg z  Ȟ(֞ 6V\ar wɟٟ 0( Ye w    ܠ "24N ء/0"C ft |& Ţ"Ѣ/ $ 0: T`x / 0&>Ce /Ԥ<CA åΥޥ1 K U`c iw  ĦҦ8 ?CL{[ק)=ELSdt  Ψ ֨ (@PYjs! ȩ%AY^ z  ƪ ת $3 COk s ~  Ы۫& |  ά ׬"%,BRd  έ׭  $ 2<C V`u Юڮݮ9=:Z ۯ "&I%Ntz  :0ذ5 )?.iG8)?C.- #&/)V$&̳ ճ &, S^)x̴ Դ ߴ@ pNf& 5 ?J] q~ ζ ߶#j=ɷ ηڷ  )/*Y&')Ӹ*(BBӹ#45j~5Ǻܺ + Ȼ(EYkҼ -7IPW_diq (   +*V[c l v ɾ;Ծ   )4EUg : '6 GS ny  G " 0:?CWk% h*/Fv|) :HW n yQ Jcj  "Wq#    & 4A F P Ze mwDU h s    %9 >I N X cpvy 8,)'2? r6},.33D8x(;P-f-1-."/Q,! 5:NU d n y :-h8w)3\S-6 9 FS gr $9 B P[c s , *5KQVgnv(   2484m ) *)"T(w)W,""Ory.4  /:!B dr  2 (.FV [ f p |  #2A H Ucu  '+* V`h01-+Yn t &9> F Q ]jy%   *7$Ot|"   !/EXh}i/Gbz  0DH7XW @F KWw% $  ". 6 DQX` z   "7FZaiot     &CKc jt&|8*;"(^4  ",3 <H PZa u   +4M*e #'BjU8*)A8k',--G+u+**/#.S+0*> TI*2#/>,n-"!&C HTci:l   %A"\&  3QY p}    !'07@HX ` l w  b (4; @KQX _i n {#-1# =E^0 +SC $:CHNUZafn  " (0 8DJfMQ); DPY ](i+   -(3\m} F% .2ax 4" +#<O, 5V%v#  2 IUfo  4 U?qJa^^he&C17HX n2x.   &; Ucv   &+Rl}J),1Gy 0  ):1P7#0[   %; U2_4E< J PA\B47'9_<   <;2 ;n W : := :x 8 ( ) :? @z   & & 7 K [ o x      '    (# L  _ i %m             B!$d/$2xW7 2;'W&   $ > _iOoI 0N^q /( %2CZ ny        0 < FSX^e t $  (/??o%$ *1FY#i")( "$&G:n&"%!6,X;)&'8:#s#:# */ Z{B"Z*}*;)!9"[3~6@<*g* 4 L,m,8@ ALQX` q    3% Y b y  $        !!! !)!2!B!K!Z!l!!4! !!!! ! " ""," E" Q"_"!}""5" ""#)#=#2T###,# ###1$4$F$#X$.|$ $ $$ $$ %)%1% F%1S%%%% %!%:%#& ,&8&/N&P~&R&"' 1';'B'F'N']'m'|''$'''( ( %(0(3( :(#H(l( ( (((F())%).)E))))*5*Q*X*]*d*u**** * ***** *+ +8-+ f+ r+|+++!+"+!,#,B,-a,, ,, , ,,, , , -- -)->- U-b-j-r--"----- -.. .. ).3.'7._.g.w.//"/ */ 7/ B/O/ T/a/h/}//////#/00 0 0 (0%30Y0b0s0 0 0000000 001$161>1T1 j1t1w1:|1>1;122 R2^2~22 222 22222233393 >3L3[34a313934"4>B4=4*4E40058a5%555 5*5.6"J6+m6 6 6 6'6&61 7 ;7F7,d7777 7 77798<8u8K9f9u999999999 :: .:;:O:$k:: ;;4; 9;E;];l;|;;*;);&;% <-F<,t<<F<==*=A=W=j====A=>><3>p>> >>>>-I?w??????? @#+@O@j@}@@@@@@@@AA AA A #A /A =AJA*[AAAA A A A:A!B &B0B 7B EBSBfB{BBBB-BB BBC "C 0C:CNCdCtC CCCCC4CC DD,D ?DMD,_D DD D D DDDDDKDJE ]E hEtExEEEE'EEEEqFuF/F FFFF#G"8G [GgGkGzGG GGG GGGTGSH nH{HPHHHI)I1I 6I&@I%gIII ILI J#JCJWJ [JhJpJ JJ J J JJJJJ JJ K K (K 2KhHhch |hhh hh h hhhh hi i!i 'i1i :iDiJiYilisi i iiiii iii*j 3jAj;\j#j0jj jk k k $k /k:k Pk \k gk sk }k kkkkk k kkkkll l'l-l 6l Dl Ol[l_lul9llll m mm -m7m?m$_m!mm\m%n&An8hn/n)n n4o3Qo4o6o8o;*p=fpAp0p2q3Jq5~qNqOr7Sr/r(r-r*s*=s+hss&ssst t!t*t1tV5tttttt tt ttttt t u'u ?u(`u u uu"u u!uv vv )v Jv"Tv wvv vvvvvvv v w& w 3w ?wKwSwYwawjwrww w www www ww ww xxxxxxx xx x xxxxyy y&y%Dyjy#y>y7yz+z@z Pz/[zdzz{{6{G{X{^{f{ k{v{{{{{{{{{{{{{ { {|| -|8|@|I| Q|)^|| | | |||7vi-cy(AVYz L%Cu L7IXpr9m|Yt%-#ThYMAHiRI(T+M.ovP&/h0z}F=]`a,Eq~-/C?ol8x kG}EB/LJJ5r+t5PHbI&6\(y*'wjc L}o1 CN K$t*%Emhz/pId)]N ?N)ke,$wF)@qX'jeF~,3pcfdS"-Zjgf{iy{|>!)$JkF?~ykWleb+   jFQtZA1;dv;>UW <=MY`}fD6[++m%lT&I&*Rd<!7Pt  )R61MLgx.0-aDa]0}Zu#K^53OD2fucTXwg;Shb=0r<SMGCZ^*c #)39](p=Q7jv>VyxX,aPM"Owg5{Q[<fdgr`Wu ~B^U{A>uOV/w`e_$fa~9`C>*#C sw  =NGO_8xqIKd]#as2q,%H^X Z}19{QJV/[qn.\Qv";LK WyT\.me"c 4_6RsbszzUh U|2AT:@Ws4$elo575YF ;VBo1StjkvBNO%_`Dln;:z 3n?^iPmE.nK(*Y'$1Q[s8xV!GWR|E-D|HUPuB{448@o<SS<Apk'lb6N9602:Z24: G,0=n\.7!J D#^[ \m!8 X:?B]! _?H\rqbp3G ~r O@9K'@xi'h |EH &n g84i"_:R"JU>+3 &@2[(  — %s is ready to perform the maintenance operations checked below. (%s days ago) (Accesskey %s) (in %s days) (today) (tomorrow) (yesterday) at %d %s and %s%d Folders and %d Bookmarks imported.%d bytes written.%d of %d entries marked as up-to-date%d-day forecast%s - Notice%s Administration%s Bookmarks%s Categories%s Fingerprint%s KB%s Maintenance Operations - Confirmation%s Setup%s Sign Up%s Terms of Agreement%s already exists.%s at %s %s%s has cancelled %s.%s has replied to a free/busy request.%s has replied to the invitation to %s.%s has sent you free/busy information.%s is not writable.%s is required%s minutes%s not found.%s requests your free/busy information.%s requests your presence at %s.%s to %s of %s%s wishes to add to %s.%s wishes to make you aware of %s.%s wishes to receive the latest information about %s.%s's Address Book%s's Bookmarks%s's Calendar%s's Notepad%s's Tasklist%s: %s'%s' is not a valid choice.'%s' is not configured in the Horde Registry.'%s' tree renderer not found.'%s' was added to the groups system.'%s' was added to the permissions system.'%s' was not created: %s.'%s' was not renamed: %s., variable from %s to %s-- select --1 Line12 Hour Format1xx Response Codes1xx Response Codes (%s)2 Line24 Hour Format24 hours2xx Response Codes2xx Response Codes (%s)3 Line3xx Response Codes3xx Response Codes (%s)4xx Response Codes4xx Response Codes (%s)5xx Response Codes5xx Response Codes (%s)A database backend is required for this block.A fatal error has occurredA public PGP key is required to encrypt a message.A public PGP key is required to verify a signed message.A public PGP key, private PGP key, and passphrase are required to decrypt a message.A public PGP key, private PGP key, and passphrase are required to sign a message.A public S/MIME key, private S/MIME key, and passphrase are required to decrypt a message.A public S/MIME key, private S/MIME key, and passphrase are required to sign a message.A public SMIME key is required to encrypt a message.AM RainAM ShowersAM Snow ShowersAM/PMAbout this editorAbout...AbsbottomAbsmiddleAccept requestAcceptedAccess denied creating VFS directory.Access denied creating VFS file.Account PasswordAccount frozen.AccountingActionsAddAdd BookmarkAdd Child GroupAdd Child PermissionAdd Here:Add New GroupAdd New PermissionAdd a child group to '%s'Add a child permission to '%s'Add a new bookmarkAdd a new user:Add columnAdd new membersAdd pairAdd the %s Menu as a Mozilla SidebarAdd this to my calendarAdd to BookmarksAdd to address book:Add to my address bookAdd userAdded '%s' to the system, but could not add additional signup information: %s.Added '%s' to the system. You can log in now.Adding new files to repository:Adding users is disabled.AddressAddress BookAdminister - set permissions for other usersAdministrationAdsAliasAlignAlignment:AllAll Authenticated UsersAll GroupsAll PermissionsAll four sidesAllow multiple addressesAllow setting of ordered list type?Already existsAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAlternate templatesAlternate text:An error occured listing categories: %sAn error occurred counting categories: %sAn illegal value was specified.AndAnonymous ProxyAnswerAny Part of fieldApplicationApplication ListApplication is ready.Apply to Child SharesApproveApproximate SizeArchive File SizeArchive NameAre you sure you want to delete the selected bookmarks?Are you sure you want to delete the selected categories?Are you sure you want to remove the signup request for %s ?Are you sure you wish to delete '%s' and any sub-groups?ArtAscii ArtAsk for confirmation before doing maintenance operations?Assignment columnsAttached is an iCalendar file reply to a request you sentAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.AttendeesAttributesAustriaAuth_cyrsql: Required imap extension not found.Auth_cyrus: Backend does not have required capabilites.Auth_cyrus: Required imap extension not found.Auth_ftp: Required FTP extension not found. Compile PHP with the --enable-ftp switch.Auth_imap: Required IMAP extension not found.Auth_krb5: Required krb5 extension not found.Auth_ldap: Required LDAP extension not found.Auth_ldap: Unable to add user %s. This is what the server said: Auth_ldap: Unable to remove user %sAuth_ldap: Unable to update user %sAuth_mcal: Required MCAL extension not found.Auth_smbauth: Required smbauth extension not found.Authentication failedAuthentication failed. %sAuthentication rejected by RADIUS server.Authentication to FTP server failed.Available fields:Awaiting ResponseBOFH ExcusesBackgroundBackground ColorBad GatewayBad RequestBad kerberos password.Bad kerberos username.BareBase graphics directory '%s' not found.BaselineBelgiumBirthdayBlock "%s" of application "%s" not found.Block SettingsBlock TypeBoldBookmark names must be non-emptyBookmarksBorderBorder thickness:BordersBothBottomBrowseBulleted ListCMSCRCCRL Distribution PointsC_ell Properties...CalendarCalmCan not reset password automatically, contact your administrator.Can't connect to IMAP server: %sCancelCancel Problem ReportCannot delete file "%s".Cannot find a temporary directory.Cannot proceed without 'targetFile' parameter.Cannot remove directory "%s".Cannot remove, %d children exist.Cannot reorder, number of entries supplied for reorder does not match number stored.Cannot route message to specified number.CaptionCategoriesCategories and LabelsCategoryCategory does not exist.Category names must be non-emptyCategory to import into:Cell PhoneCell PropertiesCell padding:Cell propertiesCell spacing:CellphoneCenterCertificate DetailsCertificate PoliciesChair PersonChangeChange the name and address that people see when they read and reply to your emails.Change the number of columns to display in browse and search results.CharChec_k Link...Check the box for any operation(s) you want to perform at this time.Choose a passwordChoose a usernameChoose an action:Choose how to display dates:Choose list style type (for ordered lists)Class definition of %s not found.ClearClear MSOffice tagsClear out user: %sClear userClear user dataClick to ContinueClickatell via HTTPClose WindowCloudsCloudyCollapse SidebarCollapsed bordersColorColor PickerColour selectionCols:Column titlesCombineComicsCommandCommand ShellCommand options:Commands:CommentCommitting:Common NameCompanyCompletedCompletely collapsedCompletely expandedCompose Message (%s)ComputersConditionsConfiguration DifferencesConfiguration needs updating.Configure %sConfirm PasswordConflictConnection failed.Connection failed: Connection refused to the public keyserver.Connection refused to the public keyserver. Reason: %s (%s)Connection to FTP server failed.Contacts were successfully added to your address book.Contents of '%s'ContinueCookieCopied bookmark: CopyCopy selectionCopying %s to %sCote d'IvoireCould not PGP encrypt message.Could not PGP sign message.Could not S/MIME encrypt message.Could not S/MIME sign message.Could not add contact. %sCould not bind to LDAP server.Could not check balance. %sCould not connect to server '%s' using FTP: %sCould not copy %s to %sCould not create distribution list. %sCould not decrypt PGP data.Could not decrypt S/MIME data.Could not delete contact. %sCould not delete distribution list. %sCould not delete setup upgrade script '%s'.Could not determine the recipient's e-mail address.Could not fetch complete address book.Could not fetch complete distribution list.Could not fetch the complete list of distribution lists.Could not load strategy '%s'.Could not mkdir '%s'.Could not obtain public key from the keyserver.Could not open %s.Could not open '%s' for writing.Could not open Maintenance_Task module %sCould not open directory '%s'.Could not read %s.Could not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not retrieve ACLCould not retrieve address book. %sCould not retrieve distribution list. %sCould not retrieve distribution lists. %sCould not retrieve server's capabilitiesCould not revert configuration.Could not rmdir '%s'.Could not save %s configuration.Could not save a backup configuation.Could not save a backup configuation: %sCould not save setup upgrade script to: '%s'.Could not save the backup configuration file %s.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not search the LDAP server.Could not unlink '%s'.Could not update contact. %sCould not update distribution list. %sCould not write configuration for '%s': %sCouldn't find the Mozilla Sidebar. Make sure the sidebar is open.Couldn't give user '%s' the following rights for the folder '%s': %sCounted textCountryCoursesCreateCreate a linkCreate a new oneCreate sub foldersCreatedCreator PermissionsCredit card numberCurrent PhaseCurrent TimeCurrent URL isCurrent WeatherCurrent condition: Current styleCustomize tasks to run upon logon to %s.CutCut selectionCyprusDDDNS Failure or Other ErrorDNS Failure or Other Error (%s)DailyDataDataTree BrowserDateDate ReceivedDate selectionDayDe_lete ColumnDecemberDecimal numbersDeclinedDecrease IndentDefaultDefault ColorDefault IdentityDefault PermissionsDefault permissionsDefine one or more categories for your bookmarksDefinitionsDelegate positionDelegatedDeleteDelete AllDelete BookmarkDelete GroupDelete PermissionDelete and purge messagesDelete cellDelete columnDelete current category?Delete existing alternate templateDelete permissions for '%s'Delete permissions for '%s' and any sub-permissions?Delete rowDelete selected identityDelete the current columnDelete the current rowDelete this CategoryDelete this permission and any sub-permissions?Deleted bookmark: Deleted category: Deleted setup upgrade script '%s'.Delivery timeDenmarkDeny requestDeny request for free/busy informationDescribe the ProblemDescriptionDetails (also in Horde's logfile):Details have been logged for the administrator.DevelopmentDew PointDew Point for last hour: Dew point: Direction left to rightDirection right to leftDirectoryDisplay 24-hour times?Display OptionsDisplay edit buttons when displaying Bookmarks?Display forecast (TAF)Display formatDisposition NotificationDo not deleteDo not directly access maintenance.phpDoes the first row contain the field names? If yes, check this box:DownloadDownload %sDownload My BookmarksDownload generated configuration as PHP script.Drag the 'Add to Bookmarks' link below onto your 'Links' BarDrag the 'Add to Bookmarks' link below onto your 'Personal Toolbar'Drop down listDrugsE-MailERREditEdit BlockEdit BookmarkEdit GroupEdit PermissionEdit PermissionsEdit Permissions for %sEdit options for:Edit permissions for %sEdit permissions for '%s'EducationElement...EmEmailEmail AddressEmail addresses must match.Email with confirmationEmoticonsEmpty message.Empty result.Empty search termsEnable insertion of images from Photo Galleries in text?Enable right click context menu?EndEnd yearEnlarge EditorEnter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Enter the image URL hereErrorError sending reply: %s.Error with email message.Error writing '%s'.Error: ErrorsEuropeEvery 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery LoginEvery half hourEvery minuteExample values:ExecuteExecuting:ExpandExpand SidebarExpectation FailedExpected ')'Expected bare word or quoted search termExpiration DateExponentExport BookmarksFG ColorFTP upload of setupFailed retrieving preferences.Failed to connect to LDAP server.Failed to connect to SMB server.Failed to copy from "%s".Failed to copy to "%s".Failed to create new SASL connection.Failed to move to "%s".FairFalkland Islands (Malvinas)Faroe IslandsFatal Error:FaxFebruaryFeels LikeFeels like: Few ShowersFew Snow ShowersField matrixFile Count: %s fileFile Count: %s filesFile ManagerFile NameFile selectionFile to import:File uploadFile uploads not supported.FiltersFirst HalfFirst QuarterFirst level shownFix ratioFlipFloatFogFolder %s does not existFont ColorFoodFor browsers that don't support imagesForbiddenForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsForwardsFoundFound applications: %sFound directories:FrFramesFree/Busy InformationFree/Busy ReplyFree/Busy RequestFree/Busy Request ResponseFromFrom the Full DescriptionFull MoonFull NameGallery to take image fromGallery:Gateway Time-outGenerate %s ConfigurationGenerated CodeGiven NameGoGoneGoogle SearchGrayscaleGreeceGreek (ISO-8859-7)GreenlandGroup AdministrationGroup names must be non-emptyGroup permissionsGroupsGuest PermissionsGuest permissionsGuestbookHHHTMLHTMLArea cowardly refuses to delete the last cell in row.HTMLArea cowardly refuses to delete the last column in table.HTMLArea cowardly refuses to delete the last row in table.HTTP Authentication not found.HTTP StatusHTTP Version not supportedHash-AlgorithmHazeHeaderHeightHelpHelp using editorHelperHemisphereHere is the beginning of the file:HighHistory entry names must be non-emptyHo_meHomeHome AddressHome PhoneHordeHorde/Kolab: Invalid %s XML data encountered in message %sHorde/Kolab: No message corresponds to object %sHorde/Kolab: No object of type %s found in message %sHorde/Kolab: Successfully removed %s "%s"Horde/Kolab: Successfully synchronised %s "%s"Horde/Kolab: The integration engine requires the 'domxml' PHP extensionHorde/Kolab: Unable to create new XML tree for object %sHorde/Kolab: Unable to remove %s "%s": %sHorde/Kolab: Unable to retrieve MIME ID for the part of type %sHorde/Kolab: Unable to synchronise %s "%s": %sHorde/Kolab: Unable to synchronise shares: %sHorde/Kolab: Unknown share "%s"Horizontal RuleHorizontal paddingHorizontal:How did you get here? (Please report!)How many columns would you like to merge?How many fields (columns) are there?How many rows would you like to merge?HumidityHumidity: HumoristsIMAP mailbox creation failed: %sIMAP mailbox deletion failed: %sIMAP mailbox quota creation failed: %sIP AddressIP Address not available.IP Address not within allowed CIDR block.IP lockdown violation.I_nsert Row BeforeIcelandIcons OnlyIcons for %sIcons with textIdentity's name:If it is not displayed correctly, %s to open it in a new window.If you don't see any icons using Internet Explorer, you may need to check this box to turn off PNG transparency.If you see this message but no image, the image you want to upload can't be displayed by your browser.Image Preview:Image URLImage URL:Image from galleryImage from gallery:Image uploadImagesImportImport BookmarksImport, Step %dImport/ExportImported field: %sImported fields:In ProcessIn_sert Row AfterIncorrect action code given.Incorrect username and/or password.Incorrect username or alternate address. Try again or contact your administrator if you need further help.Increase IndentIndividual UsersInfoInformationInsert C_olumn AfterInsert ImageInsert TableInsert Web LinkInsert _Column BeforeInsert a new column after the current oneInsert a new column before the current oneInsert a new row after the current oneInsert a new row before the current oneInsert a paragraph after the current nodeInsert a paragraph before the current nodeInsert alternate templateInsert an email address to which you can receive the new password:Insert cell afterInsert cell beforeInsert column afterInsert column beforeInsert messagesInsert paragraph afterInsert paragraph beforeInsert row afterInsert row beforeInsert the required answer to the security question:Insert/Modify ImageInsert/Modify LinkInsufficient credit to send to the distribution list.Insufficient credit.IntegerInteger listInternal Server ErrorInternet ExplorerInternet Explorer users will need to export their current Favorites by going to the 'File' menu and selecting 'Import and Export'.Invalid Action selected for this component.Invalid UDH. (User Data Header).Invalid application.Invalid batch ID.Invalid data submitted.Invalid destination address.Invalid file formatInvalid msg_type.Invalid or missing api_id.Invalid or missing parameters.Invalid parent permission.Invalid protocol.Invalid recipient: '%s'Invalid share objectInvalid source address.Invalid unicode data.InventoryIsolated T-StormsIssuerItalicJanuaryJulyJuneJustifyJustify CenterJustify FullJustify LeftJustify RightKeep original?Kerberos server rejected authentication.Kernel NewbiesKey CreationKey FingerprintKey LengthKey TypeKey UsageKey already exists on the public keyserver.KidsLa_youtLanguageLast HalfLast QuarterLast Updated:Last login: %sLast login: %s from %sLast login: NeverLawLayoutLeave empty for no borderLeftLeft headerLeft valuesLength RequiredLight DrizzleLight RainLight Rain EarlyLight Rain LateLight Rain ShowerLight Rain with ThunderLight SnowLight Snow ShowerLimerickLinkLink points to:Link the email address to the compose page when displayingLinksLinux CookieList - user can see the folderList DatabasesList Help TopicsList TablesListing users is disabled.LiteratureLoading libraries...Loading...Local time: Locale and TimeLocationLog inLog outLogin TasksLogin failed because your username or password was entered incorrectly.Login failed.Long textLoveLowLower greek lettersLower latin lettersLower roman numbersMMMS-TNEF Attachment contained no data.MagicMailMake lin_k...Manage the list of categories you have to label items with, and colors associated with those categories.Mark with Seen/Unseen flagsMark with other flags (e.g. Important/Answered)MatchMatching fieldsMax allowed credit.Max message parts exceeded.Max temp last 24 hours: Max temp last 6 hours: Maximum lengthMayMeeting CancellationMeeting InformationMeeting ProposalMeeting ReplyMeeting UpdateMeeting Update RequestMenu mode:Merge cellsMessageMessage Verified Successfully but the signer's certificate could not be verified.Message expired.Message typeMetar block not available.Metar block not available. Details have been logged for the administrator.MethodMethod '%s' is not definedMethod Not AllowedMetricMiddleMime TypeMin temp last 24 hours: Min temp last 6 hours: MirrorMiscellaneousMissing PEAR package HTTP_Request.Missing configuration. You have to generate it now if you want to use this application.Missing message ID.Missing required PEAR package Mail.Missing session ID.MoMobile MailModerateModified DateModify URLModulusMonth and yearMonthlyMoon PhasesMostly ClearMostly CloudyMostly SunnyMoveMove DownMove LeftMove RightMove UpMove downMove upMoved PermanentlyMoved bookmark: Moved category: MozillaMozilla users will need to export their current Bookmarks by going into 'Bookmark Manager' and selecting 'Export' from the 'Tools' menu.Multiple ChoicesMultiple selectionMy AccountMy BookmarksMy PortalMy Portal LayoutNO, I Do NOT AgreeNameNeeds ActionNetherlandsNetworkNeverNew BookmarkNew CategoryNew MoonNew SubcategoryNew Username (optional)New window (_blank)NewsNewsgroupsNextNext PageNext PhaseNext optionsNightNoNo Bookmarks foundNo ContentNo available configuration data to show differences for.No available strategy for making ISO images.No block exists at the requested positionNo bookmarks to displayNo calendar name provided for MCAL authentication.No change.No child permissions are to be added below this level.No children can be added to this permission.No configuration information specified for %s.No configuration information specified for FTP VFS.No configuration information specified for SQL VFS.No configuration information specified for SQL-File VFS.No credit left.No destination supplied.No icons found.No locale specified.No location is set.No message supplied.No name specified.No number specified.No offensive fortunesNo password provided for HTTP authentication.No password provided for IMAP authentication.No password provided for Kerberos authentication.No password provided for LDAP authentication.No password provided for Login authentication.No password provided for PASSWD authentication.No password provided for SMB authentication.No rulesNo sidesNo username and/or password sent.No valid XML data returnedNo valuesNon ParticipantNon-Authoritative InformationNoneNorthern HemisphereNorwayNot AcceptableNot AfterNot BeforeNot FoundNot ImplementedNot ModifiedNot a directoryNot implemented.Not setNot supported.NotesNoticeNovemberNumberNumber Of ClicksNumber of charactersNumber of columnsNumber of columns to display in browse and search results:Number of rowsNumbers not specified for updating in distribution list.OKObjectObject CreatorObject creator permissionsOctalOfficeOnly IMAP servers support shared folders.Only offensive fortunesOnly one email address allowed.Only the owner or system administrator may change ownership or owner permissions for a shareOpen in a new windowOpen links in a new window?Opens this link in a new windowOptional ParticipantOptionsOptions for %sOptions:OrOrdered ListOrganisationOrganisational UnitOrganizingOriginal application templateOther InformationOther OptionsOwner PermissionsPAM authentication is not available.PGP Digital SignaturePGP Encrypted DataPGP Public KeyPGP Signed/Encrypted DataPHP CodePM Light RainPM ShowersPM SnowPM Snow ShowersPM T-StormsPakistanPalauPanamaParaguayPartial ContentPartly CloudyPasswordPassword incorrectPassword required for RADIUS authentication.Password with confirmationPassword:Password: Passwords must match.PastePathPayment RequiredPeoplePercentPerform Maintenance OperationsPerform maintenance operations on login?PermissionPermission '%s' not deleted.PermissionsPermissions AdministrationPermissions forPersonal InformationPhonePlease confirm that you want to remove this element:Please confirm that you want to unlink this element.Please enter a month and a year.Please enter a name for the new category:Please enter a valid IP address.Please enter a valid time.Please enter the name of the new category:Please modify the name accordinglyPlease provide a summary of the problem.Please provide your username and passwordPlease review the following information, and then select an action from the menu below.Please select an action from the menu below.Please type the new category name:PolandPoliticsPollsPrecondition FailedPrefs_ldap: Required LDAP extension not found.Prefs_session: Required session extension not found.PresentationsPressurePressure at sea level: Pressure: PreviewPreview the image in a new windowPrevious PagePrevious optionsPrivate KeyProblemProblem DescriptionProxy Authentication RequiredPublic KeyPublic Key AlgorithmPublic/Private keypair not generated successfully.Puerto RicoQatarRSA Public Key (%d bit)Radio selectionRainRain EarlyRain LateRain ShowerRain and SnowRain to SnowRandom FortuneRatioReadRead messagesRedirect AllRedirect to %sRedoes your last actionRefresh Portal View:RegexRemember the free/busy information.Remote ServersRemoveRemove BlockRemove columnRemove formattingRemove from my calendarRemove pairRemove theRemove userRemove user: %sRename this CategoryReply Sent.Reply with Not Supported MessageReply with free/busy for next 2 months.Reply with requested free/busy information.Reply: %sReportsRequest Entity Too LargeRequest Time-outRequest-URI Too LargeRequested range not satisfiableRequired '%s' not specified in %s configuration.Required '%s' not specified in VFS configuration.Required '%s' not specified in configuration.Required ParticipantResetReset ContentReset PasswordReset Your PasswordResultsResults:Return to OptionsReunionRevert ConfigurationRich Text Editor OptionsRiddlesRightRight headerRight valuesRo_w Properties...RoleRomaniaRotate 180Rotate LeftRotate RightRow PropertiesRow propertiesRows:RulesRunRwandaS/MIME Encrypted MessageSASL authentication is not available.SMS MessagingSaSamoaSan MarinoSatellite ProviderSaveSave %sSave '%s'Save OptionsSaved %s configuration.Saved setup upgrade script to: '%s'.ScienceSearchSearch BookmarksSearch EnginesSearch ResultsSearching Horde applications in %sSearching gettext binaries...See OtherSelect AllSelect FilesSelect NoneSelect a dateSelect a group to addSelect a new ownerSelect a serverSelect a user to addSelect all date components.Select an objectSelect the characters you need from the boxes below. You can then copy and paste them from the text area.Select the date delimiter:Select the date format:Select the time delimiter:Select the time format:Select two matching fields.Select your preferred language:Select: %s | %sSend Latest InformationSend Problem ReportSend SMSSensor: SeptemberSerial NumberService UnavailableSession ID expired.SetSet PermissionsSet your preferred language, timezone and date options.Set your startup application, color scheme, page refreshing, and other display options.SetupShoppingShort SummaryShould your list of bookmark categories be open when you log in?ShowShow pickerShow table operations menu bar?Show the %s Menu on the left?Show the Table Cell Properties dialogShow the Table Properties dialogShow the Table Row Properties dialogShow the image properties dialogShow uploadShowersShowers EarlyShowers LateShrinkSign upSign up if not registeredSignatureSignature AlgorithmSingaporeSizeSkip MaintenanceSlovakiaSloveniaSnowSnow ShowerSnow ShowersSnow Showers EarlySnow Showers LateSnow depth: SomaliaSort order selectionSource addressSouthern HemisphereSpacerSpacingSpainSpamSpecial Character InputSplit cellSplit columnSplit rowSportsSri LankaStandardStar TrekStartStart yearState or ProvinceStatusStorage formatStreet AddressString listSubdirectory '%s' not found.SubjectSubject Public Key InfoSubmitSubscriptSuccessSuccessfully added '%s' to the system.Successfully cleared data for user '%s' from the system.Successfully deleted '%s'.Successfully removed '%s' from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully saved the backup configuration file %s.Successfully updated '%s'Successfully wrote %sSudanSummarySun RiseSun SetSunriseSunrise/SunsetSunrise: SunsetSunset: SuperscriptSurnameSwazilandSwedenSwitching ProtocolsSwitzerlandSyntax error in search termsT-StormT-StormsTSV fileTableTable PropertiesTable propertiesTaiwanTajikistanTarget:TasksTelephone NumberTemperatureTemperature: TemplateTemplate '%s' not found.Template AdministrationTemplate to use when displaying bookmarks:Temporary RedirectTentatively Accept requestTentatively AcceptedTextText OnlyText alignTexttopThailandThank you for using the system.The FTP extension is not available.The Options window has closed. Exiting.The calendar data is invalidThe contact ID number was not specified, left blank or was not found in the database.The contact was successfully added to your address book.The event has been added to your calendar.The task has been added to your tasklist.The user's free/busy information was sucessfully stored.There are no bookmarks in this categoryThere are no options available.There was a problem copying the bookmark: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the category: %sThere was a problem moving the bookmark: %sThere was a problem moving the category: %sThere was an error adding the bookmark: %sThere was an error adding the category: %sThere was an error displaying this message partThere was an error importing the contact data.There was an error importing the event: %s.There was an error importing the iCalendar data.There was an error importing the task: %s.There was an error importing user's free/busy information: %s.There was an error in the configuration form. Perhaps you left out a required field.There was an error saving the bookmark: %sThis IMAP server does not support sharing folders.This action is not supported.This action is not yet implemented.This does not appear to be a valid rar archive.This does not appear to be a valid zip file.This does not seem to be a valid card number.This field is required.This field must be a valid number.This number must be at least one.This value must be a number.TimeTime formatTime selectionTitleToTo be able to quickly add bookmarks from your web browser:TodayTomorrowTopTotalTranslatedTranslationsTurkeyTurkmenistanURLURL:UgandaUkraineUnable to connect to SQL server.Unable to connect with SSL.Unable to decompress data.Unable to open compressed archive.Unable to translate this Word documentUnauthorizedUnderlineUndo ChangesUndoes your last actionUnfiledUnhandled component of type: %sUnknownUnknown (%s)Unknown command: %sUnknown username or password.UnnamedUnsupported Media TypeUntranslatedUpdateUpdate %sUpdate respondent statusUpdate userUpdated %s.Updated '%s'.UploadUsage:Use ProxyUsernameUsername '%s' already exists.Username:Username: UsersVacationValuesVariableVersionVersion ControlView %sView ReportView eventView taskWarningWarning: Web SiteWeeklyWelcomeWelcome to %sWelcome, %sWhile browsing you will be able to add bookmarks by clicking your new 'Add to Bookmarks' shortcut.Whole FieldWidth:WindWind EarlyWind:Wind: WisdomWishlistsWorkWork AddressWork PhoneYYYYYYYearlyYemenYesYou are creating a category folder.You are renaming the current category folder.You do not have permission to view this category.You have been logged out.You have to enter a valid value.You must describe the problem before you can send the problem report.Your %s session has expired. Please login again.Your Email AddressYour From: address:Your InformationYour NameYour browser does not support this feature.Your browser does not support this print option. Press Control/Option + P to print.Your default identity:Your full name:Your options have been updated.[Problem Report][line %s of %s]_Help_Log out_Optionsaddress bookan error has occured:calendarcalmclickclicksdonefailedfilefound: from the %s (%s) at %s %sinlinelines]namenot changednot foundnot implementednot yet implementednotepadpercentrisingsteadytask listtype the password twice to confirmunifiedunnamedupdateduser selectvCardw:Project-Id-Version: Trean 0.1-cvs Report-Msgid-Bugs-To: POT-Creation-Date: 2005-03-31 20:48+0100 PO-Revision-Date: 2005-04-01 16:25+0100 Last-Translator: Odd Marthon Lende Language-Team: Norwegian Bokmål MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit — %s er klar for å utføre vedlikeholdsoperasjonene som er valgt nedenfor. (%s dager siden) (Hurtigtast %s) (innen %s dager) (i dag) (i morgen)(i går)den%d %s og %s%d Mapper og %d Snarveier ble importert.%d bytes skrevet.%d av %d oppføringer markert som oppdatert%d-dagers varsel%s - Til info%s administrasjon%s Snarveier%s Kategorier%s fingeravtrykk%s kB%s vedlikeholdsoperasjoner - Bekreftelse%s-innstillinger%s-registrering%s avtalevilkår%s finnes allerede.%s på %s %s%s har kansellert %s.%s har besvart en forespørsel om informasjon angående ledig/opptatt.%s har svart på invitasjonen til %s.%s har sendt deg informasjon om ledig/opptatt.%s er skrivebeskyttet.%s er påkrevd%s minutterFant ikke %s.%s spør om informasjon om når du er ledig/opptatt.%s spør om din deltagelse på %s.%s - %s av %s%s ønsker å legge til %s.%s ønsker å gjøre deg oppmerksom på %s.%s ønsker å motta den sist oppdaterte informasjonen om %s.Addressebok for %s%s's SnarveierKalender for %sNotatblokk for %sOppgaveliste for %s%s: %s'%s' er ikke et gyldig valg.'%s' er ikke konfigurert i Horde-registeret.Fant ikke renderer for '%s'-tre.%s ble lagt til gruppesystemet.'%s' ble lagt til rettighetssystemet.%s ble ikke opprettet: %s.'%s' ble ikke skiftet navn på: %s., variabel mellom %s og %s-- velg --Første linje12-timers format1xx Respons Koder1xx Respons Koder (%s)Andre linje24-timers format24 timer2xx Respons Koder2xx Respons Koder (%s)Tredje Linje3xx Respons Koder3xx Respons Koder (%s)4xx Respons Koder4xx Respons Koder (%s)5xx Respons Koder5xx Respons Koder (%s)En databasetilkobling er påkrevd for denne blokken.En fatal feil har oppståttEn offentlig PGP-nøkkel er påkrevd for å kryptere meldingen.En offentlig PGP-nøkkel er påkrevd for å verifisere en signert melding.En offentlig PGP-nøkkel, privat PGP-nøkkel og passord er påkrevd for å dekryptere en melding.En offentlig PGP-nøkkel, privat PGP-nøkkel og passord er påkrevd for å signere en melding.En offentlig S/MIME-nøkkel, privat S/MIME-nøkkel, og passord er påkrevd for å dekryptere en melding.En offentlig S/MIME-nøkkel, privat S/MIME-nøkkel, og passord er påkrevd for å signere en melding.En offentlig S/MIME-nøkkel er påkrevd for å kryptere en melding.Regn på formiddagenRegnbyger på formiddagenSnøbyger på formiddagenAM/PMOm denne editorenOm...Absolutt nederstAbsolutt midtenGodkjenn forespørselAkseptertTilgang ble nektet ved opprettelse av VFS-katalog.Tilgang ble nektet ved opprettelse av VFS-fil.KontopassordKontoen er fryst.BokholdHandlingerLegg tilLegg til snarveiLegg til undergruppeLegg til underrettigheterLegg til her:Legg til ny gruppeLegg til ny rettighetLegg til en undergruppe til '%s'Legg til underrettighet til '%s'Legg til ny snarveiLegg til ny bruker:Legg til kolonneLegg til nye medlemmerLegg til parLegg til %s-menyen som Mozilla SidebarLegg denne i min kalenderLegg til snarveiLegg i addressebok:Legg i min addressebokOpprett brukerLa '%s' i systemet, men kunne ikke legge til ekstra registreringsinfo: %s.La '%s' i systemet. Du kan logge inn nå.La nye filer i repository:Muligheten til å opprette brukere er deaktivert.AdresseAdressebokAdministrer - sett rettigheter for andre brukereAdministrasjonReklameAliasJusterJustering:AlleAlle autentiserte brukereAlle grupperAlle reddigheterAlle fire sideneTillat flere adresserTillat endring av formatet på nummererte lister?Eksisterer alleredeAlternativ IMSP-innloggingAlternativt IMSP-passordAlternativt IMSP-brukernavnAlternativ e-postadresseAlternative malerAlternativ tekst:En ukjent feil oppstod under listing av kategoriene: %sEn feil oppstod under telling av kategoriene: %sEn ulovlig verdi ble oppgitt.OgAnonym ProxySvarHvilken som helst del av feltetProgramProgramlisteProgrammet er klart.Oppdater rekursivtGodkjennOmtrentlig størrelseFilstørrelse på arkivetArkivnavnEr du sikker på at du vil slette valge snarveier?Er du sikker på at du vil slette valgte kategorier?Er du sikker på at du vil fjerne registreringsforespørselen for %s?Er du sikker på at du vil slette '%s' og dens undergrupper?KunstASCII-kunstBe om bekreftelse før gjennomføring av vedlikeholdsoperasjoner?KolonneanvisningVedlagt i svaret er en iCalendar-fil for en forespørsel du sendteForsøk på å slette en gruppe som ikke eksisterer.Forsøk på å slette en rettighet som ikke eksisterer.Forsøk på å redigere en rettighet som ikke eksisterer.Du prøvde å redigere en delt-kategori som ikke eksisterte.DeltagereAttributtØsterrikeAuth_cyrsql: Kan ikke finne den nødvendige IMAP-utvidelsen.Auth_cyrus: Backend innehar ikke nødvendig funksjonalitet.Auth_cyrus: Kan ikke finne den nødvendige IMAP-utvidelsen.Auth_ftp: Kan ikke finne den nødvendige FTP-utvidelsen. Kompiler PHP med --enable-ftp.Auth_imap: Kan ikke finne den nødvendige IMAP-utvidelsen.Auth_krb5: Kan ikke finne den nødvendige krb5-utvidelsen.Auth_ldap: Kan ikke finne den nødvendige LDAP-utvidelsen.Auth_ldap: Kunne ikke legge til bruker %s. Serveren sa: Auth_ldap: Kunne ikke fjerne brukeren %sAuth_ldap: Kunne ikke oppdatere bruker %sAuth_mcal: Kan ikke finne den nødvendige MCAL-utvidelsen.Auth_smbauth: Kan ikke finne den nødvendige smbauth-utvidelsen.Autentisering feiletAutentisering feilet. %sAutentisering nektet av RADIUS-tjener.Autentisering mot FTP-tjeneren feilet.Tilgjengelige felt:Venter på svarBOFH-unnskyldningerBakgrunnBakgrunnsfargeFeil GatewayFeil i forespørselenFeil kerberos-passord.Feil kerberos-brukernavn.BlankFant ikke basekatalog for grafikk '%s'.GrunnlinjeBeligaBursdagFant ikke blokk "%s" av programmet "%s".BlokkinnstillingerBlokktypeFetSnarveienes navn kan ikke være tommeSnarveierRammeRammetykkelse:RammerBeggeBunnUtforskPunktlisteCMSCRCCRL-distribusjonspunkterEgenskaper for c_elle...KalenderStilleKan ikke nullstille passord automatisk, kontakt din administrator.Kan ikke koble til IMAP-tjeneren: %sAvbrytAvbryt problemrapportKan ikke slette filen "%s".Kan ikke finne en temp-katalog.Kan ikke fortsette uten 'targetFile' parameter.Kan ikke slette katalogen "%s".Kan ikke slette, %d barn eksisterer.Kan ikke endre rekkefølgen, antallet oppføringer valgt for omsortering stemmer ikke med antallet lagrede oppføringer.Kan ikke sende meldingen til det spesifiserte nummeret.UtdragKategorierKategorier og etiketterKategoriKategorien eksisterer ikke.Kategorienes navn kan ikke være tomme.Katergori som det skal importeres til:MobiltelefonEgenskaper for celleLuft rundt innhold av celle:Egenskaper for celleLuft rundt cellen:MobiltelefonMidtstillDetaljer for sertifikatetRettningslinjer for sertifikatetOrdstyrerEndreEndre navn og adresse som mottakere ser når de leser og svarer på posten din.Skift antall kolonner som skal bli vist for utforsking og søke resultat.TegnSjek_k link...Kryss av for de operasjonene du vil utføre nå.Velg et passordVelg et brukernavnVelg handling:Velg hvordan du vil vise datoer:Velg stil for listetype (for nummererte lister)Klassedefinisjon for %s ble ikke funnet.KlartFjern MSOffice tagsFjern bruker: %sFjern brukerFjern brukerdataKlikk for å fortsetteClickatell via HTTPLukk vinduSkyerOverskyetSlå sammen sidelinjenSammenslåtte rammerFargeFargevelgerFargevalgKolonner:KolonnetitlerKombinerTegneserierKommandoKommandovinduAlternativer for kommando:Kommandoer:KommentarSjekker inn:NavnFirmaFerdigHelt kollapsetHelt utvidetSkriv melding (%s)DatamaskinerVilkårForskjeller i innstillingeneInnstillingene behøver oppdatering.Konfigurer %sBekreft passordKonfliktTilkobling mislyktes.Tilkobling mislyktes: Koblingen til offentlig nøkkeltjeneren feilet.Koblingen til offentlig nøkkeltjeneren feilet. Årsak: %s (%s)Koblingen til FTP-tjeneren mislyktes.Kontaktene ble lagt til adressebokenInnhold i '%s'FortsettKjeksKopiert snarvei: KopierKopier valgt områdeKopierer %s til %sElfenbenskystenKunne ikke kryptere melding med PGPKunne ikke signere melding med PGPKunne ikke kryptere meldingen med S/MIME.Kunne ikke signere meldingen med S/MIME.Kunne ikke legge til kontakt: %sTilkobling til LDAP-server feilet.Kunne ikke sjekke disponibel saldo. %sKlarte ikke å koble til tjeneren '%s' ved bruk av FTP: %sKunne ikke kopiere %s til %sKunne ikke lage distribusjonsliste. %sKunne ikke dekryptere PGP-melding.Kunne ikke dekryptere S/MIME melding.Klarte ikke å slette kontakt. %sKlarte ikke å slette distribusjonsliste. %sKlarte ikke å slette oppgraderingsscript for oppsett '%s'.Kunne ikke finne mottakers e-postadresse.Kunne ikke hente ut hele adresseboken.Kunne ikke ut hele distribusjonslisten.Kunne ikke hente ut hele listen med distribusjonslister.Kunne ikke laste inn strategi '%s'.Kunne ikke opprette katalogen '%s'.Kunne ikke hente ut offentlig nøkkel fra nøkkeltjeneren.Kunne ikke åpne %s.Kunne ikke åpne '%s' for skriving.Kan ikke åpne Maintenance_Task-modulen %sKunne ikke åpne katalogen '%s'.Kunne ikke lese %sKunne ikke nullstille passordet for den forespurte brukeren. Noen eller alle detaljene er feil. Forsøk igjen eller kontakt administratoren din hvis du behøver ytterligere hjelp.Kunne ikke hente ut ACLKunne ikke hente ut adressebok. %sKunne ikke hente ut distribusjonsliste. %sKunne ikke hente ut distribusjonsliste. %sKunne ikke hente ut informasjon om tjenerens funksjonsevnerKunne ikke tilbakestille konfigurasjonen.Kunne ikke slette katalogen '%s'.Kunne ikke lagre %s konfigurasjon.Kunne ikke lagre sikkerhetskopi av konfigurasjonen.Kunne ikke lagre sikkerhetskopi av konfigurasjonen: %sKunne ikke lagre oppgraderings-scriptet til oppsettet til: '%s'.Kunne ikke lagre sikkerhetskopien av konfigurasjonsfilen %s.Kunne ikke lagre konfigurasjonsfilen %s. Du kan enten benytte deg av en av mulighetene for å lagre data tilbake til %s eller kopiere koden under manuelt til %s.Kunne ikke utføre søk på LDAP tjeneren.Kunne ikke fjerne '%s'.Kunne ikke oppdatere kontakt. %sKunne ikke oppdatere distribusjonslisten. %sKunne ikke skrive konfigurasjon for '%s': %sKunne ikke finne Mozilla Sidebar. Sjekk at den er åpen.Brukeren '%s' ble gitt følgende rettigheter til mappen '%s': %sTalt tekstLandKurserOpprettOpprett en lenkeOpprett en nyOpprett undermapperOpprettetRettigheter for eierKredittkortnummerGjeldende faseGjeldende tidGjeldende URL erGjeldende værGjeldende utsikter: Gjeldende stilTilpass oppgaver som kjøres ved innlogging til %s.Klipp utKlipp ut valgt områdeKyprosDDDNS svikt eller en annen ukjent feilDNS feil eller annen feil (%s)DagligDataDataTre-utforskerDatoDato mottattDato valgDagSle_tt kolonneDesemberDesimaltallAvslåttReduser innrykkStandardStandard fargeStandardidentitetStandardrettigheterStandardrettigheterOpprett en eller fler kategorier for snarveiene dineDefinisjonerDeleger posisjonDelegertSlettSlett alleSlett snarveiSlett gruppeSlett rettighetSlett og fjern meldingerSlett celleSlett kolonneSlett nåværende kategorien?Slett eksisterende alternativ malFjern rettighetene til '%s'Fjern rettighetene til '%s' og alle underrettigheter?Slett radSlett valgt identitetSlett gjeldende kolonneSlett gjeldende radSlett denne kategorienSlette denne rettigheten og alle underrettigheter?Slettet snarvei: Slettet kategori: Slett oppgraderings-script for oppsett '%s'.LeveringstidDanmarkAvslå forespørselAvslå forespørsel for ledig-/opptattinformasjonBeskriv problemetFull beskrivelse:Detaljer (også i Horde's loggfil):Detaljer har blitt logget for administratoren.UtviklingDuggpunktDuggpunkt for den siste timen: Duggpunkt: Retning fra venstre mot høyreRetning fra høyre mot venstreKatalogVis 24-timers tider?VisningsvalgVis redigerings knapper når snarveier blir vist?Vis forvarsel (TAF)VisningsformatMelding om ordningIkke slettIkke åpne mainenance.php direkteKryss av her hvis den første raden inneholder feltnavnet:Last nedLast ned %sLast ned snarveien(e)Last ned generert konfigurasjon som PHP-script.Dra over 'Legg til snarvei' linken som er nedefor over til 'Snarvei' linjen din.Dra over 'Legg til snarvei' linken nedenfor over på 'Din personlige snarveilinje'NedtrekkslisteMedisinerE-postERRRedigerRedigere blokkRediger SnarveiRediger gruppeRediger rettigheterRediger adgangs-innstillingerRediger adgangs-innstillinger for %sRediger valg for:Rediger rettigheter for %sRediger rettigheter for %sUtdanningElement...EmE-postE-postadresseE-postadressene må stemme overens.E-post med bekreftelseEmotikonerTom melding.Tomt resultat.Tøm søkekriterierAktiver mulighet for å sette inn bilder fra bildegallerier i teksten?Aktivere høyreklikkmeny?SluttSluttårGjør editoren størreSkriv inn ett sikkerhetsspørsmål som du vil bli spurt om hvis du ønsker å nullstille passordet ditt, f.eks. 'hva er navnet på kjæledyret ditt?':Skriv inn URL til bildet herFeilFeil ved sending av svar: %sFeil med e-postmeldingen.Feil ved skriving til '%s'.Feil: FeilEuropaHvert 15. minuttHvert 2. minuttHvert 30. sekundHvert 5. minuttHver innloggingHver halvtimeHvert minuttEksempelverdier:KjørKjører:UtvidUtvid SidebarForventet handling feiletForventet ')'Forventet enkeltord eller søkekriterie i anførselstegnUtløpsdatoEksponentEkporter snarveierForgrunnsfargeOpplasting av oppsett via FTPUthenting av instillinger feilet.Tilkobling til LDAP-tjener feilet.Tilkobling til SMB-tjener feilet.Feilet ved kopiering fra "%s".Feilet ved kopiering til "%s".Feilet ved opprettelse av ny SASL-tilkobling.Feilet ved flytting til "%s".Pent værFalklandsøyeneFærøyeneFatal feil: FaxFebruarFøles somFøles som: Noen bygerNoen snøbygerFeltmatriseAntall filer: %s filAntall filer: %s filerFilbehandlerFilnavnFilvalgImporter filen:Last opp filerOpplasting av filer støttes ikke.FilterFørste halvmåneFørste kvartmåneFørste nivå vistFast forholdSnuFlytTåkeMappen %s eksisterer ikkeFontfargeMatFor nettlesere som ikke støtter bilderForbudtForvarsel (TAF)Antall dagers forvarsel (vær obs på at det returnerte forvarslet inneholder både dag og natt; en stor verdi her kan resultere i en vid blokk)Glemt passordet?SkjemaerSpådomType spådomSpådommerSpådommer 2ForaVideresendteFunnetFant programmene: %sFant katalogene:FrRammerLedig-/opptattinformasjonLedig-/opptattsvarLedig-/opptattforespørselSvar på ledig-/opptattforespørselFraFra Full beskrivelseFullmåneFullt navnGalleri du ønsker å hente bilde fraGalleri:Gateway Time-OutGenerer %s-konfigurasjonGenerert kodeGitt navnGå tilBorteSøk på GoogleGråtoneHellasGresk (ISO-8859-7)GrønlandGruppeadministrasjonGruppenavn kan ikke være tommeGrupperettigheterGrupperRettigheter for gjestRettigheter for gjestGjestebokTTHTMLHTMLArea nekter feigt å slette den siste cellen i en rad.HTMLArea nekter feigt å slette den siste kolonnen i tabellen.HTMLArea nekter feigt å slette den siste raden i tabellen.HTTP autentisering ikke funnet.HTTP StatusHTTP versjonen er ikke støttetHash-algoritmeDisMeldingshodeHøydeHjelpHjelp til bruk av tekstbehandlerHjelperHalvkuleHer er begynnelsen på filen:HøyHistorieoppføringer må ha navn som ikke er tommeHje_mHjemHjemmeadresseTelefon hjemmeHordeHorde/Kolab: Ugyldig %s XML-data funnet i melding %sHorde/Kolab: Ingen melding passer med objektet %sHorde/Kolab: Intet objekt av typen %s funnet i melding %sHorde/Kolab: Fjernet %s "%s"Horde/Kolab: Synkroniserte %s "%s"Horde/Kolab: Integrasjonsmotoren krever 'domxml' PHP-utvidelseHorde/Kolab: Kunne ikke opprette nytt XML-tre for objektet %sHorde/Kolab: Kunne ikke fjerne %s "%s": %sHorde/Kolab: Kunne ikke hente MIME-identifikator for delen av type %sHorde/Kolab: Kunne ikke synkronisere %s "%s": %sHorde/Kolab: Kunne ikke synkronisere delte ressurser: %sHorde/Kolab: Ukjent delt ressurs "%s"Horisontal linjeHorisontal paddingHorisontal:Hvordan kom du hit? (Vennligst rapporter!)Hvor mange kolonner ønsker du å slå sammen?Hvor mange felt (kolonner) er det?Hvor mange rader ønsker du å slå sammen?FuktighetFuktighet: HumoristerOpprettelse av IMAP-postboks feilet: %sSletting av IMAP-postboksen feilet: %sOpprettelse av kvote på IMAP-postboks feilet: %sIP-adresseIP-adresse ikke tilgjengelig.IP-adresse ikke innenfor tilatte CIDR-blokk.Brudd på IP lockdown.S_ett inn ny rad førIslandKun ikonerIkoner for %sIkoner med tekstIdentitetens navn:Hvis den ikke vises riktig, %s for å åpne i nytt vindu.Hvis du ikke ser noen ikoner når du benytter Internet Explorer, kan det hende du trenger å krysse av denne boksen for å skru av PNG-gjennomsiktighet.Hvis du ser denne meldingen men intet bilde, kan det hende at bildet du vil laste opp ikke kan vises i din nettleser.Forhåndsvisning av bilde:URL til bildetURL til bildet:Bilde fra galleriBilde fra galleri:Opplasting av bildeBilderImporterImporter snarveierImportering, steg %dImporter/EksporterImporterte felt: %sImporterte felt:Under arbeid_Sett inn rad etterFeil handlingskode oppgitt.Ugyldig brukernavn og/eller passord.Feil brukernavn eller alternativ adresse. Vennligst forsøk igjen eller kontakt systemadministratoren din for ytterligerere hjelp.Øk innrykkIndividuelle brukereInfoInformasjonSett inn k_olonne etterSett inn bildeSett inn tabellSett inn weblinkSett inn _kolonne førSett inn en ny kolonne etter den gjeldendeSett inn en ny kolonne før den gjeldendeSett inn en ny rad etter den gjeldendeSett inn en ny rad før den gjeldendeSett inn linjeskift etter den gjeldende nodenSett inn linjeskift før den gjeldende nodenSett inn alternativ malSkriv inn en e-post adresse du ønsker å motta det nye passordet på:Sett inn celle etterSett inn celle etterSett inn kolonne etterSett inn kolonne førSett inn meldingerSett inn linjeskift etterSett inn linjeskift førSett inn rad etterSett inn rad førSett inn det påkrevde svaret til følgende sikkerhetsspørsmål:Sett inn/redigere bildeSett inn/redigere linkIkke nok kreditt for å kunne sende til distribusjonslisten.Ikke nok kreditt.IntegerInteger listeIntern tjener feilInternet ExplorerInternet Explorer brukere er nødt til å eksportere snarveiene sine ved å gå til 'Fil' menyen og deretter velge 'Importer og eksporter'.Ugyldig handling valgt for denne komponenten.Ugyldig UDH (User Data Header).Ugyldig program.Ugyldig batch IDUgyldig data sendt.Ugyldig mottaker adresse.Ugyldig filformatUgyldig msg_type.Ugyldig eller manglende api_id.Ugyldig eller manglende parametere.Ugyldig forelderrettighet.Ugyldig protokoll.Ugyldig mottaker: '%s'Ugyldig delt objektUgyldig kildeadresseUgyldig unicode data.InnholdIsolerte tordenstormerUtgiverKursivJanuarJuliJuniJusterMidtstillBlokkjusterVenstrejusterHøyrejusterBeholde orginal?Kerberos-tjeneren avviste autentiseringen.Kernel-nybegynnereNøkkelgenereringNøkkelfingeravtrykkNøkkellengdeNøkkeltypeNøkkelbrukNøkkel eksisterer allerede på offentlig nøkkeltjeneren.BarnUt_seendeSpråkSiste haltimeSiste kvarterSiste oppdatering:Siste innlogging: %sSiste innlogging: %s fra %sSiste innlogging: aldriLovUtseendeØnskes ingen rammer lar du feltet være tomtVenstreVenstre hodeVenstre verdierLengde er påkrevdLett duskregnLett regnLett formiddagsregnLett ettermiddagsregnLette regnbygerLett regn med tordenLett snøfallLette snøbygerLimerickLinkLink peker til:Link e-post adressen til 'skriv ny'-side ved visningLinkerLinux CookieList - brukeren kan se mappenList opp databaserEmner i HjelpList opp tabellerMulighet for å liste brukere er deaktivert.LitteraturLaster biblioteker...Laster...Lokal tid:Språk og tidLokasjonLogg innLogg utInnloggingsoppgaverInnlogging feilet fordi brukernavnet eller passordet du skrev inn var feil.Innlogging feilet.Lang tekstKjærlighetLavSmå greske bokstaverSmå latinske bokstaverSmå romerske tallMMMS-TNEF-vedlegget inneholdt ingen data.MagiInnboksOpprett len_ke...Vedlikehold listen over kategorier du må merke deler med, og fargersom assosieres med de respektive kategoriene.Marker med sett-/usettflaggMarker med andre flagg (f.eks. viktig/ubesvart)SammenligneSamsvarende feltMaks tillatt kreditt.Maks meldingsdeler overskredet.Maks temperatur de siste 24 timer: Maks temperatur de siste 6 timer: Maks lengdeMaiMøteavlysningMøteinformasjonMøteinnkallelseMøtesvarMøteoppdateringForesørsel om møteoppdateringMenymodus:Flett sammen cellerMeldingMeldingen ble verifisert, men sertifikatet til den som signerte ble ikke verifisert.Melding gått ut på dato.MeldingstypeMetar-blokk ikke tilgjengelig.Metar-blokk ikke tilgjengelig. Detaljer har blitt loggført for administratoren.MetodeMetoden '%s' er ikke definert.Metoden er ikke tillattMetriskMidtMIME-typeMinimum temperatur de siste 24 timer: Minimum temperatur de siste 6 timer: SpeilDiverseMangler PEAR-pakke HTTP_Request.Mangler oppsett. Du må generere det nå hvis du vil bruke dette programmet.Manglende meldings-IDMangler nødvendig PEAR-pakke Mail.Mangler session-ID.ManMobil e-postModeratSist modifisertEndre URLModulusMåned og årMånedtligMånefaserStort sett klartStort sett overskyetStort sett solFlyttFlytt nedFlytt til venstreFlytt til høyreFlytt oppFlytt nedFlytt oppFlyttet permanentFlyttet snarvei: Flyttet kategori: MozillaMozilla brukere er nødt til å eksporte snarveien sine ved å gå inn i 'Bookmark Manager' og velge 'Export fra 'Tools' menyen.Fler valgFlervalgMin kontoMine snarveierMin portalMitt portalutseendeNei, jeg godtar IKKE.NavnBehøver handlingNederlandNettverkAldriNy snarveiNy kategoriNymåneNy underkategoriNytt brukernavn (valgfritt)Nytt vindu (_tomt)NyheterNyhetsgruppeNesteNeste sideNeste faseNeste valgNattNeiIngen snarveier funnetIkke noe innholdIngen tilgjengelige oppsettsdata å vise forskjeller med.Ingen tilgjengelig strategi for å lage ISO-filer.Ingen blokk finnes på den forespurte posisjonen.Ikke snarveier å viseIngen kalendernavn oppgitt for MCAL-autentisering.Ingen endring.Ingen barenerettigheter kan legges til under dette nivået.Ingen barn kan legges til denne rettigheten.Ingen oppsettsinformasjon spesifisert for %s.Ingen oppsettsinformasjon spesifisert for FTP VFS.Ingen oppsettsinformasjon spesifisert for SQL VFS.Ingen oppsettsinformasjon spesifisert for SQL-File VFS.Tom kreditt.Ingen destinasjon oppgitt.Fant ingen ikoner.Ingen lokalitet spesifisert.Svar til listenIngen meldingerNavn ikke spesifisert.Tall ikke spesifisert.Ingen støtende spådommerPassord er ikke spesifisert for HTTP-autentisering.Passord er ikke spesifisert for IMAP -autentisering.Passord er ikke spesifisert for Kerberos-autentiseringPassord er ikke spesifisert for LDAP-autentiseringPassord er ikke spesifisert for Login-autentiseringPassord er ikke spesifisert for PASSWD-autentiseringPassord er ikke spesifisert for SMB-autentiseringIngen reglerIngen siderBrukernavn og/eller passord er ikke sendt.Ingen gyldige XML-data returnertIngen verdier. Ikke-deltagerIkke autorativ informasjonIngenNordre halvkuleNorgeIkke akseptertIkke etterIkke førIkke funnetIkke implementertIkke endretIkke en katalogIkke implementert.Ikke sattIkke støttet.NotaterObs!NovemberTallAntall KlikkAntall tegnAntall kolonnerAntall kolonner i oppsummeringsvisningen:Antall raderIngen tall spesifisert for oppdatering i distribusjonslisten.OKObjektSkaper av objektetTillatelser for skaper av objektetOktalKontorKun IMAP-tjenere støtter delte mapper.Kun støtende spådommerKun en epostadresse tillatt.Bare eieren eller administratoren kan forandre eierforhold eller eier for en delt kategori.Åpne i nytt vinduÅpne vinduer i et eget vindu?Åpner denne lenken i et nytt vinduValgfri deltakerValgValg for %sValg:EllerNummerert listeOrganisasjonOrganisasjonsenhetOrganisererOriginal programmalAnnen informasjonAndre valgEierrettigheterPAM-autentisering er ikke tilgjengelig.PGP digital signaturPGP-krypter meldingPGP offentlig nøkkelPGP signert/kryptert dataPHP-kodeLett regn på ettermiddagenRegnbyger på ettermiddagenSnø på ettermiddagenSnøbyger på ettermiddagenTordenstorm på ettermiddagenPakistanPalauPanamaParaguayUfullstendig innholdDelvis skyetPassordFeil passordNødvendig passord for RADIUS-autentiseringPassord med bekreftelsePassord:Passord: Passord stemmer ikke overensLim innStiDu må betale for detteMenneskerProsentUtfør vedlikeholdsoperasjonerUtfør vedlikeholdsoperasjoner ved innlogging?RettighetRettigheten '%s' ikke slettet.Adgangs-innstillingerRettighetsadministrasjonRettighet forPersonlig informasjonTelefonVennligst bekreft at du vil fjerne dette elementet:Vennligst bekreft at du vil avlenke dette elementet.Vennligst skriv inn en måned og et år.Vennligst skriv inn et navn for denne nye kategorien:Vennligst skriv inn en gyldig IP-adresse.Vennligst skriv inn et gyldig tidspunkt.Vennligst skriv inn navnet på den nye kategorien:Vennligs endre navnet som detteVennligst gi et sammendrag av problemet.Vennlist skriv inn brukernavn og passordVennligst se over den følgende informasjonen, velg så en handling fra menyen nedenunder.Vennligst velg en handling fra menyen nedenunder.Vennligst skriv inn det nye kategorinavnet:PolenPolitikkStemmeavgivningerFørtilstand feiletPrefs_ldap: Nødvendig LDAP-utvidelse ikke funnet.Prefs_session: Nødvendig sesjonsutvidelse ikke funnet.PresentasjonerTrykkTrykk ved havnivå:Trykk:ForhåndsvisningForhåndsvis bildet i et nytt vinduForrige sideForrige valgPrivat nøkkelProblemProblembeskrivelseProxy innlogging er påkrevdOffentlig nøkkelOffentlig nøkkelalgoritmeOffentlig/privat nøkkelpar ble ikke generert.Puerto RicoKatarRSA offentlig nøkkel (%d bit)RadiovalgRegnTidlig regnSent regnRegnbygerRegn og snøRegn til snøTilfeldig spådomForholdLesLes meldingerOmadresser alleOmadresser til %sRepeterer din forrige handlingFrisk opp portalvisning:RegexHusk informasjonen om ledig/opptattFjerntjenereFjernFjern blokkFjern kolonneFjern formatteringFjern fra min kalenderFjern parFjernFjern brukerFjern bruker: %sLag et nytt navn på denne kategorienSvar sendt.Svar at meldingen ikke støttesSvar med ledig/opptatt for de neste to månedene.Svar med den forespurte ledig/opptatt-informasjonen.Svar: %sRapporterEtterspurt enhet er før storTiden gikk ut for etterspørselenStørrelse på etterspurt URI er for storEtterspurt rekkevidde holder ikke målNødvendig '%s' ikke spesifisert i %s-oppsett.Nødvendig '%s' ikke spesifisert i VFS-oppsett.Nødvendig '%s' ikke spesifisert i oppsett.Obligatorisk deltagerNullstillNullstill innholdNullstill passordetNullstill passordet dittResultaterSøkeresultat:Tilbake til ValgGjenforeningTilbakestill oppsettValg for rikteksteditorGåterHøyreHøyre hodeHøyre verdierRa_degenskaper...RolleRomaniaRoter 180Roter mot venstreRoter mot høyreRadegenskaperRadegenskaperRader:ReglerLøpRwandaS/MIME-kryptert meldingSASL-autentisering er ikke tilgjengelig.SMS-utsendingSaSamoaSan MarinoSatellittilbyderLagreLagre %sLagre '%s'Lagre valgLagret %s-oppsettLagret skript for oppgradering av oppsett til '%s'.VitenskapSøkSøk i snarveierSøkemotorerSøkeresultatSøker etter Horde-programmer i %sSøker etter gettext-binærfiler...Se andreVelg alleVelg filerVelg ingenVelg en datoVelg en gruppe å legge tilVelg en ny eierVelg en tjenerVelg en bruker å legge tilVelg alle datokomponenter.Velg et objektVelg karakterene du trenger fra boksen under. Du kan deretter kopiere og lime dem inn fra tekstfeltet.Velg datoskilletegn:Velg datoformat:Velg tidsskilletegn:Velg tidsformat:Velg to samsvarende felt.Velg ønsket språk:Velg: %s | %s]Send siste informasjonSend problemrapportSend SMSSensor:SeptemberSerienummerTjenesten er dessverre utilgjengeligSesjons-ID utgått på dato.SettSett adgangs-innstillingerStill inn ditt foretrukne språk, tidssone- og datovalg.Still inn ditt oppstartsprogram, fargeskjema, sideoppfriskning og andre visningsvalg.OppsettHandelKort sammendragSkal listen din over internett snarveier være åpen når du logger inn?VisVis plukkerVis menylinjen for tabelloperasjoner?Vis menyen for %s på venstre side?Vis dialog for celleegenskaper for tabellVis dialog for tabellegenskaperVis dialog for tabellradegenskaperVis dialog for bildeegenskaperVis opplastingBygerTidlige bygerSene bygerKrympRegistrerRegistrer hvis ikke registrertSignaturSignaturalgoritmeSingaporStørrelseHopp over vedlikeholdSlovakiaSloveniaSnøSnøbygeSnøbygerSnøbyger tidlig på dagenSnøbyger sent på dagenSnødybde:SomaliaSorteringsrekkefølgeKildeadresseSørlige halvkuleMellomromMellomromSpaniaSpamSpesialtegninntastingSplitt celleSplitt kolonneSplitt radSportSri LankaStandardStar TrekStartBegynnelsesårStat eller provinsStatusLagringsformatGateadresseStrenglisteUnderkatalog '%s' ikke funnet.EmneEmne offentlig nøkkelinfoSendUndertekstSuksessLa '%s' til systemet.Slettet data for bruker '%s' fra systemet.Slettet '%s'.Fjernet '%s' fra systemet.Tilbakestilte oppsettet. Last på nytt for å se endringer.Lagret sikkerhetskopi av oppsettet.Lagret sikkerhetskopi av oppsettet til filen %s.Oppdaterte '%s'Skrev '%s'SudanSammendragSoloppgangSolnedgangSoloppgangSoloppgang/solnedgangSoloppgang:SolnedgangSolnedgang:OvertekstEtternavnSwazilandSverigeBytter protokollerSveitsSyntaksfeil i søkeordTordenstormTordenstormerTSV-filTabellTabellegenskaperTabellegenskaperTaiwanTajikistanMål:OppgaverTelefonnummerTemperaturTemperatur:MalMal '%s' ikke funnet.Administrasjon av malerMal som skal brukes under visning av internett snarveier:Omadresser midlertidigGodta forespørsel foreløpigGodta foreløpigTekstKun tekstLikestill tekstTeksttoppTailandTakk for at du brukte systemet.FTP-utvidelsen er ikke tilgjengelig.Valgvinduet er lukket. Avslutter.Kalenderdata er ugyldigID-nummeret til kontakten ble ikke spesifisert, var blank eller ble ikke funnet i databasen.Kontakten er lagt til din adressebok.Hendelsen ble lagt til i din kalender.Handlingen har blitt lagt til din liste over handlinger.Brukerens ledig/opptatt informasjon ble lagret.Det er ingen snarveien i denne kategorienDet er ingen tilgjengelige valg.Det oppstod en feil under kopiering av snarveien: %sDet oppstod en feil under sletting av snarveien: %sDet oppstod en feil under sletting av kategorien: %sDet oppstod et problem under flytting av snarveien: %sDet oppstod et problem når kategorien %s skulle flyttesDet oppstod en feil når jeg skulle legge til snarveien: %sDet oppstod en feil når jeg skulle legge %s til i kategorienDet oppstod en feil under forsøk på å vise denne meldingsdelenDet oppstod en feil under import av kontaktdata.Det oppstod en feil under import av hendelsen: %s.Det oppstod en feil under import av iCalendar-data.Det oppstod en feil ved importering av hendelsen: %s.Det oppstod en feil ved importering av brukerens ledig/opptatt-informasjon: %sDet oppstod en feil i oppsettsskjemaet. Kanskje du utelot et obligatorisk felt?Det oppstod en feil når jeg skulle lagre snarveien: %sDenne IMAP-tjeneren støtter ikke delte mapper.Den forespurte oppgaven er ikke stottet.Den forespurte oppgaven er ikke implementert.Dette ser ikke ut som et gyldig rar-arkiv.Dette ser ikke ut som et gyldig zip-arkiv.Dette ser ikke ut som et gyldig kortnummer.Dette feltet er obligatorisk.Dette feltet må være et gyldig tall.Dette tallet må være minst 1.Dette må være et tall.TidTidsformatTidsvalgTittelTilFor å ha muligheten til å legge til internett snarveier raskt direkte fra browseren:I dagI morgenToppTotaltOversattOversettelserTyrkiaTurkmenistanURLURL:UgandaUkrainaKan ikke koble til SQL-serveren.Kan ikke koble til med SSL.Kan ikke pakke ut data.Kan ikke åpne komprimert arkiv.Kan ikke oversette dette Word-dokumentetUatorisertStrek underAngre endringerTilbakestiller din siste handling.UspesifisertUhåndtert komponent av typen: %sUkjentUkjent (%s)Ukjent kommando: %sUkjent brukernavn eller passord.Uten navnDenne media typen er ikke støttetIkke oversattOppdaterOppdater %sOppdater status på avsendereOppdater brukerOppdaterte %s.Oppdaterte '%s'Last oppBruk:Bruk proxyBrukernavnBrukernavnet '%s' eksisterer allerede.Brukernavn:Brukernavn:BrukereFerieVerdierVariabelVersjonVersjonskontrollVis %sVis RapportVis hendelseVis handlingerAdvarselAdvarsel:WebsideUkentligVelkommenVelkommen til %sVelkommen, %sNår du surfer så vil du ha muligheten for å legge til favorittsidene dine ved å klikke på din nye 'Legg til snarvei' snarvei.Helt feltSøkVindVind tidlig på dagenVind:Vind:VisdomØnskelisteArbeidFirmaadresseFirmatelefonÅÅÅÅÅÅårligYemenJaDu lager en toppnivåmappe.Du gir nytt navn til mappen: Du har ikke adgang i denne kategorienDu er nå logget ut.Du har skrevet inn en gyldig verdi.Du må beskrive problemet før du kan sende en problemrapport.Din %s tilkobing har gått ut. Vennligst log inn igjen.Din epostadresseDin avsenderadresse:Din informasjonFullt navnNettleseren din støtter ikke denne funksjonen.Nettleseren din støtter ikke denne utskiftsoperasjonen. Trykk Kontroll/Opsjon + P for å skrive ut.Din standardidentitet:Ditt fulle navn:Dine valg har blitt oppdatert[Problemrapport][linje %s av %s]HjelpLogg utValgadresseboken feil har oppstått:kalenderroligKlikkKlikkferdigfeiletfilfunnet:fra %s (%s) på %s %sinlinelinjer]navnikke endretikke funnetikke implementertikke enda implementertnotisblokkprosentstigendestødigoppgavelisteskriv passordet to ganger for å bekreftesamletikke navngittoppdatertbrukervalgvCardw:trean-1.0.3/locale/nb/LC_MESSAGES/trean.po0000664000175000017500000004473712171337643016052 0ustar janjan# Norwegian Bokmal translations for Trean package. # Copyright 2005-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Trean package. # Odd Marthon Lende , Fri, April the 1st, 2005 # msgid "" msgstr "" "Project-Id-Version: Trean 0.1-cvs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-03-31 20:48+0100\n" "PO-Revision-Date: 2005-04-01 16:25+0100\n" "Last-Translator: Odd Marthon Lende \n" "Language-Team: Norwegian Bokmål \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: data.php:67 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "%d Mapper og %d Snarveier ble importert." #: templates/reports/http-status.inc:127 #, php-format msgid "%s Bookmarks" msgstr "%s Snarveier" #: templates/browse/subcategories.inc:47 #, php-format msgid "%s Categories" msgstr "%s Kategorier" #: scripts/upgrades/2005-03-15_move_to_horde_share.php:123 lib/base.php:61 #, php-format msgid "%s's Bookmarks" msgstr "%s's Snarveier" #: edit.php:146 #, php-format msgid "'%s' was not renamed: %s." msgstr "'%s' ble ikke skiftet navn på: %s." #: lib/Block/bookmarks.php:47 config/prefs.php.dist:33 msgid "1 Line" msgstr "Første linje" #: templates/reports/http-status/1xx.inc:13 msgid "1xx Response Codes" msgstr "1xx Respons Koder" #: templates/reports/http-status.inc:59 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx Respons Koder (%s)" #: lib/Block/bookmarks.php:46 config/prefs.php.dist:32 msgid "2 Line" msgstr "Andre linje" #: templates/reports/http-status/2xx.inc:13 msgid "2xx Response Codes" msgstr "2xx Respons Koder" #: templates/reports/http-status.inc:65 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx Respons Koder (%s)" #: lib/Block/bookmarks.php:45 config/prefs.php.dist:31 msgid "3 Line" msgstr "Tredje Linje" #: templates/reports/http-status/3xx.inc:28 msgid "3xx Response Codes" msgstr "3xx Respons Koder" #: templates/reports/http-status.inc:76 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx Respons Koder (%s)" #: templates/reports/http-status/4xx.inc:24 msgid "4xx Response Codes" msgstr "4xx Respons Koder" #: templates/reports/http-status.inc:87 #, php-format msgid "4xx Response Codes (%s)" msgstr "4xx Respons Koder (%s)" #: templates/reports/http-status/5xx.inc:13 msgid "5xx Response Codes" msgstr "5xx Respons Koder" #: templates/reports/http-status.inc:109 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx Respons Koder (%s)" #: lib/Trean.php:197 msgid "Accepted" msgstr "Akseptert" #: lib/Trean.php:170 msgid "Add" msgstr "Legg til" #: add.php:70 msgid "Add Bookmark" msgstr "Legg til snarvei" #: templates/add/add.inc:12 msgid "Add a new bookmark" msgstr "Legg til ny snarvei" #: templates/add/add.inc:68 msgid "Add to Bookmarks" msgstr "Legg til snarvei" #: templates/browse/bookmarks.inc:95 templates/browse/subcategories.inc:55 msgid "All" msgstr "Alle" #: lib/Trean.php:27 msgid "An error occured listing categories: %s" msgstr "En ukjent feil oppstod under listing av kategoriene: %s" #: lib/Trean.php:52 #, php-format msgid "An error occurred counting categories: %s" msgstr "En feil oppstod under telling av kategoriene: %s" #: templates/search/search.inc:29 msgid "And" msgstr "Og" #: templates/search/search.inc:38 msgid "Any Part of field" msgstr "Hvilken som helst del av feltet" #: templates/browse/bookmarks.inc:40 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "Er du sikker på at du vil slette valge snarveier?" #: templates/browse/subcategories.inc:23 msgid "Are you sure you want to delete the selected categories?" msgstr "Er du sikker på at du vil slette valgte kategorier?" #: perms.php:50 msgid "Attempt to edit a non-existent share." msgstr "Du prøvde å redigere en delt-kategori som ikke eksisterte." #: lib/Trean.php:229 msgid "Bad Gateway" msgstr "Feil Gateway" #: lib/Trean.php:209 msgid "Bad Request" msgstr "Feil i forespørselen" #: lib/Bookmarks.php:53 msgid "Bookmark names must be non-empty" msgstr "Snarveienes navn kan ikke være tomme" #: data.php:101 lib/Block/bookmarks.php:3 msgid "Bookmarks" msgstr "Snarveier" #: browse.php:80 lib/Trean.php:169 msgid "Browse" msgstr "Utforsk" #: templates/edit/footer.inc:4 msgid "Cancel" msgstr "Avbryt" #: templates/browse/subcategories.inc:47 templates/browse/browse.html:2 msgid "Categories" msgstr "Kategorier" #: templates/edit/edit.inc:58 templates/add/add.inc:36 #: lib/Block/bookmarks.php:38 msgid "Category" msgstr "Kategori" #: lib/Trean.php:74 msgid "Category does not exist." msgstr "Kategorien eksisterer ikke." #: lib/Bookmarks.php:33 msgid "Category names must be non-empty" msgstr "Kategorienes navn kan ikke være tomme." #: templates/data/import.inc:12 msgid "Category to import into:" msgstr "Katergori som det skal importeres til:" #: config/prefs.php.dist:11 msgid "Change the number of columns to display in browse and search results." msgstr "" "Skift antall kolonner som skal bli vist for utforsking og søke resultat." #: templates/search/search.inc:25 msgid "Combine" msgstr "Kombiner" #: config/prefs.php.dist:43 msgid "Completely collapsed" msgstr "Helt kollapset" #: config/prefs.php.dist:45 msgid "Completely expanded" msgstr "Helt utvidet" #: lib/Trean.php:218 msgid "Conflict" msgstr "Konflikt" #: lib/Trean.php:193 msgid "Continue" msgstr "Fortsett" #: edit.php:124 msgid "Copied bookmark: " msgstr "Kopiert snarvei: " #: templates/browse/bookmarks.inc:116 msgid "Copy" msgstr "Kopier" #: lib/Trean.php:196 msgid "Created" msgstr "Opprettet" #: templates/reports/http-status/error.inc:18 msgid "DNS Failure or Other Error" msgstr "DNS svikt eller en annen ukjent feil" #: templates/reports/http-status.inc:119 #, php-format msgid "DNS Failure or Other Error (%s)" msgstr "DNS feil eller annen feil (%s)" #: templates/add/nocategories.inc:9 msgid "Define one or more categories for your bookmarks" msgstr "Opprett en eller fler kategorier for snarveiene dine" #: templates/browse/bookmarks.inc:107 templates/browse/subcategories.inc:59 msgid "Delete" msgstr "Slett" #: templates/reports/http-status/4xx.inc:28 #: templates/reports/http-status/error.inc:18 msgid "Delete All" msgstr "Slett alle" #: templates/edit/edit.inc:51 msgid "Delete Bookmark" msgstr "Slett snarvei" #: templates/browse/javascript.inc:29 msgid "Delete current category?" msgstr "Slett nåværende kategorien?" #: templates/browse/bookmarks.inc:81 msgid "Delete this Category" msgstr "Slett denne kategorien" #: edit.php:36 edit.php:77 msgid "Deleted bookmark: " msgstr "Slettet snarvei: " #: edit.php:172 msgid "Deleted category: " msgstr "Slettet kategori: " #: templates/search/search.inc:20 templates/edit/edit.inc:17 #: templates/add/add.inc:31 msgid "Description" msgstr "Full beskrivelse:" #: config/prefs.php.dist:10 msgid "Display Options" msgstr "Visningsvalg" #: config/prefs.php.dist:55 msgid "Display edit buttons when displaying Bookmarks?" msgstr "Vis redigerings knapper når snarveier blir vist?" #: templates/data/import.inc:27 msgid "Download My Bookmarks" msgstr "Last ned snarveien(e)" #: templates/add/add.inc:63 msgid "Drag the 'Add to Bookmarks' link below onto your 'Links' Bar" msgstr "" "Dra over 'Legg til snarvei' linken som er nedefor over til 'Snarvei' linjen " "din." #: templates/add/add.inc:61 msgid "Drag the 'Add to Bookmarks' link below onto your 'Personal Toolbar'" msgstr "" "Dra over 'Legg til snarvei' linken nedenfor over på 'Din personlige " "snarveilinje'" #: templates/browse/bookmarks.inc:101 msgid "Edit" msgstr "Rediger" #: edit.php:210 msgid "Edit Bookmark" msgstr "Rediger Snarvei" #: perms.php:241 msgid "Edit Permissions" msgstr "Rediger adgangs-innstillinger" #: perms.php:244 #, php-format msgid "Edit Permissions for %s" msgstr "Rediger adgangs-innstillinger for %s" #: templates/reports/http-status/error.inc:15 msgid "Errors" msgstr "Feil" #: lib/Trean.php:226 msgid "Expectation Failed" msgstr "Forventet handling feilet" #: templates/data/import.inc:26 msgid "Export Bookmarks" msgstr "Ekporter snarveier" #: templates/data/import.inc:11 msgid "File to import:" msgstr "Importer filen:" #: config/prefs.php.dist:44 msgid "First level shown" msgstr "Første nivå vist" #: lib/Trean.php:212 msgid "Forbidden" msgstr "Forbudt" #: lib/Trean.php:204 msgid "Found" msgstr "Funnet" #: lib/Trean.php:231 msgid "Gateway Time-out" msgstr "Gateway Time-Out" #: lib/Trean.php:219 msgid "Gone" msgstr "Borte" #: templates/reports/list.inc:5 templates/reports/http-status.inc:56 #: templates/reports/http-status/2xx.inc:13 #: templates/reports/http-status/3xx.inc:28 #: templates/reports/http-status/4xx.inc:24 #: templates/reports/http-status/5xx.inc:13 #: templates/reports/http-status/1xx.inc:13 #: templates/reports/http-status/error.inc:15 templates/edit/edit.inc:39 msgid "HTTP Status" msgstr "HTTP Status" #: lib/Trean.php:232 msgid "HTTP Version not supported" msgstr "HTTP versjonen er ikke støttet" #: templates/data/import.inc:16 msgid "Import" msgstr "Importer" #: data.php:91 templates/data/import.inc:1 msgid "Import Bookmarks" msgstr "Importer snarveier" #: lib/Trean.php:176 msgid "Import/Export" msgstr "Importer/Eksporter" #: lib/Trean.php:227 msgid "Internal Server Error" msgstr "Intern tjener feil" #: templates/add/add.inc:62 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/data/import.inc:9 msgid "" "Internet Explorer users will need to export their current Favorites by going " "to the 'File' menu and selecting 'Import and Export'." msgstr "" "Internet Explorer brukere er nødt til å eksportere snarveiene sine ved å gå " "til 'Fil' menyen og deretter velge 'Importer og eksporter'." #: lib/Trean.php:220 msgid "Length Required" msgstr "Lengde er påkrevd" #: templates/search/search.inc:35 msgid "Match" msgstr "Sammenligne" #: lib/Trean.php:214 msgid "Method Not Allowed" msgstr "Metoden er ikke tillatt" #: templates/browse/bookmarks.inc:109 templates/browse/subcategories.inc:60 msgid "Move" msgstr "Flytt" #: lib/Trean.php:203 msgid "Moved Permanently" msgstr "Flyttet permanent" #: edit.php:101 msgid "Moved bookmark: " msgstr "Flyttet snarvei: " #: edit.php:193 msgid "Moved category: " msgstr "Flyttet kategori: " #: templates/add/add.inc:60 msgid "Mozilla" msgstr "Mozilla" #: templates/data/import.inc:8 msgid "" "Mozilla users will need to export their current Bookmarks by going into " "'Bookmark Manager' and selecting 'Export' from the 'Tools' menu." msgstr "" "Mozilla brukere er nødt til å eksporte snarveien sine ved å gå inn i " "'Bookmark Manager' og velge 'Export fra 'Tools' menyen." #: lib/Trean.php:202 msgid "Multiple Choices" msgstr "Fler valg" #: lib/Trean.php:78 lib/Block/bookmarks.php:29 lib/Block/bookmarks.php:65 msgid "My Bookmarks" msgstr "Mine snarveier" #: templates/browse/bookmarks.inc:78 lib/Block/bookmarks.php:70 msgid "New Bookmark" msgstr "Ny snarvei" #: templates/browse/bookmarks.inc:79 templates/add/nocategories.inc:4 msgid "New Subcategory" msgstr "Ny underkategori" #: templates/search/results_none.inc:3 msgid "No Bookmarks found" msgstr "Ingen snarveier funnet" #: lib/Trean.php:199 msgid "No Content" msgstr "Ikke noe innhold" #: lib/Block/bookmarks.php:100 msgid "No bookmarks to display" msgstr "Ikke snarveier å vise" #: lib/Trean.php:198 msgid "Non-Authoritative Information" msgstr "Ikke autorativ informasjon" #: templates/browse/bookmarks.inc:96 templates/browse/subcategories.inc:56 msgid "None" msgstr "Ingen" #: lib/Trean.php:215 msgid "Not Acceptable" msgstr "Ikke akseptert" #: lib/Trean.php:213 msgid "Not Found" msgstr "Ikke funnet" #: lib/Trean.php:228 msgid "Not Implemented" msgstr "Ikke implementert" #: lib/Trean.php:206 msgid "Not Modified" msgstr "Ikke endret" #: config/prefs.php.dist:22 msgid "Number of columns to display in browse and search results:" msgstr "Antall kolonner i oppsummeringsvisningen:" #: lib/Trean.php:195 msgid "OK" msgstr "OK" #: perms.php:62 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "" "Bare eieren eller administratoren kan forandre eierforhold eller eier for en " "delt kategori." #: config/prefs.php.dist:64 msgid "Open links in a new window?" msgstr "Åpne vinduer i et eget vindu?" #: templates/search/search.inc:28 msgid "Or" msgstr "Eller" #: config/prefs.php.dist:9 msgid "Other Options" msgstr "Andre valg" #: lib/Trean.php:201 msgid "Partial Content" msgstr "Ufullstendig innhold" #: lib/Trean.php:211 msgid "Payment Required" msgstr "Du må betale for dette" #: templates/browse/bookmarks.inc:85 msgid "Permissions" msgstr "Adgangs-innstillinger" #: templates/browse/javascript.inc:19 msgid "Please enter the name of the new category:" msgstr "Vennligst skriv inn navnet på den nye kategorien:" #: templates/browse/javascript.inc:39 msgid "Please modify the name accordingly" msgstr "Vennligs endre navnet som dette" #: lib/Trean.php:221 msgid "Precondition Failed" msgstr "Førtilstand feilet" #: lib/Trean.php:216 msgid "Proxy Authentication Required" msgstr "Proxy innlogging er påkrevd" #: templates/reports/http-status/3xx.inc:32 msgid "Redirect All" msgstr "Omadresser alle" #: templates/edit/edit.inc:46 msgid "Redirect to %s" msgstr "Omadresser til %s" #: templates/browse/bookmarks.inc:82 msgid "Rename this Category" msgstr "Lag et nytt navn på denne kategorien" #: reports.php:18 lib/Trean.php:172 msgid "Reports" msgstr "Rapporter" #: lib/Trean.php:222 msgid "Request Entity Too Large" msgstr "Etterspurt enhet er før stor" #: lib/Trean.php:217 msgid "Request Time-out" msgstr "Tiden gikk ut for etterspørselen" #: lib/Trean.php:223 msgid "Request-URI Too Large" msgstr "Størrelse på etterspurt URI er for stor" #: lib/Trean.php:225 msgid "Requested range not satisfiable" msgstr "Etterspurt rekkevidde holder ikke mål" #: templates/add/add.inc:47 msgid "Reset" msgstr "Nullstill" #: lib/Trean.php:200 msgid "Reset Content" msgstr "Nullstill innhold" #: templates/edit/footer.inc:3 templates/add/add.inc:46 msgid "Save" msgstr "Lagre" #: search.php:14 templates/search/search.inc:46 lib/Trean.php:171 msgid "Search" msgstr "Søk" #: templates/search/search.inc:5 msgid "Search Bookmarks" msgstr "Søk i snarveier" #: templates/search/results_header.inc:5 msgid "Search Results" msgstr "Søkeresultat" #: lib/Trean.php:205 msgid "See Other" msgstr "Se andre" #: templates/browse/bookmarks.inc:95 templates/browse/subcategories.inc:55 msgid "Select All" msgstr "Velg alle" #: templates/browse/bookmarks.inc:96 templates/browse/subcategories.inc:56 msgid "Select None" msgstr "Velg ingen" #: templates/browse/bookmarks.inc:94 templates/browse/subcategories.inc:54 msgid "Select: %s | %s" msgstr "Velg: %s | %s]" #: lib/Trean.php:230 msgid "Service Unavailable" msgstr "Tjenesten er dessverre utilgjengelig" #: templates/browse/bookmarks.inc:85 msgid "Set Permissions" msgstr "Sett adgangs-innstillinger" #: config/prefs.php.dist:46 msgid "Should your list of bookmark categories be open when you log in?" msgstr "Skal listen din over internett snarveier være åpen når du logger inn?" #: lib/Trean.php:194 msgid "Switching Protocols" msgstr "Bytter protokoller" #: lib/Block/bookmarks.php:42 msgid "Template" msgstr "Mal" #: config/prefs.php.dist:34 msgid "Template to use when displaying bookmarks:" msgstr "Mal som skal brukes under visning av internett snarveier:" #: lib/Trean.php:208 msgid "Temporary Redirect" msgstr "Omadresser midlertidig" #: templates/browse/bookmarks.inc:146 msgid "There are no bookmarks in this category" msgstr "Det er ingen snarveien i denne kategorien" #: edit.php:126 msgid "There was a problem copying the bookmark: %s" msgstr "Det oppstod en feil under kopiering av snarveien: %s" #: edit.php:38 edit.php:79 msgid "There was a problem deleting the bookmark: %s" msgstr "Det oppstod en feil under sletting av snarveien: %s" #: edit.php:174 msgid "There was a problem deleting the category: %s" msgstr "Det oppstod en feil under sletting av kategorien: %s" #: edit.php:103 msgid "There was a problem moving the bookmark: %s" msgstr "Det oppstod et problem under flytting av snarveien: %s" #: edit.php:195 msgid "There was a problem moving the category: %s" msgstr "Det oppstod et problem når kategorien %s skulle flyttes" #: add.php:35 msgid "There was an error adding the bookmark: %s" msgstr "Det oppstod en feil når jeg skulle legge til snarveien: %s" #: add.php:59 msgid "There was an error adding the category: %s" msgstr "Det oppstod en feil når jeg skulle legge %s til i kategorien" #: edit.php:60 msgid "There was an error saving the bookmark: %s" msgstr "Det oppstod en feil når jeg skulle lagre snarveien: %s" #: templates/search/search.inc:15 templates/edit/edit.inc:12 #: templates/add/add.inc:26 msgid "Title" msgstr "Tittel" #: templates/add/add.inc:59 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "" "For å ha muligheten til å legge til internett snarveier raskt direkte fra " "browseren:" #: templates/reports/http-status.inc:126 msgid "Total" msgstr "Totalt" #: templates/search/search.inc:10 templates/edit/edit.inc:22 #: templates/add/add.inc:21 msgid "URL" msgstr "URL" #: lib/Trean.php:210 msgid "Unauthorized" msgstr "Uatorisert" #: templates/reports/http-status.inc:123 #, php-format msgid "Unknown (%s)" msgstr "Ukjent (%s)" #: lib/Trean.php:224 msgid "Unsupported Media Type" msgstr "Denne media typen er ikke støttet" #: perms.php:234 #, php-format msgid "Updated %s." msgstr "Oppdaterte %s." #: lib/Trean.php:207 msgid "Use Proxy" msgstr "Bruk proxy" #: templates/reports/list.inc:1 msgid "View Report" msgstr "Vis Rapport" #: templates/add/add.inc:64 msgid "" "While browsing you will be able to add bookmarks by clicking your new 'Add " "to Bookmarks' shortcut." msgstr "" "Når du surfer så vil du ha muligheten for å legge til favorittsidene dine " "ved å klikke på din nye 'Legg til snarvei' snarvei." #: templates/search/search.inc:39 msgid "Whole Field" msgstr "Helt felt" #: templates/browse/javascript.inc:19 msgid "You are creating a category folder." msgstr "Du lager en toppnivåmappe." #: templates/browse/javascript.inc:39 msgid "You are renaming the current category folder." msgstr "Du gir nytt navn til mappen: " #: browse.php:28 msgid "You do not have permission to view this category." msgstr "Du har ikke adgang i denne kategorien" #: templates/bookmark/1line.inc:30 templates/bookmark/standard.inc:27 #: templates/bookmark/2line.inc:33 msgid "click" msgstr "Klikk" #: templates/bookmark/1line.inc:30 templates/bookmark/standard.inc:27 #: templates/bookmark/2line.inc:33 msgid "clicks" msgstr "Klikk" msgid "Number Of Clicks" msgstr "Antall Klikk" trean-1.0.3/locale/nl/LC_MESSAGES/trean.mo0000664000175000017500000020426712171337643016055 0ustar janjanz7HJ$IJ)nJJ&J J$J K)K@KOK _KkK|KK K)K7KJLHcLRLLM(M.M5M=MDMLM[McMjMrMMMMMMVMNl#NNNNN N NNOO O ,O 6O BONO ^OlOuOOONO-OP,P 4PAP PP ZP hP tP PPPP#PlP%?QeQkQ ~QQQQQQQ Q RR5R=R%SR<yR%RRR&R S)&S PS[S'oS,S*S%ST &T 0TQTcT rT|T TTTT T TTT U UU(U-U4U;UCULUSUZU pU@|UUUUV VV!2VdTVVVVVV W1"W*TWW WW WWQW(X:X AXOX UXbXiX|X XXX X X X X X XX=YAY'_Y YYYY.Y*Y3ZKCZIZZ|[([5[X[T\*\]]!]5]F] U]c] t]]]]]]]^ ^^^ ^*^=^A^ I^ W^,e^4^ ^^ ^^ ^ _*_BH_'__ _ __ __``(`8`H`"e` `` ```` ``aC'aka a/a<aDbIbObWbmb rb |bbbb b bbb"b{cLcOc'/d(Wddddddddd e ee,e4e ;eGece-xee e ee eeee f fff$f|3ffff ff fff gg>gSg dg ngxgggggg ggg gh#h*h yIyRyfyyyyyyy yyz&z+z 2z=zVz(ozPzz zz{ {{B{{||1| F|P| d| p|}||||| |4|G|9}X} m}{} }} }}} }6} ~~-~3~ K~W~q~~~O~~-CK[o   'R7,ŀ̀Ԁ+5A wˁ7Wk t;J.9-h;[҃1. `-nO %DWh n{ υ  ):AZdaCƆ &89r*;(7MV^em|  ͈و>>>}4݉c5[hf%|83ۋ-2=ep֌[y1Aɍ- 39%m*?)T()}KI*=1h*(Ő 1%W:]Vrx Ғ D bow ԓ ;&2b 2ʔ;9 P]fl •Е !)B KW _k/Ɩ F! hnu! )/ 4AQX^ci lDy""%%*5P%%-ҙ.#/,S,c5VG*s WEe)&՜%("K^vo sy+ğԟ \)Qfؠ?Y-tX"'6> E S` grw}  ʢ"Ԣ*Ƥ*#9 ]i 5ʥۥ' ?)K:uMPtOħק  &09AQYirzt!ǩ Ω٩ %/@P`wҪ [5M*  ū Ы ޫ  +-Y'4C\y έ ׭ ).DX)Ǯۮ* ,EM2`1.ů/ $2$;`q   ưа  ( >JZ akt|R&=\etr % DPo'( *p= Ŵ Ҵߴ   (1 :H Xb k uG(!1AU^.e//ĶGF<"H'k0aĸ&0 #3E U bn"ɺ' +5E7W8 Ȼ ӻ߻ %5E[+ͼ  $3EXl&!޽  !%G=e 2̾LSL ſ οܿ  4 >JS3ZMPh##')1K[j{   CZ _ j t  w    7BQj |    8G?" "O4  7 E9@z) ~&    1H[r !)!0/R  N^$r1 c[z.,"BZ(t  -,+7@ x   %3 N[r % !! +2; V?b (?]wL$3IRB-2Oc r| & "51=o~ X<! *48 AKd x !6 >L do v"'.`\ct} "G6~    &,;AGSd#$>Uu  I$: R_ z fz &.EMd/x  ]+d %)'?Q%##">Zt I^2+*8\!4~? h-0 5K dp !mA+>8+TD* $ /= DO hv #  <ER3c+rfd "?6//Os;N/R;+%J;[T0U]s#*( &Ip x 14g)1 8 BNag~C 9CS\e l v 7 <B 4:/Hd s~  $ *7"<_go v6B7z&EJOTkq&x&@B\u!#'3['w*\9'Ra+\NR^498 ?Y 7@.K`s#dV0m0)0Z      % ;F MX i2w>qX^j m3P[1h`*P ;^nCW&vp-Ncr?KXRdO!%zl1a i5zHv{V6h>x $jUCi("d;@4L E]0(( EeUg% ,j[ \ urs+|FBQcpAmt} W>boGD \6 LNzkIf3x)T'Qha|Y7{~ BU$QZd M=r/"la)q7y'"!$-D-<_=@17CR$*KBuPxTk0u2-TW FGV];@*S&3TGn}oq)+Z:~ .'l= + A9jK4J63,^Iwsk|oU<o.>8mcyYA 5nVct#tH8)?5#],`vX}vY6:J0DL%J'HZbQ/rd1A"[PgS@*!~I8:Y]B7i2[9m/ igJM0M9w#n2&=M`!V RZfb\I KH(Of9ES4<O/.4EeaehS5z\ps,q<Neu_ktf+G_w_.b{yy x%O:;gLXFFwlRC` ^?s&DW28?#Np"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d days until your password expires.%d minutes%d person likes this%d persons like this%d to %d of %d%d-day forecast%s - Notice%s Configuration%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s can interact with your Twitter account%s cannot read information about your Facebook friends.%s cannot read your stream messages and various other Facebook data items.%s cannot set your status messages or publish other content to Facebook.%s is ready to perform the tasks below. Select each operation to run at this time., gusting %s %s, variable from %s to %s1 Day1 Line1 Month1 Week10 rows12 Hour Format15 rows2 Line2 Weeks24 Hour Format24 hours24-hour format25 rows3 Days3 LineA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM/PMAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd ContentAdd Here:Add MembersAdd a groupAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAddedAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.AllowAllow alphanumericAllow anyAllow only numericAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAnswerApplicationApplication ContextApplication is ready.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscending (A to Z or oldest to newest)Ascii ArtAt least one database schema is outdated.AttachmentAttachment DownloadAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated toAuthorizeAuthorize Access to Friends DataAuthorize PublishAuthorize ReadAutomaticAvailable fields:BOFH ExcusesBaltic (ISO-8859-13)BasicBlock SettingsBlock TypeBluetoothBookmark AddedBookmark not found: %s.Bookmarked onBookmarksBookmarks FeedBothBottomBrowseBrowserCalendarCameraCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.Categories and LabelsCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClicksClient AnchorCloseClose WindowCloudsCodeword frequencyCollapseColor PickerComicsCommandCommand ShellComments: %dComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm PasswordContinueCookieCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for %s to interact with your Facebook account.Could not find authorization for %s to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DDDataDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.DefinitionsDeleteDelete "%s"Delete All SyncML DataDelete GroupDeleted bookmark: Deleted configuration upgrade script "%s".Deleted synchronization session for device "%s" and database "%s".Descending (9 to 1 or newest to oldest)Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice InformationDevice ManagementDevice encryptionDevice is WipedDevice is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDisableDisplay 24-hour times?Display PreferencesDisplay RowsDisplay detailed forecastDisplay forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload generated configuration as PHP script.Drag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrugsDynamicEU VAT identificationEditEdit "%s"Edit BookmarkEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnglishEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter. Details have been logged for the administrator.Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExtra LargeFTP upload of configurationFacebook IntegrationFailed unlock attempts before device is wipedFeedFeed AddressFeels LikeFields to searchFile ManagerFilterFiltersFirefox/MozillaFirst HalfFirst QuarterFoodForceForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFriend Requests:Friends enabled.From the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoogle SearchGreek (ISO-8859-7)Group AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTML EmailHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hide Advanced PreferencesHide ResultsHome DirectoryHordeHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsIcons for %sIdentity's name:Import, Step %dImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Incorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internet ExplorerInvalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid parent permission.InventoryJapanese (ISO-2022-JP)JavaScript is either disabled or not available on your browser. You are restricted to the minimal view.Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLawLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLoading...Local time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogged in to FacebookLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize %sLogin to Twitter and authorize %sLogoutLoveMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.Matching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Email ageMaximum Number of BookmarksMaximum Number of Portal BlocksMaximum attachment sizeMaximum number of devicesMaximum number of entries to displayMedicineMediumMembersMentionsMetar WeatherMetricMin temp last 24 hours: Min temp last 6 hours: Minimum PIN lengthMinutes of inactivity before device should lockMiscellaneousMissing configuration.Mobile (Minimal)Mobile (Smartphone/Tablet)Mobile Optimized AppsModeModule is up-to-date.MondayMoon PhasesMost ClickedMost-clicked BookmarksMy AccountMy Account InformationMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeverNew BookmarkNew CategoryNew Messages:New MoonNew Username (optional)New passwordNew passwords don't match.NewsNextNext 4 PhasesNo SoundNo available configuration data to show differences for.No bookmarks foundNo bookmarks to displayNo bookmarks yet.No change.No icons found.No items to displayNo location is set.No offensive fortunesNo pending signups.No push while roamingNo searchNo security question has been set. Please contact your administrator.No stable version exists yet.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.NoSQL indices are ready.NoSQL indices for %sNoSQL indices out of date.NoneNordic (ISO-8859-10)Northern HemisphereNot ProvisionedNote:NotesNothing to browse, go back.Number of articles to displayNumber of bookmarks to showNumber of seconds to wait to refreshObject BrowserObject CreatorOffense filterOfficeOld and new passwords must be different.Old passwordOld password is not correct.On newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOr enter a user name:Other InformationOther OptionsOther PreferencesOthersOwnerOwner:PHPPHP CodePHP ShellPOP/IMAP Email accountsPOSIX extension is missingP_HP ShellPasswordPassword ComplexityPassword changed successfully.Passwords must match.PastePending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a password.Please enter a username.Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Pokes:Policy KeyPoliticsPosition of reply text when replying to email on your device. Note that some devices will always send the citation string at the end of the reply text.Posted %sPosted %s via %sPrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePressurePressure at sea level: Previously used tagsPrincipalProblem DescriptionProvisionedProvisioningPublish enabled.QueryQuotaRandom FortuneReadRead enabled.Really delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRegular AppsRemarksRemote HostRemoveRemove from searchRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sReplyReprovision All DevicesRequire PINRequire S/MIME EncryptionRequire S/MIME SignatureResetReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSD cardSD card encryptionSMS Text messagesSQL DB schema is out of date.SQL DB schema is ready.SQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch results (%s)Search:Select a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Send Problem ReportSensor: Server TimeSession AdministrationSession TimestampSessionsSet how to display bookmark listings and how to open links.Set preferences to allow you to reset your password if you ever forget it.Set up integration with your Facebook account.Set up integration with your Twitter account.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?ShowShow Advanced PreferencesShow differences between currently saved and the newly generated configuration.Show extra detail?Show last login time when logging in?Show notificationsSkip Login TasksSmallSnow depth: Snow equivalent in water: Songs & PoemsSort bookmarks by:Sort bySort direction:South European (ISO-8859-3)Southern HemisphereSpamSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubmitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSync allSyncMLSyndicated FeedTag CloudTagsTasksTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)TemplateTemporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Thai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem deleting the bookmark: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error saving the bookmark: %sThere was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.TicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTopTranslationsTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sURLUnable to delete "%s": %s.Unable to set like.Unable to validate the request token. Please try your request again.Undo ChangesUnfiledUnicode (UTF-8)UnitsUnknownUnlockUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated schema for %s.UploadUploaded all application configuration files to the server.Use if name/password is different for IMSP server.UserUser AdministrationUser NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWeb browserWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Width of the %s menu on the left:WifiWikiWindWind speed in knotsWind:WipeWipe PendingWipe is pendingWisdomWith WorkX-RefYYYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are not connected to your Facebook account. You should check your Facebook settings in your %s.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You have been logged out.You have denied the requested permissions.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has been succesfully changed. You need to re-login to the system with your new password.Your password has expiredYour password has expired.Your session has expired. Please login again.Your session length has exceeded the maximum amount of time allowed. Please login again.Zippy[Problem Report]_Alarms_Browse_CLI_Configuration_Groups_Locks_New Bookmark_Permissions_Usersattachmentcalmclickclicksfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestagged %stype the password twice to confirmunifiedweatherProject-Id-Version: Trean 0.1-cvs Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2013-05-07 14:15+0200 PO-Revision-Date: 2013-06-15 11:53+0200 Last-Translator: Arjen de Korte Language-Team: American English Language: en_US MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Generator: Lokalize 1.5 "%s" is aan het groepensysteem toegevoegd."%s" is aan het rechtensysteem toegevoegd."%s" is niet aangemaakt: %s.%.2fMB van %.2fMB gebruikt (%.2f%%)%d %s en %swachtwoord verloopt na %d dagen%d minuten%d persoon vindt dit leuk%d personen vinden dit leuk%d tot %d van %d%d-daags vooruitzicht%s - Opmerking%s Configuratie%s Taken - Bevestiging%s gebruiksovereenkomst%s op %s %s%s kan samenwerken met uw Twitter account%s kan geen informatie ophalen over uw Facebook vrienden.%s kan geen stream berichten en diverse andere Facebook data elementen lezen.%s kan uw status berichten niet instellen of andere inhoud op Facebook plaatsen.%s gereed voor het uitvoeren van onderstaande taken. Selecteer de werkzaamheden, die u op dit moment wilt uitvoeren., windstoten %s %s, variabel van %s tot %s1 dag1 Regel1 maand1 week10 rijen12 uursweergave15 rijen 2 Regels2 weken24 uursweergave24 uurs24 uursweergave25 rijen3 dagen3 RegelsVolledig wissen is aangevraagd. Het apparaat zal volledig worden gewist gedurende de volgende synchronisatie poging.Een nieuwere versie (%s) bestaat.Volledig wissen voor apparaat id %s is geïnitieerd. Het apparaat zal volledig worden gewist gedurende de volgende synchronisatie.AM/PMAccountinformatieAccountwachtwoordActiesActiveSyncActiveSync apparaatbeheerActiveSync apparatenActiveSync niet geactiveerd.ToevoegenInhoud toevoegenHier toevoegen:Leden toevoegenNieuwe groep toevoegenNieuwe gebruiker toevoegen:Nieuw alarm toevoegenPaar toevoegenToevoegen aan BladwijzersGebruiker toevoegenToegevoegd"%s" aan het systeem toegevoegd, maar kon geen extra inschrijvingsinformatie toevoegen: %s."%s" aan het systeem toegevoegd. U kunt nu aanmelden.Toevoegen van gebruikers is uitgeschakeld.AdresAdresboekBeheerAlarmeindeAlarmmethodenAlarmstartAlarmtekstAlarmtitelAlarmenAlleAlle geauthenticeerde gebruikersAlle beleidssleutels met succes teruggezet.Alle toestand informatie voor uw ActiveSync apparaten verwijderd. Ze zullen de volgende keer dat ze verbinden met de server opnieuw synchroniseren.Alle synchronisatie sessies verwijderd.ToestaanAlfanumeriek toestaanAllen toestaanAlleen numeriek toestaanAlternatieve IMSP aanmeldingAlternatief IMSP wachtwoordAlternatieve IMSP gebruikersnaamAlternatief e-mailadresAntwoordToepassingToepassingscontextToepassing is gereed.GoedkeurenArabisch (Windows-1256)Weet u zeker dat u '%s' wilt verwijderen?Weet u zeker dat u het aanmeldingsverzoek van "%s" wilt verwijderen?Weet u zeker dat u "%s" wilt verwijderen?Armeens (ARMSCII-8)KunstOplopend (A tot Z of oudste naar nieuwste)Ascii kunstMinimaal één database schema is verouderd.BijlageBijlage downloadenPoging om een niet bestaande groep te verwijderen.Poging om een niet bestaand recht te verwijderen.Poging om een niet bestaand recht te bewerken.Poging om een niet bestaande share te bewerken.Aangemeld bijToestaanSta toegang tot Friends gegevens toePublish toestaanLezen toestaan: AutomatischBeschikbare velden:BOFH ExcusesBaltisch (ISO-8859-13)EenvoudigBlokinstellingenBloktypeBluetoothBladwijzer toegevoegdBladwijzer niet gevonden: %s.Bladwijzer gemaakt opBladwijzersBladwijzer feedBeidenOnderkantBladerenBrowserAgendaCameraAfbrekenProbleemrapport afbrekenWissen afbrekenKan wachtwoord niet automatisch resetten, neem contact op met uw systeembeheerder.Categorieën en labelsKeltisch (ISO-8859-14)Centraal Europees (ISO-8859-2)WijzigenWijzig locatieWijzig uw wachtwoordWijzig persoonlijke gegevens.Het wijzigen van uw wachtwoord wordt in de huidige configuratie nietondersteund. Neem contact op met de beheerder.ControleerControleer op nieuwere versiesControlerenChinees vereenvoudigd (GB2312)Chinees traditioneel (Big5)Keuze %sKies datumweergave (verkorte weergave):Kies datumweergave (volledige weergave):Kies tijdsweergave:Wis zoekopdrachtWis gebruiker: %sWis gebruikerWis gebruikersdataKlik op één van uw geselecteerde adresboeken en selecteer daarna alle velden welke doorzocht dienen te worden.Klik om verder te gaanx aangekliktClientAnchorSluitenSluit schermWolkenCodewoord frequentieInklappenKleurenkiezerCartoonsOpdrachtOpdrachtshellOpmerkingen: %dComputersConditieConditiesConfiguratieVerschillen in configuratieConfiguratie voor het synchroniseren met PDA's, Smartphones en Outlook.Configuratie dient bijgewerkt te worden.Setup upgrade scripts beschikbaar%s configurerenBevestig wachtwoordDoorgaanCookieKon niet verbinden met server "%s" met FTP: %sGeen contact met server, probeer later opnieuw.Kon setup upgrade script "%s" niet verwijderen.Kon geen toestemming voor %s om samen te werken met uw Twitter account.Kon geen toestemming voor %s om samen te werken met uw Twitter accountKon het wachtwoord van de gewenste gebruiker niet resetten. Sommige of alle details zijn niet juist. Probeer opnieuw of neem contact op met de systeembeheerder, wanneer u verdere hulp nodig heeft.Kon configuratie niet terugzetten.Kon backupconfiguratie niet opslaan %s.Kon setup upgrade script niet opslaan als: "%s".Configuratie %s opslaan niet mogelijk. Kies één van onderstaande opties om de code op te slaan.Configuratie %s opslaan niet mogelijk. U kunt of een optie voor opslaan van de code op %s gebruiken, of de code handmatig naar %s kopiëren.Kon configuratie voor "%s" niet wegschrijven: %sLandMakenCreëer nieuwe identiteitHuidige 4 schijngestaltenHuidige alarmenHuidige blokkadesHuidige sessiesHuidige tijdHuidig weerHuidige conditieCyrillisch (KOI8-R)Cyrillisch (Windows-1251)Cyrillisch/Ukrains (KOI8-U)DB toegang is niet geconfigureerd.DDDataDatabaseDatumDatum OntvangenDatum: %s; tijd: %sDagStandaardStandaard kleurStandaard ConsoleStandaard karakterset voor het verzenden van berichten:Standaard locatie voor plaats afhankelijke toepassingen.DefinitiesVerwijderenVerwijder "%s"Verwijder alle SyncML gegevensGroep verwijderenBladwijzer verwijderdSetup upgrade script "%s" verwijderd.Synchronisatie sessie voor apparaat "%s" en database "%s" verwijderd.Aflopend (9 naar 1 of nieuwste naar oudste)Beschrijf het probleemOmschrijvingOntwikkelingApparaatApparaat IDApparaatgegevensApparaatbeheerApparaat coderingApparaat is gewistApparaat is gewist.Apparaat met succes verwijderd.Apparaat wissen succesvol geannuleerd.DauwpuntDauwpunt voor het afgelopen uur: DauwpuntUitschakelen24-uurs tijdweergave?Toon voorkeurenToon rijenGedetailleerde voorspelling tonenWeersvoorspelling tonen (TAF)Bevat de eerste rij de veldnamen? Zo ja, dit hokje aanvinken:Geen account? Meld je aan.%s downloadenDownload gegenereerde configuratie als PHP script.Sleep de "Toevoegen aan Bladwijzers" link hieronder naar je "Links" werkbalkSleep de "Toevoegen aan Bladwijzers" link hieronder naar je "Persoonlijke werkbalk"DrugsDynamischEU BTW identificatieBewerken"%s" bewerkenBladwijzer bewerkenVoorkeuren bewerken voorRechten bewerkenRechten van "%s" bewerkenOnderwijsE-mailadresEindtijdEngelsEen naam voor de nieuwe categorie invoeren, a.u.b.:Geef een beveiligingsvraag die u gevraagd wordt, wanneer het nodig is om uw wachtwoord te resetten, b.v. 'wat is de naam van uw huisdier?':Fout bij aanmelden bij Twitter: Details zijn gelogd voor de systeembeheerder.Fout bij aanmelden bij Twitter: %s Details zijn gelogd voor de systeembeheerder.Fout bij verwijderen van sync info:Fout bij verwijderen van sync info:Fout bij vernieuwen van wachtwoord: %s.EtnischGebeurtenis uitnodigingenElke 15 minutenElke 2 minutenElke 30 secondenElke 5 minutenElk half uurElk uurElke minuutVoorbeeldwaarden:UitvoerenUitklappenExtra grootFTP overdracht van configuratieIntegratie met FacebookMislukte ontgrendel pogingen voordat apparaat volledig wordt gewistFeedFeed adresVoelt alsZoekveldenBestandsbeheerFilterFiltersFirefox/MozillaEerste helftEerste kwartaalVoedselAfdwingenWeersvoorspelling (TAF)Vooruitzichtdagen (merk op dat het gegeven vooruitzicht dagen en nachten geeft; een groot aantal kan resulteren in een breed blok)Uw wachtwoord vergeten?FormulierenFortuneFortunetypeFortunesFortunes 2ForumsVriend verzoeken:Vrienden ingeschakeld.Uit %s (%s °) met %s %sUit %s met %s %sVolledige beschrijvingVolle maanVolledige naamGenereer %s configuratieGegenereerde codeMeer ophalenGlobale voorkeurenGaGoedelGoogle zoekenGrieks (ISO-8859-7)GroepsbeheerGroep naamGroep is niet aangemaakt: %s.GroepenGast rechtenHTML e-mailHebreeuws (ISO-8859-8-I)HoogteHoogte van stream inhoud (breedte wordt automatisch aan blok aangepast)Help_Help onderdelenHalfrondHier is het begin van het bestand:Verberg geavanceerde voorkeurenVerberg resultatenHome DirectoryHordeHoeveel velden (kolommen) zijn er?Hoeveel seconden te wachten voordat er op nieuwe artikelen wordt gecontroleerd?Relatieve vochtigheidHumoristenPictogrammen voor %sIdentiteitsnaam:Importeren, stap %dGeimporteerd veld: %sGeimporteerde velden:In antwoord op:Selecteer uit onderstaande lijsten een geimporteerd veld uit het bronbestand aan de linkerkant en het overeenkomende veld beschikbaar in uw adresboek aan de rechterkant. Klik daarna op "Paar toevoegen" om deze te markeren voor import. Wanneer u hiermee klaar bent klik op "Volgende".Onjuiste gebruikersnaam of alternatief adres. Probeer opnieuw of neem contact op met de systeembeheerder, wanneer u verdere hulp nodig heeft.Individuele gebruikersInformatieOvergeërfde ledenEen e-mailadres invoegen, waar u het nieuwe wachtwoord kan ontvangen:Het gewenste antwoord voor de beveiligingsvraag invoegen:Internet ExplorerOngeldig BTW identificatie nummerformaat.Ongeldige actie %sOngeldige toepassing.Ongeldige hash.Ongeldig parent recht.InventarisJapans (ISO-2022-JP)JavaScript is uitgeschakeld of niet beschikbaar in uw browser. U bent beperkt tot het gebruik van de minimalistische weergave.Zojuist...Kernel NewbiesTrefwoordKinderenKolabKoreaans (EUC-KR)TaalGrootLaatste helftLaatste wijziging wachtwoordLaatste kwartierLaatste synchronisatieLaatst bijgewerkt:Laatste aanmelding: %sLaatste aanmelding: %s van %sLaatste aanmelding: NooitNieuwsteRechtenHou vanLimerickLinux CookieTabellijstWeergeven van alarmen mislukt: %sWeergeven van vergrendelingen mislukt: %sWeergeven van sessies mislukt: %sWeergeven van gebruikerslijst is uitgeschakeld.LiteratuurLaden...Lokale tijd: %s %sLandinstelling en tijdLocatieBlokkeer gebruikerBlokkadesAanmeldenAfmeldenAangemeld bij FacebookAanmelding mislukt omdat uw gebruikersnaam of wachtwoord onjuist is ingevoerd.Aanmelding mislukt.Meldt aan bij Facebook en machtig %sMeldt aan bij Twitter en machtig de %s applicatieAfmeldenLiefdeMMMagieE-mailMailbeheerderBeheer uw lijst met categorieën en de corresponderende kleuren, waarmee onderdelen worden gelabeldBeheer uw ActiveSync apparatenOvereenkomende velden:Hoogste temperatuur van de afgelopen 24 uur: Hoogste temperatuur van de afgelopen 6 uur: Maximale e-mail ouderdomMaximum aantal Bladwijzers.Maximaal aantal Portaalblokken.Maximale bijlagegrootteMaximaal aantal apparatenMaximaal aantal weer te geven elementen.GeneeskundeMiddelLedenNoemtMetar WeerMetrischLaagste temperatuur van de afgelopen 24 uur: Laagste temperatuur van de afgelopen 6 uur: Minimale lengthe PINMinuten inactiviteit voordat apparaat wordt vergrendeldAllerhandeOntbrekende configuratieMobiel (minimalistisch)Mobiel (smartphone/tablet)Apps geoptimaliseerd voor mobielWeergaveToepassing is up-to-date.MaandagMaanfasenMeest bezochtMeest bezochte bladwijzersMijn accountMijn accountinformatieIntegratie met FacebookMijn portaalMijn portaallayoutN/BNee, ik accepteer de voorwaarden NIETLET OP: EEN APPARAAT VOLLEDIG WISSEN KAN HET TERUG ZETTEN NAAR FABRIEKS INSTELLINGEN. VERGEWIS U ERVAN DAT DIT ECHT IS WAT U WILT VOORDAT U AANVRAAGT EEN APPARAAT VOLLEDIG TE WISSENNaamNooitNieuwe BladwijzerNieuwe categorieNieuwe berichten:Nieuwe maanNieuwe gebruikersnaam (optioneel)Nieuw wachtwoordWachtwoorden moeten overeenkomen.NieuwsVolgendeVolgende 4 schijngestaltenGeen geluidGeen beschikbare configuratiedata om verschillen te laten zien.Geen bladwijzers gevondenGeen bladwijzers weer te gevenGeen bladwijzers weer te geven.Geen wijzigingen.Geen pictogrammen gevondenNiets om weer te gevenEr is geen locatie ingesteld.Geen beledigende fortunesGeen hangende inschrijvingen.Geen push tijdens roamingGeen zoekopdrachtVeiligheidsvraag is niet ingesteld. Neem contact op met de beheerder, a.u.b.Er bestaat nog geen stabiele versie.Geen gebruikersnaam opgegeven.Geen versie gevonden in originele configuratie. Hergenereer configuratie.Geen versie gevonden in uw configuratie. Hergenereer configuratie.NoSQL indexen zijn gereed.NoSQL indexen voor %sNoSQL indexen zijn verlopen.GeenNoord Europees (ISO-8859-10)Noordelijk halfrondNiet aangemeldVoetnoot:NotitiesNiets te bladeren, ga terug.Aantal te tonen onderdelenAantal weer te geven bladwijzersAantal seconden wachten voor verversenObjectbrowserObjecteigenaarBeledigingenfilterKantoorOud en nieuw wachtwoord moeten verschillend zijn.Oud wachtwoordHet oude wachtwoord is onjuistMet nieuwere versies van Internet Explorer, dient u mogelijk %s://%s aan uw vertrouwde zones toe te voegen om dit te laten werken.Alleen beledigende fortunesAlleen de eigenaar of een systeembeheerder mag de eigenaarrechten van een share wijzigenOpen links in een nieuw vensterBesturingssyteemOf voer een gebruikersnaam in:Overige informatieOverige optiesOverige voorkeurenOverigEigenaarEigenaar:PHPPHP codePHP shellPOP/IMAP e-mail accountsPOSIX extensie mistPHP _ShellWachtwoordSterkte wachtwoordWachwoord is gewijzigd.Wachtwoorden moeten overeenkomen.PlakkenHangende inschrijvingen:MensenAanmeldtaken uitvoerenRecht "%s" niet verwijderd.RechtenRechtenbeheerPersoonlijke informatieHuisdierenFoto'sPlatitudesGeef een geldig wachtwoord, a.u.b.Geef een geldige gebruikersnaam, a.u.b.Geef een samenvatting van het probleem, a.u.b.Lees de volgende tekst, a.u.b. U dient de voorwaarden te accepteren om het systeem te gebruiken.Pokes:Openbare sleutelPolitiekPlaats van uw antwoord bij reageren op e-mail op uw apparaat. NB sommige apparaten plaatsen de aangehaalde tekst altijd aan het einde van het antwoord.Geplaatst %sGeplaatst %s via %sNeerslag van het afgelopen %d uur: Neerslag van de afgelopen %d uren: Neerslag%skansLuchtdrukLuchtdruk op zeeniveau: Eerder gebruikte labelsVoornaamsteProbleembeschrijvingProvisionedProvisioningPubliceren toegestaan.ZoekopdrachtQuotaRandom FortuneLezenLezen toegestaan."%s" echt verwijderen? Deze bewerking kan niet ongedaan gemaakt worden.Gebruikersdata van gebruiker "%s" echt verwijderen? Deze bewerking kan niet ongedaan gemaakt worden.Ververs dynamische menu onderdelen:Portalweergave verversen:Verversingsfrequentie:Aangemelde gebruikers apparatenReguliere AppsOpmerkingenHost op afstandVerwijderenVerwijderen uit zoekopdrachtPaar verwijderenVerwijder het opgeslagen script uit de tijdelijke directory op de server.Gebruiker verwijderenVerwijder gebruiker: %sBeantwoordenReprovision alle apparatenVereis PINVereis S/MIME versleutelingVereis S/MIME handtekeningHerstellenReset wachtwoordAlle toestand informatie voor uw ActiveSync apparaten verwijderen. Ze zullen bij de volgende verbinding met de server opnieuw synchroniseren.Reset uw wachtwoordLaatste zoekopdracht herstellenResultatenResultaten voor %sTerug naar hoofdschermRetweetGeretweet door %sVoer wachtwoord opnieuw inConfiguratie terugzettenRaadselsStartenAanmeldtaken uitvoerenSD cardSD kaart versleutelingSMS tekst berichtenSQL DB configuratie dient bijgewerkt te worden.SQL DB configuratie is gereed.SQL shellS_QL shellOpslaan"%s" opslaanOpslaan en afsluitenGegenereerde configuratie als PHP script opgeslagen in de tijdelijke directory van uw server.Setup upgrade script opgeslagen naar: "%s".WetenschapBereik_ZoekenZoekenZoekresultaten (%s)Zoeken:Selecteer een groep om toe te voegen:Selecteer een nieuwe eigenaar:Selecteer een serverSelecteer een gebruiker om toe te voegen:Selecteer alle velden om te doorzoeken t.b.v. naamsuitbreiding.Selecteer het datum- en tijdsformaat:Selecteer het datumscheidingsteken:Selecteer het datumformaat:Selecteer de dag- en tijdsvolgorde:Selecteer het tijdscheidingsteken:Selecteer het tijdsformaat:Selecteer uw kleurschema.Selecteer uw gewenste taal:Probleemrapport verzendenSensor: Systeem tijdSessiebeheerSessie tijdstempelSessiesStel in hoe bladwijzers moeten worden weergegeven en hoe links te openen.Instellen van opties om u toe te staan uw wachtwoord te resetten, wanneer u dit bent vergeten.Stel integratie met uw Facebook account in.Stel integratie met uw Twitter account in.Instellen van uw gewenste taal, tijdzone en datumopties.Instellen van uw opstarttoepassing, kleurschema, paginaverversing en overige weergaveopties.Verschillende locaties mogelijk met de parameter: %sKorte samenvattingDienen sneltoetsen voor de meeste links gedefinieerd te worden?WeergevenToon geavanceerde voorkeurenVerschillen laten zien tussen de huidige opgeslagen configuratie en de nieuwe gegenereerde configuratie.Toon extra details?Laatste aanmeldingstijd weergeven bij aanmelden?Toon notificatiesAanmeldtaken overslaanKleinSneeuwhoogte: Sneeuwequivalent in water: Liederen en gedichtenBladwijzers sorteren op:Sorteren opSorteervolgorde:Zuid Europees (ISO-8859-3)Zuidelijk halfrondSpamSportStandaardStar TrekBegintijdStatus beheerStatusStatus kan niet worden ingesteld.StreamVerzoek verstuurd om "%s" aan het systeem toe te voegen. U kunt niet aanmelden tot uw verzoek is goedgekeurd.Succesvol verbonden met uw Facebook account of rechten aangepast.Succes"%s" met succes aan het systeem toegevoegd.Data van gebruiker "%s" met succes uit het systeem verwijderd."%s" met succes verwijderd."%s" met succes uit het systeem verwijderd.Configuratie met succes teruggezet. Vernieuw om wijzigingen te zien.Backupconfiguratie met success opgeslagen."%s" met succes bijgewerkt%s met succes geschrevenZonsopgangZonsondergangZondagZonsopgangZonsopgang/ZonsondergangZonsondergangAlles synchroniserenSyncMLSamengevatte feedTag cloudLabelsTakenTemperatuur van het afgelopen uur: TemperatuurTemperatuur%s(%sHoog%s/%sLaag%s)SjabloonKan niet verbinden met Facebook. Probeer het later nog eens.Kan tijdelijk niet verbinden met Twitter. Probeer het later nog eens.Thais (TIS-620)Volledig wissen voor apparaat id %s is geannuleerd.Het alarm is verwijderd.Het alarm is opgeslagen.De configuratie voor %s kan niet automatisch worden bijgewerkt. Werk de configuratie handmatig bij.Standaard e-mailadres voor deze identiteit:De blokkade is verwijderd.De lidstaat service kon niet op tijd worden bereikt. Probeer later opnieuw of met een andere lidstaat.De lidstaat service is momenteel niet beschikbaar. Probeer later opnieuw of met een andere lidstaat.De opgegeven landcode is ongeldig.De dienst is momenteel niet beschikbaar. Probeer later opnieuw.De dienst is momenteel te druk. Probeer later opnieuw.Het aanmeldingsverzoek voor "%s" is verwijderd.Het aanmeldingsverzoek voor "%s" is verwijderd.De toestand voor apparaat id %s is gewist. Het zal bij de volgende verbinding met de server opnieuw synchroniseren.Het test script is momenteel ingeschakeld. Schakel uit veiligheidsoverwegingen het test script uit als u klaar bent met testen (zie horde/docs/INSTALL).De gebruiker "%s" bestaat al.Gebruiker "%s" bestaat niet.Een probleem met het toevoegen van "%s" aan het systeem: %sEen probleem met het verwijderen van data van gebruiker "%s" uit het systeem: Probleem bij het verwijderen van bladwijzer: %sEen probleem met het verwijderen van "%s" uit het systeem: Een probleem met het bijwerken van "%s": %sFout bij toevoegen van bladwijzer: %sEr is een fout opgetreden bij de communicatie met de ActiveSync server: %sEr is een fout opgetreden bij het verbinden met Twitter: %sEen fout in het configuratieformulier. Misschien bent u een verplicht veld vergeten.Er was een tijdelijk probleem met deze actie: %sEr was een tijdelijk probleem met deze Facebook sessie. Probeer later opnieuw, a.u.b.Er was een probleem met het verwijderen van globale data voor %s. Details zijn geregistreerd.Fout bij opslaan van bladwijzer: %sEen fout bij het bekijken van het bericht.Dit BTW identificatienummer is ongeldig.Dit BTW identificatienummer is geldig.TicketsTijdplanningTijdformaatTijdstempel of onbekendTijdstempels van geslaagde synchronisatie sessiesTitelOm snel bladwijzers toe te voegen vanuit je browser:Om een bepaald veld uit te sluiten van de import of om een verkeerde overeenkomst te corrigeren selecteer een veld uit onderstaande lijsten en klik op "Paar verwijderen".Om meerdere onderdelen te selecteren, houd de Control (PC) of Command (Mac) toets vast tijdens klikken.VandaagMorgenBovenkantVertalingenTurks (ISO-8859-9)TweetIntegratie met TwitterTwitter tijdslijnTwitter tijdslijn voor %sURLKan "%s": %s niet verwijderenNiet in staat Kan het verzoek token niet valideren. Probeer het verzoek nogmaals.Maak wijzigingen ongedaanOnbenoemdUnicode (UTF-8)EenhedenOnbekendUnlockBijwerken%s bijwerken%s bijwerkenAlle DB schema's bijwerkenWerk koppelingen bijGebruiker bijwerken."%s" is bijgewerkt.Bijwerken schema voor %s.UploadAlle toepassing setupbestanden naar de server geupload.Gebruiken wanneer naam/wachtwoord verschilt met IMSP server.GebruikerGebruikersbeheerGebruikersnaamGebruikersregistratieGebruikersregistratie is uitgeschakeld op deze site.Gebruikersregistratie is niet geconfigureerd op deze site.Gebruiker niet gevonden.Gebruiker om toe te voegen:GebruikersnaamGebruikersGebruikers in het systeem:BTW idnummer verificatieBTW identificatienummer:BTW nummerVersie controleVersiebeheerVietnamees (VISCII)Bekijk een externe webpaginaZichtWaarschuwingWeerWeerbericht gegevens geleverd doorWebsiteBrowserWelkomWelkom, %sWesters (ISO-8859-1)Westers (ISO-8859-15)Welke toepassing dient %s weer te geven na aanmelding?Waar bent u nu mee bezig?Wat is het scheidingskarakter?Wat is het citaatkarakter?Welke dag wilt u weergegeven hebben als de eerste dag van de week?Welke schijngestaltenTijdens het browsen kun je de huidige pagina aan de bladwijzers toevoegendoor klikken op je nieuwe "Toevoegen aan bladwijzers" snelkoppeling.Breedte van %s menu aan de linkerkant:WifiWikiWindWindsnelheid in knopenWind:WissenVolledig wissen in behandeling genomenVolledig wissen in behandeling genomenWijsheidMetWerkX-RefJJJa, ik accepteer de voorwaardenU en %d persoon vinden dit leukU en %d personen vinden dit leukU mag geen groepen maken.U mag geen shares maken.U mag geen groepen wijzigen.U mag geen shares wijzigen.Maximum aantal bladwijzers is: %dU mag geen groepen verwijderen.U mag geen shares verwijderen.U mag geen groepen shares bekijken.U mag geen share machtigingen bekijken.U mag geen shares bekijken.U mag geen groepen gebruikers bekijken.U mag geen gebruikers van shares bekijken.U bent niet aangemeld bij uw Facebook account. Controleer uw Facebook instellingen in uw %s.U kunt ook uw Facebook instellingen in uw %s controleren.U bent niet akkoord gegaan met de gebruiksovereenkomst, dus u kunt niet aanmelden.U bent afgemeld.U heeft de gevraagde toestemming geweigerd.Uw Twitter account is niet gekoppeld met Horde. Controleer uw Twitter instellingen in uw %s.U vind dit leukU dient het probleem te beschrijven, voordat u het probleemrapport kunt verzenden.U dient een gebruikersnaam op te geven om te wissen.U dient een gebruikersnaam op te geven om te verwijderen.U dient een gebruikersnaam op te geven om toe te voegen.U dient een gebruikersnaam op te geven om bij te kunnen werken.Uw e-mailadresUw informatieUw internetadres is gewijzigd sinds het begin van uw sessie. Om uw veiligheid te beschermen, dient u zich opnieuw aan te melden.Uw naam:Het toevoegen van gebruikers wordt niet ondersteund door uw authenticatie Wanneer u Horde wilt gebruiken voor het beheren van gebruikersaccounts, dient u een ander authenticatie backend te gebruiken.Het weergeven van een gebruikerslijst wordt niet ondersteund door uw authenticatie backend, of deze optie is om andere redenen uitgeschakeld.Uw browser lijkt te zijn gewijzigd sinds het begin van uw sessie. Om uw veiligheid te beschermen, dient u zich opnieuw aan te melden.Uw browser ondersteunt deze mogelijkheid niet.Uw huidige tijdzone:Uw volledige naam:Uw wachtwoord is verlopen.Uw nieuwe wachtwoord voor %s is: %sUw wachtwoord is geresetUw wachtwoord is vernieuwd, maar kon niet naar u worden verzonden. Neem contact op met de beheerder.Uw wachtwoord is vernieuwd, controleer uw e-mail en meld aan met uw nieuwe wachtwoord.Uw wachtwoord is succesvol gewijzigd. U dient opnieuw aan te melden bij het systeem met uw nieuwe wachtwoord.Uw wachtwoord is verlopenUw wachtwoord is verlopenUw sessie is verlopen. Opnieuw aanmelden, a.u.b.Uw sessie is verlopen. Opnieuw aanmelden, a.u.b.Zippy[Probleemrapport]_Alarmen_Bladeren_CLI_Configuratie_Groepen_Locks_Nieuwe bladwijzer_RechtenGe_bruikersbijlagekalmKlik hierx aangekliktuit %s (%s) met %s %swindstoteninlinevoorkeurentoon verschillen%s gemarkeerdvoer, ter bevestiging, het wachtwoord twee maal inunifiedweertrean-1.0.3/locale/nl/LC_MESSAGES/trean.po0000664000175000017500000001731512171337643016054 0ustar janjan# Dutch translations for Trean package. # Copyright 2005-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Trean package. # # Automatically generated, 2005. # Arjen de Korte , 2013. msgid "" msgstr "" "Project-Id-Version: Trean 0.1-cvs\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-05-07 14:15+0200\n" "PO-Revision-Date: 2013-06-15 11:53+0200\n" "Last-Translator: Arjen de Korte \n" "Language-Team: American English \n" "Language: en_US\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.5\n" #: lib/Block/Bookmarks.php:54 lib/Block/Mostclicked.php:45 msgid "1 Line" msgstr "1 Regel" #: lib/Block/Bookmarks.php:42 lib/Block/Mostclicked.php:33 msgid "10 rows" msgstr "10 rijen" #: lib/Block/Bookmarks.php:43 lib/Block/Mostclicked.php:34 msgid "15 rows" msgstr "15 rijen " #: lib/Block/Bookmarks.php:53 lib/Block/Mostclicked.php:44 msgid "2 Line" msgstr "2 Regels" #: lib/Block/Bookmarks.php:44 lib/Block/Mostclicked.php:35 msgid "25 rows" msgstr "25 rijen" #: lib/Block/Bookmarks.php:52 lib/Block/Mostclicked.php:43 msgid "3 Line" msgstr "3 Regels" #: templates/add.html.php:49 msgid "Add" msgstr "Toevoegen" #: templates/bookmarklet.html.php:1 msgid "Add to Bookmarks" msgstr "Toevoegen aan Bladwijzers" #: templates/list.html.php:13 msgid "Added" msgstr "Toegevoegd" #: config/prefs.php:36 msgid "Ascending (A to Z or oldest to newest)" msgstr "Oplopend (A tot Z of oudste naar nieuwste)" #: add.php:47 msgid "Bookmark Added" msgstr "Bladwijzer toegevoegd" #: edit.php:19 #, php-format msgid "Bookmark not found: %s." msgstr "Bladwijzer niet gevonden: %s." #: config/prefs.php:26 msgid "Bookmarked on" msgstr "Bladwijzer gemaakt op" #: lib/Block/Bookmarks.php:20 lib/Block/Bookmarks.php:65 #: lib/View/BookmarkList.php:120 msgid "Bookmarks" msgstr "Bladwijzers" #: lib/Trean.php:71 msgid "Bookmarks Feed" msgstr "Bladwijzer feed" #: browse.php:31 msgid "Browse" msgstr "Bladeren" #: templates/add.html.php:50 templates/edit.html.php:60 msgid "Cancel" msgstr "Afbreken" #: templates/list.html.php:14 msgid "Clicks" msgstr "x aangeklikt" #: lib/Api.php:130 msgid "Close" msgstr "Sluiten" #: app/controllers/DeleteBookmark.php:13 msgid "Deleted bookmark: " msgstr "Bladwijzer verwijderd" #: config/prefs.php:37 msgid "Descending (9 to 1 or newest to oldest)" msgstr "Aflopend (9 naar 1 of nieuwste naar oudste)" #: templates/add.html.php:25 templates/edit.html.php:34 msgid "Description" msgstr "Omschrijving" #: config/prefs.php:13 msgid "Display Preferences" msgstr "Toon voorkeuren" #: lib/Block/Bookmarks.php:38 msgid "Display Rows" msgstr "Toon rijen" #: templates/add.html.php:61 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" "Sleep de \"Toevoegen aan Bladwijzers\" link hieronder naar je \"Links\" " "werkbalk" #: templates/add.html.php:59 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "Sleep de \"Toevoegen aan Bladwijzers\" link hieronder naar je \"Persoonlijke " "werkbalk\"" #: templates/list.html.php:55 msgid "Edit" msgstr "Bewerken" #: edit.php:37 msgid "Edit Bookmark" msgstr "Bladwijzer bewerken" #: templates/add.html.php:58 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: templates/add.html.php:60 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/add.html.php:38 templates/edit.html.php:47 msgid "Loading..." msgstr "Laden..." #: lib/Application.php:74 msgid "Maximum Number of Bookmarks" msgstr "Maximum aantal Bladwijzers." #: config/prefs.php:25 lib/Block/Bookmarks.php:34 msgid "Most Clicked" msgstr "Meest bezocht" #: lib/Block/Mostclicked.php:20 msgid "Most-clicked Bookmarks" msgstr "Meest bezochte bladwijzers" #: add.php:73 templates/add.html.php:9 msgid "New Bookmark" msgstr "Nieuwe Bladwijzer" #: search.php:43 msgid "No bookmarks found" msgstr "Geen bladwijzers gevonden" #: lib/Block/Bookmarks.php:94 lib/Block/Mostclicked.php:75 msgid "No bookmarks to display" msgstr "Geen bladwijzers weer te geven" #: browse.php:18 msgid "No bookmarks yet." msgstr "Geen bladwijzers weer te geven." #: search.php:50 msgid "No search" msgstr "Geen zoekopdracht" #: templates/add.html.php:64 msgid "Note:" msgstr "Voetnoot:" #: lib/Block/Mostclicked.php:29 msgid "Number of bookmarks to show" msgstr "Aantal weer te geven bladwijzers" #: templates/add.html.php:65 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "Met nieuwere versies van Internet Explorer, dient u mogelijk %s://%s aan uw " "vertrouwde zones toe te voegen om dit te laten werken." #: config/prefs.php:46 msgid "Open links in a new window?" msgstr "Open links in een nieuw venster" #: config/prefs.php:12 msgid "Other Preferences" msgstr "Overige voorkeuren" #: templates/add.html.php:41 templates/edit.html.php:50 msgid "Previously used tags" msgstr "Eerder gebruikte labels" #: lib/View/BookmarkList.php:210 msgid "Remove from search" msgstr "Verwijderen uit zoekopdracht" #: templates/edit.html.php:59 msgid "Save" msgstr "Opslaan" #: search.php:36 msgid "Search" msgstr "Zoeken" #: search.php:47 #, php-format msgid "Search results (%s)" msgstr "Zoekresultaten (%s)" #: config/prefs.php:14 msgid "Set how to display bookmark listings and how to open links." msgstr "" "Stel in hoe bladwijzers moeten worden weergegeven en hoe links te openen." #: config/prefs.php:28 msgid "Sort bookmarks by:" msgstr "Bladwijzers sorteren op:" #: lib/Block/Bookmarks.php:29 msgid "Sort by" msgstr "Sorteren op" #: config/prefs.php:38 msgid "Sort direction:" msgstr "Sorteervolgorde:" #: lib/Application.php:99 templates/add.html.php:30 templates/edit.html.php:39 msgid "Tags" msgstr "Labels" #: lib/Block/Bookmarks.php:48 lib/Block/Mostclicked.php:39 msgid "Template" msgstr "Sjabloon" #: app/controllers/DeleteBookmark.php:16 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Probleem bij het verwijderen van bladwijzer: %s" #: add.php:41 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Fout bij toevoegen van bladwijzer: %s" #: app/controllers/SaveBookmark.php:26 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Fout bij opslaan van bladwijzer: %s" #: config/prefs.php:24 lib/Block/Bookmarks.php:33 templates/add.html.php:20 #: templates/edit.html.php:29 templates/list.html.php:12 msgid "Title" msgstr "Titel" #: templates/add.html.php:57 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Om snel bladwijzers toe te voegen vanuit je browser:" #: templates/add.html.php:15 templates/edit.html.php:24 msgid "URL" msgstr "URL" #: templates/add.html.php:62 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Tijdens het browsen kun je de huidige pagina aan de bladwijzers " "toevoegendoor klikken op je nieuwe \"Toevoegen aan bladwijzers\" " "snelkoppeling." #: add.php:25 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Maximum aantal bladwijzers is: %d" #: lib/Application.php:84 msgid "_Browse" msgstr "_Bladeren" #: lib/Application.php:94 msgid "_New Bookmark" msgstr "_Nieuwe bladwijzer" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "click" msgstr "Klik hier" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "clicks" msgstr "x aangeklikt" #: app/controllers/BrowseByTag.php:23 #, php-format msgid "tagged %s" msgstr "%s gemarkeerd" trean-1.0.3/locale/pl/LC_MESSAGES/trean.mo0000664000175000017500000040200012171337643016040 0ustar janjan69 |s ) 8$F)k)ٚ %& 5?Pdm ś ՛98 U anO0Ϝ<=O gq z /ĝ!1tG͞`^VNğDCX  ʠѠנޠ 07 HSbkz ա 1+9 e(r  Ģʢ΢!ע3On$$ ף 7K^r  Ƥ Ф ݤ "2 Q^ g u Nʥ-G!b Ŧ ڦ)%5 < GS&Z  ʧ ӧߧB%* P Zhw5Ԩ$ &/Vt{ ĩک(;<%x7G֪G<f%ɫ ͫ׫ ',ݬ* %5 [f oy  ƭӭ  '$ LY bl {  ĮӮخޮ   0:CU jx ɯ ӯޯ  ! +9Q#q@ ְ29L1a!1 1.*`Y@?CNMҳB ;c?;ߴ,6H9"ܵ6 < HR ep /0 + 1 > KXar x*  - CQcrz  ȸָ *: L V ` ky=ѹ   :DMcvǺٺ;޺!.<*k3ʻݻ(5ɼ00*ý';JZk~Ҿ08@Q` q~(˿49BS\ ao~  4,F ao   *9PctJ *B+n#     +2D ak  (&COIH&@[ dp/<DAGNW`t     %6N cm   " 8CHQY b mw~"{O4$) %3BR fry   + 5@HObi} "-  4B]%s!"  !.>EM R_f v |k      1; BOc}   0<Wmt y "   -6 L Vc y   - 3A<I;b$%J S ^"k ah*.;jUZ mxj  "CBJ4 m)x &=R mz '%Dj|   " 0>Mdv  |g    G c q{  hZz )2At     .;@I[bh    #5FU / ? K Xf w  |^dj o {    1 <Idi n |   48=v  "6La$pEAb   - : FT c m {      "04Rn "  &F]uj #\=   1?Qbkq x     ) 2<RW]nu  1:OUel'~.!()PR   "- 6C R `m|  $&Kgm   ",4!}VGNm  * # 3> T `l|-Z5nUJRk|%# )7OF  lX`o  $/2; @J R ^ iRu& ,!&HZmu}   2 IVem  * :HC^5\5D'T%|W!%iB&9 .Ia%1.''V!~&944%i ;#Gk "  J?-Qm;[Wl} -? =I ; %0V i(# !=?}0  $ . 4 C V ^ o          ' .  7 A  G  R  \  g  t         7     ; 'E  m z  & )  8 +9 .e  # ! * - ;N  ( 4 19BJQW_ nxm <FVem     !0?_ v      ( 6 B(Py   (&%%,0R34-0%K'q(&.$=Y=s##+!%$G%l/)5633j-""%*H s"$"5!P#r+!)1'@!h-2/ 3;0o$$,"&:aw %2831l1|A%,9C#}-++)'3Q(%-* '- (U C~ ( * Z!(q!&!:!+!1("Z"/y" ";")""#D=#J# ## $U-$$H$$$ $ % %%1!%S%Z%:`%%[&Vz&B&''#' )' 5'B'E'M'b'v' ' ''''"'"('($E("j(($( ( (! )-) A) N)[)c) i) v))))) )) ) ) ** %*2* 9*C*b*** ** **2*;+A+ X+ d+q+ z+++ ++ ++ +++ +, $, /,<,D,G,O,`,y, , ,,,,, ,,,/,6- S-t-H-L-e'.A.F.n/ /!////// // / / 000,0 >0I0^0o00 0000 0 0"0"0% 1%01/V1,1+1,15 23B2%v2/2,2+2#%3(I3*r3/3C354G4/4158A5z5!667&7*7'88*88c878E8&9%A9!g9(9+99"9):&C:%j:(:E:I:FI;;;v; +<5<s<yK=+=T=F>^>p>>>>>>>?\3?Q???#@;@-P@~@@@@@ @@@ @ A A#A)A1A 6A @A KAUAfA uA AAA A AAAA AAAAA B B B(B :B HB UB `B jB tB B B BB BBBB B BBBCC CC C C#C(C.C4C ;CECIC NC YCdC~CCCCQDTDZDbDjD rDD D DDD DDDDDE E&EqY#Y;Y>Z@OZ>Z"ZZZ[[ $[/[1[&[-\-G\)u\ \ \ \\ \\ \ \ ]] &]2] :]F]V]+n]]]]] ] ]]] ^ ^(^>^B^ K^W^l^{^ ^+^ ^ ^ ^^ ^ ^^ _ %_/_ A_ L_&V_}___ _ ___"_T ` u`` `` ````6 a@a;Ta aaa aa+a+b$?bbdbGbDcmTcOcNdFadFdKd9;eGue<e2e!-f"Of(rffffffg g=,gAjggg gggh h (h5hHh[h ahohh!h5hhh h hi i i%i.i 7iCi Ii Viaiqii i iii iiij j 1j;jCj KjXj<qjjjjjk (k5k!>k `kkk k(kkkkBl&Gl>nl>l6l#m HR b lvz~ Ȝۜ( 6A\ mz&ӝ'"J-['.RCM %:J`o Ƞנ + 5?H Y eow   Ρ )?V\bgn/(*ߢ %rC&ϣx&o ɤϤ    ' 8E N [iz ť֥"< LZk æͦӦ$ &/Vv  ̧է)2#I8m-ԨhVfv    ۩    &9 Uc | ͪ ת&3' [e~ ˫իܫ <@K %FEe#ϭ "4CI*X  ͮٮ 0*q[Bͯu !B["q""ڱ #V3Ʋ Ͳزov}ݳ 2 >LOV ] is75޴ 0 )Q{ ɵе׵  3FZnw) Զ *D_| NC^T иni~]*>[xɺ޺ #:<7w0(4D4y"Ѽ! + JW+r н 0 ) 7AE ?bվ88^qп'?Xi?EBH OYx!|D4G d".2=K?7U[o  "!DXq w   +29M?T '  #*6a6~-B&#A.e$+F,,I5v   &7 PZ ku   y06 FTZnt     "> P+]     /7?S o {* 1J$c$##"+7%c+.*-Jd$ %'%6"\+6*%*B m%w%#(2"[\~";Yx**Gf%%1$")Gq(" 7 "D+g5vJ.3&5Z.306$3[0..72V7077*3br1 7;7s:@'GG+&SUgII Dj%R (5> CPU"Z}BeP_F]e k v   """9"\.0""<"_"&    ;W o z  ' %3 Y f??^p    $ 2@`(p     " )4J8a>[Yj}TB@ r}   % BP cp 8Jd~;;8*c}3-<-*j2(6[8{/ *+,V16)''>f/*5::R75<G8EH 1 ab%8fI2'Q!y!cW!y)//Hd y     #,17 HU\cu  * 8FW^ fry     + 0 <GN R \ g u NS Xc ju    !$,Qb kux& ]WKHL# ]5 iysJ/ZNUY*`6:9TE_x }62N!LELJsF?m|fK.B=mYqu&<Y1a,/2 93H!D=r? E>3MJMU%c$ttbC}kDSS2>G|s:B2)9/eCaWB181 d3 cpzg[JV-l]0:6gpKy0$0:Ek>ZIUxGf=X06;_Q\'3 .)m4 g0kr:Q+{|}+3rU,^NNRz"+HV*t_cUdu"|0Q r;7d?i^)n7CDiM$.`lQH&eY-?x79 [PkGv3[x'`X=d'u~ z^)Dr\Xpz (A8&[PF 5w7 o'9&b=^$<$lV *bT<.y*~-C]}p-#!<-",w,f(/"\O4Oe 4*lqx$ n42662h,iAg:\865i =G&aa4<$8O?R +F <I36wKml[y}gcQe4B#NMZ^t?MY{AB{-,#'wnnua52vOBhBVwgI(*8xR%vH)1O#.y'hl|j;> Zs*ZWh)b+zsI-S,Tg;R~R{EI}>w+bo #\^po1?(@ cFux@\!poJkJ(&1:GLc  >OIT&%%Te $D `,k~u@VA);~vE{YfMqan]j_%ihXy!5k\m]o[% wdj!|rW1 (Czj>i R7A%VF+5v !Wt'NK ~8 Z*K Le b4qh}5 X!r.  .{pY~H3-oH(q"XPK s(]FJj"tWAVfm@#)j<z`Wqd0.F9T1SmUX|GsI;f"Tec0q#tP@Ql ;uS hN@2_`_f7%4Pv9d DPOv[ML`// b_nA8/a ZDS5CS"/'{y=G^QCn &7 L+o@EjRUP at "%s" already exists and was not imported."%s" updated."%s" was added to the groups system."%s" was added to the permissions system."%s" was not copied because it is a list."%s" was not created: %s."%s" was not renamed: %s.%d %s and %s%d Folders and %d Bookmarks imported.%d day%d days%d events%d hour%d hours%d hour, %d minutes%d hours%d hours, %d minute%d hours, %d minutes%d minute%d minutes%d minutes%d to %d of %d%d-day forecast%d. %s of %s%s %sShare with the %s %sgroup%s and %sallow them to%s %s%s %sShare with the users:%s %s and %sallow them to%s %s%s - Notice%s Bookmarks%s Configuration%s Don't repeat %s or repeat %s daily, %s weekly, %s monthly %s or %s yearly %s%s Don't set %s or %s set %s before the event %s%s Private %s — hides details if calendar is public %s%s Response Codes%s Tasks - Confirmation%s added.%s at %s%s at %s %s%s characters%s don't set %s or %s set %s before due date %s%s file successfully imported%s file successfully imported.%s has cancelled "%s".%s in %s%s is due in %s%s is now incomplete.%s is ready to perform the tasks checked below. Check the box for any operation(s) you want to perform at this time.%s notifications%s successfully imported%s to %s of %s%s wants to share the calendar "%s" with you to grant you access to all events in this calendar.%s wants to share the calendar %s with you to grant you access to all events in this calendar.%s's Bookmarks%sShare with everyone%s (public) and %s %smake it searchable%s by everyone too%sStandard sharing.%s You can also set %sadvanced sharing%s options.%sWarning:%s also %sdeletes all events%s currently in the calendar.(highest)(lowest), gusting , gusting %s %s1 Line1 day1 hour1 star out of 510 rows12 Hour Format15 minutes15 rows1xx Response Codes (%s)2 Line2 stars out of 520 minutes24 Hour Format24 hours24-hour format25 rows2xx Response Codes (%s)3 Line3 stars out of 530 minutes3xx Response Codes (%s)4 stars out of 54xx Response Codes (%s)5 minutes5 stars out of 55xx Response Codes (%s)6 hoursA browser that supports iframes is requiredA charactersA due date must be set to enable alarms.AM CloudsAM RainAM ShowersAM T-StormsAM/PMANDAcceptedAccess denied completing task %s.Access denied deleting note.Access denied deleting task.Access denied editing task.Access denied editing task: %sAccess denied moving the note.Access denied moving the task to %s.Access denied removing task from %s.Access denied saving note to %s.Access denied saving task to %s.Access denied saving task: %sAccess denied to %sAccess permissionsAccount InformationAccount PasswordActionsActiveSync Device AdministrationAddAdd ContentAdd EventAdd Here:Add HolidaysAdd MembersAdd Remote CalendarAdd TaskAdd a groupAdd a new eventAdd a new user:Add attendees e-mail addressesAdd event toAdd fileAdd new alarmAdd new tagsAdd pairAdd resourceAdd toAdd to BookmarksAdd to attendeesAdd userAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Added task list not found.Adding contacts is not available.Adding users is disabled.AddressAddress BookAddress Book ListAddress Book ListingAddress BooksAddress book of %sAddress books that will not be displayed:Advanced SearchAgendaAlarm textAlarm titleAlarmsAlert me %s as default %s or %s using:AliasAllAll AttendeesAll Authenticated UsersAll CalendarsAll FutureAll PastAll VisibleAll dayAll of your events older than %d days will be permanently deleted.All synchronization sessions deleted.All tasksAll-day eventAlready ExistsAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAn alarm must be set to specify a notification methodAn error occured listing folders: %sAn error occurred counting folders: %sAn unknown error has occured.AnswerAny Part of the fieldApplicationApplication Context: Application ListApplication is ready.Application is up-to-date.ApproveArabic (Windows-1256)Are you sure that you want to delete %s?Are you sure that you want to delete the selected contacts?Are you sure you want to delete '%s'?Are you sure you want to delete the selected bookmarks?Are you sure you want to delete this calendar and all the events in it?Are you sure you want to delete this task list and all the tasks in it?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?ArtAscendingAscending (A to Z)AssigneeAssistantAtAttached is an iCalendar file with more information about the event. If your mail client supports iTip requests you can use this file to easily update your local copy of the event.Attempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.AttendanceAttendeeAttendeesAttendees and ResourcesAttendees:Authenticated to:AutomaticAutomaticallyAvailabilityAvailable fields:BOFH ExcusesBackBad GatewayBad RequestBaltic (ISO-8859-13)Base graphics directory "%s" not found.Basic SearchBirthdayBirthdaysBlock SettingsBlock TypeBlock titleBlue MoonBlue and WhiteBookmark AddedBookmarksBookmarks FeedBothBrownBrowseBurnt OrangeBusiness CategoryCSVC_alendarCache init was not completed.Cal_endarCalendarCalendar ICS fileCalendar InformationCalendar ListCalendar SummaryCalendar not foundCalendar of %sCalendar ownerCalendar titleCalendarsCamouflageCan't create a new event.CancelCancel Problem ReportCancel WipeCancelledCancelled: %sCannot delete event: %sCannot delete exceptions (yet).Cannot parse event description "%s"Cannot reset password automatically, contact your administrator.Cat_egoryCategories and LabelsCategoryCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange PermissionsChange Your PasswordChange your note sorting and display preferences.Change your personal information.Change your task sorting and display preferences.Changed descriptionCheckingChildrenChoose %sChoose an address bookChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Choose how you want to be notified about event changes, event alarms and upcoming events.Choose how you want to receive reminders for events with alarms:Choose how you want to receive reminders for tasks with alarms:Choose if you want to be notified of new, edited, and deleted events by email:Choose if you want to be notified of new, edited, and deleted tasks by email:Choose if you want to be notified of task changes and task alarms.Choose if you want to receive daily agenda email reminders:Choose if you want to receive reminders for events with alarms:Choose the calendars to include in the above Free/Busy URL:Choose the views to show event locations in:Choose the views to show event start and end times in:Choose which address books to display, and in what order:Choose which address books to use.Choose your default Notepad.Choose your default calendar.Choose your default task list.ClearClear QueryClear allClear out user: %sClear userClear user dataClearing LateClick or copy this URL to display this calendarClick or copy this URL to display this task listClick to ContinueClick to add text...ClicksClient AnchorCloseClose SearchClose WindowClose windowCollapseCollapse SidebarColorColor PickerColumn PreferencesCombineComma separated valuesComma separated values (Microsoft Outlook)CommandCommand ShellComments: %dCommon CityCommon CountryCommon PhoneCommon State/ProvinceCommon StreetCommon Video CallCommunicationsCompanyCompany AddressCompleteComplete "%s"Complete TaskComplete tasksCompletedCompleted %s.Completed TasksCompleted tasksCompleted?Completely collapsedCompletely expandedCompletion DateCompletion StatusComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configure %sConfirm DeletionConfirm PasswordConfirm deletion of events?ConfirmedConflictConnection failed: %sConnection failureContact SearchContacts displayed:ContinueControl access to this folderCookieCopied bookmark: CopyCopy this URL for use wherever you need your Free/Busy URL:Copying folders is not supported.Could not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not open %s.Could not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the backup configuration file %s.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountCountryCreateCreate Address BookCreate CalendarCreate New IdentityCreate NotepadCreate ResourceCreate Task ListCreate a New EventCreate a new Address BookCreate a new Contact List in:Create a new Local CalendarCreate a new NotepadCreate a new ResourceCreate a new Resource GroupCreate a new Task ListCreatedCurrentCurrent 4 PhasesCurrent AlarmsCurrent SessionsCurrent TimeCurrent WeatherCurrent condition: Customize tasks to run upon logon to %s.Cyrillic (Windows-1251)DB schema is out of date.DB schema is ready.DDDNS Failure or Other Error (%s)DataDataTreeDataTree BrowserDatabaseDateDate ReceivedDate and time:Date:DayDay(s)De_leteDeclinedDefaultDefault CalendarDefault ColorDefault NotepadDefault ShellDefault Task ListDefault location to use for location-aware features.Default sorting criteria:Default sorting direction:Default usersDefaults for new tasksDefinitionsDelay Start UntilDelegateDeleteDelete "%s"Delete %sDelete All SyncML DataDelete BookmarkDelete ConfirmationDelete GroupDelete button behaviourDelete denied.Delete exception on %sDelete this folderDelete this noteDelete this taskDeleted %d event older than %d days.Deleted %d events older than %d days.Deleted %s.Deleted bookmark: Deleted configuration upgrade script "%s".Deleted folder: Deleted synchronization session for device "%s" and database "%s".Deleted the folder "%s"Deleting contacts is not available.Deletion failedDepartmentDescendingDescending (9 to 1)Descri_ptionDescribe the ProblemDescriptionDescription:DevelopmentDeviceDevice ManagementDevice successfully removed.Dew PointDew Point for last hour: Dew point: DisableDisplayDisplay 24-hour times?Display OptionsDisplay PreferencesDisplay RowsDisplay URLDisplay detailed forecastDisplay forecast (TAF)Do you want to confirm deleting entries?Does the first row contain the field names? If yes, check this box:Don't send me a notification if I've added, changed or deleted the event?Don't send me a notification if I've added, changed or deleted the task?Don't share this calendarDon't share this task listDownloadDownload %sDownload FolderDownload generated configuration as PHP script.Download vCardDrag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrugsDue ByDue DateDue dateDue date specified.Duplicate SearchDuplicates of %sDuplicates of %s "%s"DurationDuration DayDuration MinuteDynamicE charactersEditEdit "%s"Edit %sEdit BookmarkEdit BookmarksEdit NoteEdit PermissionsEdit Permissions for %sEdit Preferences forEdit TaskEdit categories and colorsEdit permissionsEdit permissions for "%s"Edit permissions for %sEdit resourcesEdit: %sEducationEmailEmail AddressEmailsEmbed ScriptEmbed calendar on external websiteEmpty NoteEn_dEnd DateEnd DayEnd HourEnd MinuteEnd MonthEnd OnEnd TimeEnd YearEnd:Enter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting task: %sError searching the address book: %sError when communicating with the server.Estimated TimeEthnicEventEvent DefaultsEvent ICS fileEvent Status:Event deleted:Event not foundEvent not found: %sEvent titleEventsEvents for this dayEvents from %sEvents matching "%s"Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExceptionExceptionsExecuteExpandExpectation FailedExportExport Address BookExport BookmarksExport CalendarExport ICS fileExport TasksExport only the selected contacts.Export the following address book completely.Extra LargeFTP upload of configurationFade to GreenFailed to add %s to %s: %sFailed to browse listFailed to find object to be added: %sFailed to search the address bookFailed to search the directory: %sFairFavourite RecipientsFaxFeed AddressFeels LikeFeels like: File ManagerFile to import:FilterFiltersFindFind in MapsFinishFirefox/MozillaFirst NameFirst level shownFolderFolder ActionsFolder names must be non-emptyFolder to import into:FoodForbiddenForecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FortuneFortune typeFortunesFortunes 2ForumsFoundFrFreeFree/Busy InformationFreebusy URLFridayFromFrom %s at %s to %s at %sFrom %s to %sFrom the Full DescriptionFull NameFutureFuture tasksGeneral PreferencesGenerate %s ConfigurationGenerated CodeGlobal PreferencesGoGoogle SearchGoto %sGreek (ISO-8859-7)GreenGreyGroupGroup AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTTP StatusHTTP Version not supportedHebrew (ISO-8859-8-I)HeightHelpHelp _TopicsHemisphereHere is the beginning of the file:Hi-ContrastHide Advanced PreferencesHide NotificationsHide ResultsHighHighestHighest RatedHighest-rated BookmarksHolidaysHolidays are disabledHolidays:Home AddressHome Address ExtendedHome CityHome CountryHome DirectoryHome EmailHome FaxHome LongitudeHome Mobile PhoneHome PhoneHome Post Office BoxHome Postal CodeHome State/ProvinceHome Street AddressHordeHorde WebsiteHour(s)How long should the time slots on the day and week views be?How many days of Free/Busy information should be generated?How many events should be displayed per day in the month view? Set to 0 to always show all events.How many fields (columns) are there?HumidityHumidity: I charactersI.e. Dinner with John tomorrow 8pmIcons OnlyIcons for %sIcons with textIdeasIdentity's name:If your email client doesn't support iTip requests you can use the following links to: %saccept%s, %saccept tentatively%s or %sdecline%s the event.ImportImport Address Book, Step %dImport BookmarksImport Calendar, Step %dImport ICS fileImport Notes, Step %dImport Tasks, Step %dImport, Step %dImport/Export Address BooksImported field: %sImported fields:Importing should %s %sreplace this calendar%s.In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".In: Include SubfoldersIncompleteIncomplete TasksIncomplete tasksIncorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInformation no longer available.InlineInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internal Server ErrorInternet ExplorerInternet Explorer users will need to export their current Favorites by going to the "File" menu and selecting "Import and Export".Invalid IDInvalid VAT identification number format.Invalid action %sInvalid address book: %sInvalid application.Invalid contact unique IDInvalid emailInvalid entryInvalid hash.Invalid key specified.Invalid license key.Invalid location provided.Invalid nameInvalid parent permission.Invalid partner id.Invalid product code.Invalid tasklist file requested.Invalid tasklist name supplied.Invalid tasklist requested.Invitation from %s to the calendar "%s"Invitation from %s to the calendar %sIsolated T-StormsJapanese (ISO-2022-JP)Job TitleKidsKindKorean (EUC-KR)LDIF Address BookLanguageLargeLast 24 hoursLast ModifiedLast NameLast Password ChangeLast Sync TimeLast Updated:Last change: Last login: %sLast login: %s from %sLast login: NeverLavenderLawLength RequiredLight BlueLight Rain ShowerLight Rain with ThunderLimerickLinux CookieList TablesList all contacts when loading the contacts screen? (if disabled, you will only see contacts that you search for explicitly)Listing sessions failed: %sListing users is disabled.LiteratureLo_cationLoading ...Loading...LocalLocal time: Locale and TimeLocationLocation:Log inLog outLogin TasksLogin failed because your username or password was entered incorrectly.Login failed.LongitudeLoveLowLoyola BlueMMMagicMailMail AdminManage Address BooksManage CalendarsManage NotepadsManage Task ListsManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.ManagerManualMapMark task asMark this as your own contactMatchMatchingMatching fields:Maximum Number of BookmarksMaximum Number of ContactsMaximum Number of FoldersMaximum Number of NotesMaximum number of events to display (0 = no limit)Maximum number of pagesMeMediumMembersMemo TextMentionsMenu ListMenu mode:Metar WeatherMetricMiddle NamesMinuteMinute(s)Missing configuration.MoMobileMobile (Smartphone)Mobile PhoneModeModerateModification DateMondayMonthMonth, Week, and Day ViewsMonths AheadMonths BeforeMoon PhasesMore Options...Most ClickedMost-clicked BookmarksMostly ClearMostly CloudyMostly Cloudy and WindyMostly SunnyMoveMoved PermanentlyMoved bookmark: Moved folder: Mozilla/Firefox users will need to export their current Bookmarks by going into "Bookmark Manager" and selecting "Export" from the "Tools" menu.Mulberry Address BookMultiple ChoicesMy AccountMy Account InformationMy Address BookMy CalendarMy CalendarsMy Calendars:My Free/Busy URLMy Notepads:My NotesMy PortalMy Portal LayoutMy Task ListsMy Task Lists:My TasksNO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPEN_ameNa_meNameName FormatName PrefixesName SuffixesName:NeverNew BookmarkNew CalendarNew CategoryNew ContactNew EventNew FolderNew Messages:New NoteNew TaskNew Task ListNew Username (optional)New folderNew passwordNew passwords don't match.NewsNextNext 24 hoursNext 4 PhasesNext DayNext MonthNext WeekNext YearNext dayNext monthNext weekNicknameNightNoNo Bookmarks foundNo ContentNo NotificationsNo SoundNo address book specifiedNo alarmNo available configuration data to show differences for.No bookmarks to displayNo change.No contacts foundNo delayNo due date.No events to displayNo free/busy url found for %s.No icons found.No itemsNo items to displayNo location is set.No location provided.No matching contactsNo note loadedNo notes match the current criteria.No offensive fortunesNo parent taskNo tasks have been added.No tasks to displayNo username specified.No valid email address foundNo version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.No_teNon-Authoritative InformationNoneNordic (ISO-8859-10)Northern HemisphereNot AcceptableNot CompletedNot FoundNot ImplementedNot ModifiedNot PrivateNot completedNot configuredNot foundNote CategoryNote DetailsNote TextNote _TextNote not found.Note:Note_pad:NotepadNotepad ListNotepad of %sNotepadsNotesNotes SummaryNothing to edit.NoticeNotificationNotificationsNowNumber of articles to displayNumber of bookmarks to showNumber of items per pageO charactersOKORObject CreatorObject not foundObject with UID %s does not exist!OccupationOfficeOkOld passwordOld password is not correct.OnOn all calendars I have read access toOn all shown calendarsOn all shown task listsOn my calendars onlyOn my task lists onlyOn newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Only offensive fortunesOnly one vcard supported.Only the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOptionalOptional AttendeesOptionsOr enter a user name:OrganizationOrganizingOtherOther InformationOther OptionsOther PreferencesOther charactersOverviewOwnerOwner:Owner: %sPGP Public KeyPHP CodePHP ShellPM FogPM Light RainPM RainPM ShowersPM SnowPM SunPM T-ShowersPM T-StormsP_HP ShellParent taskPartial ContentPartly CloudyPasswordPassword:Passwords must match.PastPastePayment RequiredPeoplePerform Login TasksPermanently delete this contact?Permanently delete this event?Permission "%s" not deleted.Permission DeniedPermission deniedPermissionsPermissions AdministrationPersonalPersonal InformationPhotoPhoto MIME TypePhotosPine Address BookPlease enter a name for the new folder:Please enter a password.Please enter a username.Please enter correct values in the form first.Please name the new contact list:Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Policy KeyPolicy Key:PoliticsPortalPosted %s via %sPrecipitation
chancePreferencesPressurePressure at sea level: Pressure: PreviousPrevious DayPrevious MonthPrevious WeekPrevious dayPrevious monthPreviously used tagsPrint ViewsPrior EventsPriorityPrivatePrivate Address BookPrivate TaskPrivate eventPrivate?Problem DescriptionProxy Authentication RequiredPurge old events from your calendar?Purge old events how often:QueryQuick Task CreationQuick _insertRainRain EarlyRain LateRandom FortuneRatingReadRead enabledReading contacts is not available.Really delete "%s" and all of its bookmarks?Really delete "%s"? This operation cannot be undone.Really delete the address book "%s"? This cannot be undone and all contacts in this address book will be permanently removed.Really delete this note?Really delete this task?Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:RemarksReminderRemoteRemote CalendarsRemote Calendars:Remote Host:Remote ServersRemote URL (http://www.example.com/horde):RemoveRemove %sRemove AttendeeRemove TagRemove from this listRemove pairRemove userRemove user: %sRename this folderRepeatRepeat %s every day %s or %s every %s days %sRepeat %s every month %s or %s every %s months, %s on the same %s date %s or %s weekday %sRepeat %s every week %s or %s every %s weeks %s On %sRepeat %s every year %s or %s every %s years %s on the same %s date %s day of the year %s month and weekday %sReplace existing address book with the imported one? Warning: This deletes all entries in your current address book.ReportsRequest Entity Too LargeRequest Time-outRequest-URI Too LargeRequested object not found.Requested range not satisfiableRequested service could not be found.RequiredRequired AttendeesRequired ResourcesResetReset ContentReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset to DefaultsReset your passwordResource ListResourcesResponseResponse typeRestrict day and week views to these time slots, even if there are earlier or later events?ResultsResults for %sReturn to Main ScreenReturn to Single ResourcesReturn to calendarsReturn to my calendarsRetype new passwordRevert ConfigurationRiddlesRunS/MIME Public CertificateSQL ShellS_QL ShellSaSaturdaySaveSave "%s"Save %sSave As NewSave EventSave as PDFSave generated configuration as a PHP script to your server's temporary directory.Save search as a virtual address book?Saved %s.Saved configuration upgrade script to: "%s".Saving contacts is not available.Scattered ShowersScattered T-StormsScienceSea_rchSearchSearch BookmarksSearch In:Search ResultsSearch Results (%s)Search _Text:Search duplicates in:Search failedSearch failed: %sSearch for Calendars:Search for Notepads:Search for Task Lists:Search for: Search resultsSearch:Search: Results for "%s"Searching is not available.See OtherSelect AllSelect All/Select NoneSelect NoneSelect a groupSelect a group to addSelect a group to add:Select a new owner:Select a serverSelect a userSelect a user to add:Select address book sources for adding and searching for addresses.Select all fields to search when expanding addresses.Select confirmation preferences, how to display the different views and choose default view.Select contactSelect resourceSelect the address book to export from:Select the address book to import to:Select the address books that should be used for synchronization with external devices:Select the calendar to import to:Select the calendar(s) to export fromSelect the characters you need from the boxes below. You can then copy and paste them from the text area.Select the charset of the source file:Select the columns that should be shown in the list view:Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the export format:Select the file to import:Select the first weekday:Select the format of the source file:Select the format used to display names:Select the format used to sort names:Select the task list(s) to export from:Select the task states to export:Select the time delimiter:Select the time format:Select the view to display on startup:Select view to display by default and paging preferences.Select which fields to display in the address lists.Select which format to display names.Select your color scheme.Select your preferred language:Select: %s, %sSelected address book "%s".Selected addressesSend Problem ReportSend invites%s to all attendeesServer TimeServer data wrong or not available.Service UnavailableSession AdminSessionsSet default values for new events.Set due dateSet end dateSet preferences to allow you to reset your password if you ever forget it.Set start dateSet up remote servers that you want to access from your portal.Set your Free/Busy calendars and your own and other users' Free/Busy preferences.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Shared Address BooksShared CalendarsShared Calendars:Shared DirectoryShared Task ListsShared Task Lists:SharingShort SummaryShould access keys be defined for most links?Should the Notepad be shown in its own column in the List view?Should your list of bookmark folders be open when you log in?ShowShow %sShow Advanced PreferencesShow BothShow Free/Busy legend?Show action buttons?Show delete, alarm, and recurrence icons in calendar views?Show due dates?Show last login time when logging in?Show notepad name?Show notes from these categoriesShow notificationsShow only events that have an alarm set?Show priorities?Show shared calendars side-by-side?Show task alarms?Show tasklist name?Show the %s Menu on the left?Show the dynamic view by default, if the browser supports it?Show this noteShow time of day between each day in week views?ShowersShowers EarlyShowers LateShowers in the VicinityShowing calendar:Showing calendars:Skip Login TasksSmallSort DirectionSort bookmarks by:Sort bySort by CategorySort by Completion StatusSort by NameSort by Note TextSort by PrioritySort direction:Sort tasks by:South European (ISO-8859-3)Southern HemisphereSpecial Character InputSportsSpouseStandardStar TrekStartStart DateStart DayStart HourStart MinuteStart MonthStart OnStart TimeStart YearStart date specified.Start:Stat_usState ManagementStatusStop %s never%s, %s at %s or %s after %s recurrences %sStreamSuSubdirectory "%s" not found.SubscribeSubscribe from another calendar programSubscriptionSubscription URLSuccessSuccessfully added "%s" to the system.Successfully added %d contact(s) to list.Successfully added %s to %sSuccessfully cleared data for user "%s" from the system.Successfully created the contact list "%s".Successfully created virtual address book "%s"Successfully deleted "%s".Successfully deleted %d contact(s).Successfully merged two contacts.Successfully removed "%s" from the system.Successfully removed %d contact(s) from list.Successfully reverted configuration. Reload to see changes.Successfully saved "%s".Successfully saved backup configuration.Successfully saved the backup configuration file %s.Successfully updated "%s"Successfully wrote %sSummarySun RiseSun SetSundaySunnySunriseSunrise/SunsetSunrise: SunsetSunset: Switching ProtocolsSystem CalendarSystem Task ListSystem calendar.System task lists don't have an owner. Only administrators can change the task list settings and permissions.T-ShowersT-Showers EarlyT-Showers LateT-StormT-Storm and WindyT-StormsT-Storms EarlyT-Storms LateTab separated valuesTag CloudTagsTarget Address BookTask DefaultsTask ListTask List DescriptionTask List InformationTask List ListTask List NameTask List and Share PreferencesTask List owned by %s.Task ListsTask NameTask NoteTask SearchTask UID not foundTask description:Task list ICS fileTask list of %sTask list ownerTask not found.Task titleTasksTasks SummaryTasks from %sTemperatureTemperature: Temperature
(%sHi%s/%sLo%s) °%sTemplateTemporary RedirectTentativeText AreaText OnlyThThe %s file didn't contain any contacts.The %s file didn't contain any events.The %s file didn't contain any notes.The %s file didn't contain any tasks.The Calendar backend is not currently available.The Calendar backend is not currently available: %sThe Remote Wipe for device id %s has been cancelled.The Tasks backend is not currently available.The Tasks backend is not currently available: %sThe address book "%s" does not exist.The address book "%s" has been created.The address book could not be purged: %sThe addressbook "%s" has been deleted.The addressbook "%s" has been renamed to "%s".The addressbook "%s" has been saved.The alarm has been deleted.The alarm has been saved.The authentication information you specified wasn't accepted.The calendar "%s" has been created.The calendar "%s" has been deleted.The calendar "%s" has been renamed to "%s".The calendar "%s" has been saved.The calendar could not be purged: %sThe calendar title must not be empty.The connection to the server has been restored.The contact you requested does not exist.The current hourThe default e-mail address to use with this identity:The event could not be deleted from the remote server.The event notification to %s was successfully sent.The file "%s" has been deleted.The free/busy url for %s cannot be retrieved.The note was deleted.The notepad "%s" has been created.The notepad "%s" has been deleted.The notepad "%s" has been renamed to "%s".The notepad "%s" has been saved.The passwords don't match.The remote calendar was not found.The requested contact was not found.The requested event was not found.The requested feed (%s) was not found on this server.The requested task was not found.The resource "%s" has been deleted.The resource "%s" has been renamed to "%s".The resource "%s" has been saved.The resource group "%s" has been deleted.The resource group "%s" has been renamed to "%s".The resource group "%s" has been saved.The server "%s" has been deleted.The server "%s" has been saved.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The task "%s" has been added to task list "%s".The task "%s" has been deleted from task list "%s".The task "%s" has been edited on task list "%s".The task list "%s" has been created.The task list "%s" has been deleted.The task list "%s" has been renamed to "%s".The task list "%s" has been saved.The task list title must not be empty.The time span to showThe user "%s" already exists.The user "%s" does not exist.Themes directory "%s" not found.Then:There are no bookmarks in this folderThere are no events matching the current criteria.There are no preferences available for this application.There are no tasks matching the current criteria.There has been no contact with the server for several minutes. The server may be temporarily unavailable or network problems may be interrupting your session. You will not see any updates until the connection is restored.There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem completing %s: %sThere was a problem copying the bookmark: %sThere was a problem creating the virtual address book: %sThere was a problem deleting %s: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the folder: %sThere was a problem moving the bookmark: %sThere was a problem moving the folder: %sThere was a problem removing "%s" from the system: There was a problem saving the task: %s.There was a problem updating "%s": %sThere was an error accessing the calendar: %sThere was an error adding the bookmark: %sThere was an error adding the event: %sThere was an error adding the folder: %sThere was an error removing notes for %s. Details have been logged.There was an error removing the note: %sThere was an error saving the bookmark: %sThere was an error saving the contact. Contact your system administrator for further help.There was an error saving the folder: %sThere was an error saving the note: %sThere was an error sending an event notification to %s: %sThere was an error viewing this notepad: %sThere was an error with the requested permissionsThere were no tasks to export.These address books will display in this order:This MonthThis calendar requires to specify a user name and password.This contact has been marked as your own.This file format is not supported.This is an exception to a recurring event originally scheduled on %sThis is an exception to a recurring event originally scheduled on %s at %sThis is the notification backlogThis is what the server said:This is what the server said: %sThis note has been encrypted, and cannot be decrypted without a secure web connectionThis note has been encrypted.This will be the default address book when adding or importing contacts.ThunderThursdayTime ZoneTime formatTime spanTime:Timestamps of successful synchronization sessionsTit_leTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To make it easier to find, you can enter comma separated tags related to the event subject.To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.To subscribe to this task list from another program, use this URL:TodayTomorrowTotalTraditionalTranslationsTuTuesdayTurkish (ISO-8859-9)Twitter IntegrationTwitter Timeline for %sU charactersU.V. index: URLUnable to delete "%s": %sUnable to delete "%s": %s.Unable to delete calendar "%s": %sUnable to delete tasklist "%s": %sUnable to find contact owner.Unable to load the definition of %s.Unable to locate requested addressUnable to parse event.Unable to save address book "%s": %sUnable to save calendar "%s": %sUnable to save resource "%s": %sUnable to save task list "%s": %sUnable to set like.UnauthorizedUndo ChangesUnfiledUnitsUnknown (%s)UnsubscribeUnsupported Content-Type: %sUnsupported Media TypeUpcoming EventsUpdateUpdate %sUpdate %s schemaUpdate userUpdated "%s".Updated %s.Updated schema for %s.Updated: %s.UploadUse ProxyUse custom notification methodUse default notification methodUserUser AdministrationUser Agent:User InterfaceUser NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to addUser to add:UsernameUsername:UsersUsers in the system:VAT numberVariableVersion CheckVersion ControlVery HighView DayView an external web pageView noteView to display by default:VisibilityVisibility: WarningWeWeatherWeather ForecastWeather data provided byWeb SiteWebsite URLWednesdayWeekWeek %dWeek(s)WelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What do you want to be the default due time for tasks?What is the delimiter character?What is the quote character?What time should day and week views end, when there are no later events?What time should day and week views start, when there are no earlier events?When creating a new task, how many days in the future should the default due date be (0 means today)?When creating a new task, should it default to having a due date?Which day would you like to be displayed as the first day of the week?While browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Whole FieldWidth of the %s menu on the left:WikiWindWind:Wind: WorkWork AddressWork Address ExtendedWork CityWork CountryWork EmailWork FaxWork LongitudeWork Mobile PhoneWork PhoneWork Post Office BoxWork Postal CodeWork State/ProvinceWork Street AddressWork WeekYYYearYesYes, I AgreeYesterdayYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to change this addressbook.You are not allowed to change this calendar.You are not allowed to change this notepad.You are not allowed to change this resource.You are not allowed to create more than %d bookmarks.You are not allowed to create more than %d folders.You are not allowed to delete shares.You are not allowed to delete this addressbook.You are not allowed to delete this calendar.You are not allowed to delete this notepad.You are not allowed to list shares.You are not allowed to remove user data.You are not allowed to view this calendar.You are not an attendee of the specified event.You can change the default settings in the %sNotification options%sYou can snooze it for %s or %s dismiss %s it entirelyYou do not have an email address configured in your Personal Information Preferences. You must set one %shere%s before event notifications can be sent.You do not have permission to view this folder.You do not have permission to view this tasklist.You do not have permissions to delete this address book.You get this message because your calendar is configured to send you a daily agenda. You can change this if you %slogin to the calendar%s and change your preferences.You get this message because your calendar is configured to send you reminders of events with alarms. You can change this if you %slogin to the calendar%s and change your preferences.You get this message because your task list is configured to send you reminders of due tasks with alarms. You can change this if you %slogin to the task list%s and change your preferences.You have been logged out.You have been subscribed to "%s" (%s).You have been unsubscribed from "%s" (%s).You have specified an invalid calendar.You have successfully accepted attendence to this event.You have successfully declined attendence to this event.You have tentatively accepted attendence to this event.You must describe the problem before you can send the problem report.You must select a target address book.You must select a target folder firstYou must select an address first.You must select an server to be deleted.You must select at least one contact first.You must specify a URL.You must specify a name and a URL.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.You requested to be notified when tasks are added to your task lists.You requested to be notified when tasks are deleted from your task lists.You requested to be notified when tasks are edited on your task lists.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your browser is too old to display the dynamic mode. Using traditional mode instead.Your current time zone:Your daily agendaYour daily agenda for %sYour default calendar:Your default notepad:Your default task list:Your full name:Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your preferences have been updated.Your remote servers:Your session has expired. Please login again.[Manage Calendars][Manage Notepads][Manage Task Lists][Problem Report][Resource Calendars][Unknown][Unnamed event]_Alarms_All Tasks_All tasks_Basic Search_Body_Browse_CLI_Category_Category:_Complete_Completed tasks_Configuration_Contacts_DataTree_Delete_Delete Bookmarks_Description_Due Date_Edit_Edit Bookmarks_For: _Future tasks_Goto_Groups_Home_Import/Export_List Notes_List Tasks_Logout_My Address Books_New Bookmark_New Contact_New Event_New Note_New Task_New event_Password_Password:_Permissions_Print_Quick Add_Remove from this list_Reports_Search_Start Date_Task List_Title_Today_Users_Viewamas %sascendingatbusyby meclickclickscompleteddaydaysdescendingevents.icsfrom the %s (%s) at %s %sgustinghoursiCalendar (vTodo)iCalendar is a computer file format which allows internet users to send meeting requests and tasks to other internet users, via email, or sharing files with an extension of .ics.inin %sloadingminutesmore...no formattingno timenot completedon %s at %sorpmpreferencesread and edit the eventsread and edit the tasksread the eventsread the tasksrisingselect...separate e-mail addresses with a commashow differencessteadytasks.icstoto a Contact Listto a different Address Booktype the password twice to confirmvCardvCard (3.0)vNoteweatherweekweeksProject-Id-Version: Passwd H3 (3.1-cvs) Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2007-06-13 22:05+0200 PO-Revision-Date: 2007-05-30 12:02+0200 Last-Translator: adamcios@go2.pl Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit przy %s już istnieje."%s" zaktualizowane.Udało się dodać "%s" do grup.Udało się dodać "%s" do uprawnień."%s" nie został utworzony: %s."%s" nie został utworzony: %s.Nazwa "%s" nie została zmieniona: %s.%d %s i %s%d Foldery i %d Ulubione zaimportowano.%d dni%d dni%d dni%d wydarzenia%d godz.%d godz.%d godz.%s minut%d godz.%d godz., %d minut%s minut%d minut%d minut%d minut%s minut%d do %d z %d%d-dniowa prognoza%d. %s %s%s %sWspółdziel z grupą %s %s %s i %spowól na%s %s%s %sWspółdziel z użytkownikami:%s %s i %spowól na%s %s%s - Uwaga%s zakładkiWygeneruj konfigurację %s%s Nie powtarzaj %s lub powtarzaj %s codziennie, %s tygodniowo, %s miesięcznie %s lub %s rocznie %s%s Bez %s lub %s ustawione %s przed wydarzeniem %s%s Prywatne %s — ukrywa szczegóły przy publicznym kalendarzu %s%s kody odpowiedziHasło z potwierdzeniem%s dodane.%s o %s%s do %s %s%s znaków%s Bez %s lub %s ustawione %s przed terminem %sPlik %s zaimportowany.Plik %s zaimportowany."%s" nie został utworzony: %s.%s w %s%s upływa za %s%s jest teraz nieukończone.Zaznacz pozycję dla ktrej chcesz wykonać operację.%s powiadomieńUdało się zaimportować %s%s do %s z %s%s chce współdzielić z tobą kalendarz "%s" udzielając ci dostęp do wszystich wydarzeń w tym kaledarzu.%s chce współdzielić z tobą kalendarz "%s" udzielając ci dostęp do wszystich wydarzeń w tym kaledarzu.Zakładki %s%sWspółdziel ze wszystkimi%s (publiczne) i %s %suczyń wyszukiwalne%s przez wszystkich%sStandardowe współdzielenie.%s Możesz też ustawić %szaawansowane współdzielenie%s .%sUwaga:%s także %skasuje wszystkie wydarzenia%s obecnie w kalendarzu.(najwyższy)(najniższy), gusting , gusting %s %s1 linia1 dzień24 godz.1 gwizdka mniez z 510 wierszy12-godzinny format%s minut15 wierszy1xx kody odpowiedzi (%s)2 linie2 gwiazdki mniej z 5%s minut24-godzinny format24 godz.24-godzinny format25 wierszy2xx kody odpowiedzi (%s)3 linie3 gwiazdki mniej z 5%s minut3xx kody odpowiedzi (%s)4 gwiazdki mniej z 54xx kody odpowiedzi (%s)5 minut5 gwiazdek mniej z 55xx kody odpowiedzi (%s)24 godz.Dla przeglądarek, ktre nie wspierają obrazkwLiczba znakwTermin Do musi być ustawiony gdy włączany jest alarm.Rano zachmuerzenieRano DeszczDeszcz RanoRano BurzeAM/PMIZaakceptowanyBrak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu katalogu w VFS.Brak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu katalogu w VFS.Brak dostępu przy tworzeniu katalogu w VFS.Brak dostępu przy tworzeniu pliku w VFS.Brak dostępu przy tworzeniu pliku w VFS.Uprawnienia dostępuinformacje o koncieHasło do kontaAkcjeAdministracja użytkownikw HordeDodajDodaj zasobyDodaj WydarzenieDodaj tutaj:Dodaj dni wolneCzłonkowieDodaj Zdalny KalendarzDodaj ZadanieDodaj nową grupęDodaj nowego użytkownika:Dodaj nowego użytkownika:Dodaj emaile uczestnikówDodaj doplikDodaj nowych członkwDodaj nowe znacznikiDodaj paręDodaj tutaj:Dodaj doDodaj do zakładekDodaj do uczestnikówDodaj użytkownikaDodano "%s" do systemu, ale nie można było dodać dodatkowych informacji: %sDodano "%s" do systemu. Możesz się zalogować.Dodana lista zadań nieodnaleziona.Uwierzytelnienie PAM nie jest dostępne.Dodawanie użytkownikw jest wyłączone.AdresKsiążka adresowaLista Książek AdresowychListing AdresówKsiążki adresoweKsiążka adresowa %sKsiążki adresowe które nie będą wyświetlane:Zaawansowanie SzukaniePlan DniaAlternatywny tekst:Tytuły kolumnAlarmyPrzypomnij %s wg. domyślnych %s lub %s za pomocą:AliasWszystkoWszyscy UczestnicyWszyscy uwierzytelnieni użytkownicyWszystkie KalendarzeWszystkie PrzyszłeWszystkie PrzeszłeWszystkie widoczneCały dzieńWszystkie wydarzenia starsze niż %d dni zostaną permanentnie usunięte.Wszystkie sesje synchronizacji skasowaneWszystkie zadaniaWydarzenie całodnioweJuż istniejeAlternatywny login IMSPAlternatywne hasło IMSPAlternatywna nazwa użytkownika IMSPAdres email odzyskiwaniaMusi być ustawiony alarm aby określi metodę powiadomieniaWystąpił błąd wylistowanych folderów: %sWystąpił błąd podczas zliczania folderów: %sPojawił się nieznany błąd.OdpowiedźJakakolwiek część polaAplikacjaAplikacjaAplikacjaAplikacja gotowa.Aplikacja gotowa.ZatwierdźArabski (Windows-1256)Czy na pewno chcesz usunąć %s ?Czy na pewno chcesz usunąć żądanie zapisania się dla %s ?Czy na pewno chcesz usunąć '%s' ?Czy jesteś pewien, że chcesz skasować wybrane zakładki?Czy na pewno chcesz usunąć ten kalendarz i wydarzenia w nim?Czy na pewno chcesz usunąć tą listę zadań i zadania w niej?Czy na pewno chcesz usunąć żądanie zapisania się dla %s ?Czy na pewno chcesz usunąć "%s"?SztukaRosnącoRosnąco (A do Z)PrzydzielającyAfganistanOW załączeniu plik iCalendar z informacjami o wydarzeniu. Jeśli twój klient poczty obsługuje żądania iTip możesz użyć tego pliku do łatwego zaktualizowania lokalnej kopii wydarzenia.Prba skasowania nieistniejącej grupy.Prba skasowania nieistniejącego uprawnienia.Prba edytowania nieistniejącego uprawnienia.Próba edycji nieistniejącego udziału..ObecnośćUczestnikUczestnicyUczestnicy i ZasobyUczestnicy:Autoryzowany do:AutomatycznyAntarktydaDostępnośćDostępne pola:Wymwki BOFHPowrótZła bramkaZła odpowiedźBałtycki (ISO-8859-13)Nie znaleziono bloku "%s" z aplikacji "%s" Podstawowe SzukanieUrodzinyUrodzinyUstawienia blokuTyp blokuTyp blokuNiebieski KsiężycNiebieski i BiałyDodano zakładkęZakładkiDostarczono zakładkiObaBrązowyPrzeglądajPodpalany PomarańczNowa kategoriaCSVKalendarzInicjowanie cache nie zostało zakończone.KalendarzKalendarzKalendarzInformacje o KalendarzuKalendarzKalendarzKalendarz nieznaleziony.Kalendarz %sKalendarzTytuł KalendarzaKalendarzeKamuflażNie można utworzyć nowego wydarzeniaAnulujAnuluj raport o problemieAnulujOdwołanyOdwołany: %sNie można skasować pliku "%s"Nie można skasować pliku "%s"Nie można przetworzyć opisu "%s"Nie udało się zresetować hasła automatycznie, skontaktuj się z administratorem.Kat_egoriaKategorie i oznaczeniaKategoriaCeltycki (ISO-8859-14)Środkowoeuropejski (ISO-8859-2)ZmieńZmień uprawnieniaZresetuj Twoje hasłoZmień preferencje sortowania i wyświetlania notatek.Informacje osobisteZmień swoje preferencje wyświetlania i sortowania zadań.Pełny opis:Sprawdź link... (_k)ChilePodaj hasłoWybierz książkę adresowęWybierz sposób wyświetlania dat (skrót):Wybierz sposób wyświetlania dat (pełny):Wybierz sposób wyświetlania czasu:Wybierz jak powiadamiać o zmianach w wydarzeniach, powiadomieniach i nadchodzących wydarzeniach.Wybierz jak chcesz otrzymywać powiadomienia o wydarzeniach z alarmami:Wybierz jak chcesz otrzymywać powiadomienia o zadaniach z alarmami:Wybierz czy mają być wysyłane powiadomienia o nowych, edytowanych i kasowanych wydarzeniach poprzez email:Wybierz czy powiadamiać o nowych, edytowanych i skasowanych zadaniach emailem:Wybierz czy system ma powiadamiać o zmianach w zadaniach lub alarmach zadań.Wybierz czy chcesz otrzymywać codziennie powiadomienie z planem dnia:Wybierz czy chcesz otrzymywać powiadomienia o wydarzeniach z alarmem:Wybierz kalendarze które mają być uwzględnione w adresie Wolny/Zajęty:Wybierz widoki z wyświetlaną lokalizacją wydarzenia w:Wybierz widoki z wyświetlanymi godzinami początku i końca wydarzeń:Wybierz którą książkę wyświetlać i w jakim porządku:Wybierz które książki adresowe będą używane.Wybierz swój domyślny Notatnik.Wybierz swój domyślny kalendarz.Wybierz swoją domyślną listę zadań.PogodnieWyczyść zapytanieWyczyść wszystkoWyczyść dane użytkownika: %sWyczyść użytkownikaWyczyść dane użytkownikaClearing LateKliknij albo skopiuj ten adres aby wyświetlić ten kalendarzKliknij albo skopiuj ten adres aby wyświetlić tą listę zadańKliknij by kontynuowaćKliknij aby dodać tekst...KliknięciaZnacznik KlientaZamknijZamknij WyszukiwarkęZamknij oknoZamknij oknoZwiń pasek bocznyZwiń pasek bocznyKolorWybierz kolorUstawienia KolumnŁączWartości rozdzielone przecinkamiWartości rozdzielone przecinkami (Microsoft Outlook)KomendaPowłokaKomentarzKomentarzKrajTel. ogólnieWojewództwoPowłokaPowłokaKomunikacjaFirmaAdres domowyUkończoneUkończone "%s"Zadanie UkończoneZadania ukończoneKomputeryUkończone %sZadania UkończoneZadania ukończoneUkończone?Całkowicie zwiniętyCałkowicie rozwiniętyData UkończeniaStan UkończeniaKomputeryWarunkiWarunkiKonfiguracjaRóżnice w KonfiguracjiKonfiguracje synchronizacji z PDA, Smartphonami i OutlookiemKonfiguracja jest nieaktualna.Skonfiguruj %sPotwierdź usunięciePotwierdź hasłoPotwierdź usunięcie wydarzeńPotwierdzoneKonfliktPołączenie nie powiodło się: Połączenie nie powiodło się.Szukaj KontaktówWyświetlane kontakty:KontynuujZarządzanie dostępem dla tego folderuFortunkaSkopiowane zakładki: KopiujSkopiuj ten adres URL jeśli potrzebujesz swój Wolny/Zajęty URL:Kopiowanie folderów jest niewspieraneBłąd podczas łączenia się z serwerem "%s" poprzez FTP: %sBłąd podczas łączenia się z serwerem "%s" poprzez FTP: %sNie udało się usunąć skryptw uaktualniących "%s".Nie można otworzyć %s.Nie udało się zresetować hasła. Niektóre albo wszystkie pola nie są prawidłowe.Spróbuj ponownie albo skontaktuj się z administratorem jeśli potrzebujesz dodatkowej pomocy.Nie można odzyskać konfiguracji.Nie można zapisać kopii bezpieczeństwa konfiguracji. %sNie można zapisać skryptu uaktualniającego do: "%s".Nie można zapisać kopii bezpieczeństwa pliku konfiguracyjnego %sNie można zapisać pliku konfiguracyjnego %s. Możesz albo użyć jednej z opcji by zapisać kod z powrotem na %s albo skopiować ręcznie kod poniżej do %s.Nie można zapisać konfiguracji dla "%s": %sLiczbaKrajStwórzStwórz Książkę AdresowąStwórz KalendarzDomyślna tożsamośćUtwórz NotatnikStwórz ZasóbStwórz Listę ZadańStwórz nowe WydarzenieStwórz nową książkę adresowąStwórz nową listę kontaktów w:Stwórz nowy lokalny kalendarzStwórz nowy notatnikStwórz nowy ZasóbStwórz nową Grupę ZasobówStwórz nową listę zadańUtworzonyObecnyObecne 4 fazyObecne alarmyAktualne SesjeAktualny czasObecna pogodaObecne warunki: Spersonalizuj zadania uruchamiane przy logowaniu do %s.Arabski (Windows-1256)Konfiguracja jest nieaktualna.Aplikacja gotowa.DDAwaria DNS lub Inny błąd (%s)DaneDaneDaneBaza DanychDataData otrzymaniaData i czas:Data:DzieńDniUsuńOdmowaDomyślnyDomyślny kalendarzDomyślny kolorDomyślny NotatnikDomyślny ShellDomyślna Lista ZadańDomyślna lokalizacja dla funkcji wykorzystujących lokalizacje.Domyślne kryterium sortowania:Domyślny kierunek sortowania:Domyślni użytkownicyUstawienia domyślne dla nowych zadańPełny opis:Start opóźniony doDelegateUsuńUsuń "%s"Usuń %sSkasuj wszystkie dane SyncMLUsunięte zakładkiPotwierdzenie kasowaniaUsuń GrupęZachowanie przycisku usuńUsuń niedozwoloneSkasuj uprawnienia dla "%s"Usuń ten folderUsuń tą notatkęUsuń to zadanieSkasowano %d wydarzeń starszych niż %d dni.Skasowano %d wydarzeń starszych niż %d dni.Skasowano %d wydarzeń starszych niż %d dni.UsuńSkasowane zakładki: Skasowano skrypt uaktualniający "%s".Skasowane foldery: Skasowano sesję synchronizacji dla urządzenia "%s" i bazy "%s".Skasowany folder "%s"Rozszerzenie FTP jest niedostępne.Połączenie nie powiodło się.DziałMalejącoMalejąco (9 do 1)Pełny opis:Opisz problemOpisPełny opis:DziałUrządzenieZarządzanie UrządzeniemUdało się zapisać %sPunkt RosyPunkt Rosy dla ost. godziny: Punkt Rosy: Wyświetl tabeleUstawienia wygląduWyświetl czas w formacie 24-godzinnym?Opcje wyświetlaniaUstawienia wygląduWyświetl wierszeWyświetl URLSzczegółowa prognozaDisplay forecast (TAF)Czy chcesz zatwierdzać kasowanie wspisówCzy pierwsza kolumna zawiera pole z nazwami? Jeśli tak, zaznacz to pole wyboruNie wysyłaj mi powiadomienia przy dodaniu, zmianie lub usunięciu wydarzenia?Nie wysyłaj mi powiadomienia przy dodaniu, zmianie lub usunięciu zadania?Nie współdziel tego kalendarzaNie współdziel tej listy zadańŚciągnijŚciągnij %sŚciągniete folderyŚciągnij wygenerowaną konfigurację jako skrypt PHP.Ściągnij vCardPrzeciągnij "Dodaj do zakładek" poniższy link na swóją belkę "Linki"Przeciągnij "Dodaj do zakładek" poniższy link na swój "Osobisty pasek zadań"NarkotykiTermin doTerminTerminNie wybrano numeru.Szukanie DuplikatówDuplikaty %sDuplikaty %s "%s"TrwanieData ekspiracjiData ekspiracjiDynamicznyLiczba znakwEdytujEdycja "%s".Edycja %sEdytuj zakładkęEdytuj zakładkiEdytuj blokEdytuj uprawnieniaEdytuj uprawnienia dla %sZmień Ustawienia dlaEdytuj blokKategorie i oznaczeniaZmień uprawnieniaZmień uprawnienia dla "%s"Zmień uprawnienia dla %sUsuń GrupęEdycja: %sEdukacjaEmailAdres emailEmailZagnieźdź SkryptUmieść kalendarz z zewnętrznej strony wwwBrak rezultatw.KoniecData KońcaKoniec rokuKoniec rokuCo każdą minutęCo miesiącKoniecCzasKoniec rokuKoniec:Proszę podać nazwę dla nowej kategorii:Wpisz pytanie, ktre będzie zadane, jeśli będziesz potrzebować zmienić swoje haslo, na przykład - 'jakie jest imię twojego zwierzaka?':Szczegły zostały zalogowane dla administratora.Błąd przy zapisie "%s".Nie można uzyskać książki adresowej. %sBłąd podczas komunikowania się z serwerem.Szacowany czasEstoniaWydarzenieUstawienia Domyślne WydarzeńPlik ICS wydarzeniaStatusNie kasujWydarzenie nieznalezioneWydarzenie nieznalezione: %sTytuł wydarzeniaWydarzeniaWydarzenia dla dniaZawartość "%s"Wydarzenia pasujące do "%s"Co każde 15 minutCo każde 2 minutyCo każde 30 sekundCo każde 5 minutCo każde pł godzinyCo każde pł godzinyCo każdą minutęPrzykładowe wartości:WyjątekWyjątkiWykonajRozwińBłędna oczekiwanaEksportExport Książki AdresowaEksport zakładekEksport KalendarzaEksportuj plik ICSEksport ZadańEksportuj tylko wybrane kontakty.Eksportuj tą książkę adresową w całości.Ekstra DużeZapisano konfigurację.Przeniekający w ZieleńBłąd podczas kopiowania do "%s".Błąd podczas przenoszenia do "%s".Błąd podczas przenoszenia do "%s".Nie udało się ściągnąć całej książki adresowej.Błąd podczas kasowania katalogu na VFS: %s.DobreUlubieni OdbiorcyFaksAdres domowyOdczuwalneOdczuwalne: Menedżer plikówPlik do importu:FiltryFiltryZnajdźSzukaj na MapieZakończFirefox/MozillaImięPokazany pierwszy poziomFolderCzynności na folderachNazwal folderu nie może być pustaImportuj folder do:JedzenieZabronionyDni Prognozy (note that the returned forecast returns both day and night; a large number here could result in a wide block)Zapomniane hasło?FortunkaTyp fortunkiFortunkiFortunki 2ForaZnalezionyPtWolnyInformacje Wolny/ZajętyWolny/Dostępny URLPiątekWOd %s o %s do %s o %s%s do %s z %sZ Pełny opisImię i nazwiskoPrzyszłePrzyszłe zadaniaUstawienia PodstawoweWygeneruj konfigurację %sWygenerowany kodUstawienia globalneIdźWyszukiwarka GooglePrzejdź do %sGrecki (ISO-8859-7)ZielonySzaryGrupaAdministracja grupamiNazwa grupy"%s" nie został utworzony: %s.GrupyUprawnienia gościaStatus HTTPNie wspierana wersja HTTPHebrajski (ISO-8859-8-I)WysokośćPomocWyświetl tematy pomocyPółkulaPoczątek pliku:Wysoki KontrastUkryj zaawansowane ustawieniaUkryj PowiadomieniaWynikiWysokiNajwyższeNajczęściej odwiedzaneNajczęściej odwiedzane zakładkiDni wolneDni wolne są wyłączoneDni wolne:Adres domowyAdres domowyMiasto domoweKraj pochodzeniaKatalogEmailFaks DomowyTel. dom.Tel. kom. dom.Tel. dom.Domowa skrzynka pocztowaKod pocztowy domWojewództwo DomAdres domowyHordeJak StronaGodzinJak długie mają być przedziały czasowe w widoku dnia i tygodnia?Ile dni Wolny/Zajęty wygenerować?Ile wydarzeń per dzień ma być wyświetlane w widoku miesiąca? Ustaw na 0 aby zawsze pokazywać wszystkie wydarzenia.Ile jest pól (kolumn)?WilgotnośćWilgotność: Liczba znakwn.p. Obiad z Janem dziś o 20.00Tylko ikonyIkony dla %sIkony z tekstemPomysłyNazwa tożsamości:Jeśli twój klient poczty nie obsługuje żądań iTip możesz użyć poniższych linków aby: %szaakceptować%s, %szaakceptować wstępnie%s or %sodrzucić%s wydarzenie.ImportImportuj Książkę Adresową, Krok %sImport ZakładekImportuj Kalendarz, Krok %dImportuj plik ICSImportuj Notatki, Krok %sImportuj Zadań, Krok %dImport, Krok %dImport/Eksport Książka adresowaImportowane pole: %sImportowane pola:Import powinien %s %szastąpić ten kalendarz%s.Na listach poniżej wybierz oba, pole importowane z pliku źródłowego po lewej, i odpowiadające pole dostępne w twojej książce po prawej. Potem kliknij "Dodaj parę" by oznaczyć je do importu. Kiedy gotowe kliknij "Następne".W: Włączając podfolderyNie ukończoneNieukończone ZadaniaZadania nieukończoneNieprawidłowy użytkownik lub alternatywny adres email. Spróbuj ponownie albo skontaktuj się z administratorem.Poszczególni UżytkownicyInformacjeInformacja już nie dostępna.W treściWpisz adres email, na który ma być wysłane nowe hasło:Podaj wymaganą odpowiedź potrzebną do pytania bezpieczeństwa:Wewnętrzny błąd serweraInternet ExplorerUżytkownicy Internt Explorer muszą wyeksportować Ulubione przez menu"Plik" wybierając opcję "Importi Ekspor".Niepoprawny IDNieprawidłowy format plikuNieprawidłowa aplikacja.Dodaj do książki adresowej:Nieprawidłowa aplikacja.Niepoprawny IDNieprawidłowy format plikuNieprawidłowy klucz licencji.Niepoprawny IDNieprawidłowe uprawnienia nadrzędne.Nieprawidłowy klucz licencji.Nieprawidłowa aplikacja.Nieprawidłowe archiwum ZIPNieprawidłowe uprawnienia nadrzędne.Nieprawidłowe uprawnienia nadrzędne.Nieprawidłowa aplikacja.Wysłane nieprawidłowe dane.Wysłane nieprawidłowe dane.Wysłane nieprawidłowe dane.Zaproszenie od %s do kalendarza "%s"Zaproszenie od %s do kalendarza "%s"Lokalnie BurzeJapoński (ISO-2022-JP)StanowiskoDzieciRodzajKoreański (EUC-KR)Książka adresowa LDIFJęzykDużaOst. 24 godz.Ostatnia modyfikacjaNazwiskoZresetuj hasłoCzas Ostatniej SynchronizacjiUaktualnijOst. zmiana: Ostatnie logowanie: %sOstatnie logowanie: %s z %sOstatnie logowanie: nigdyLawendowyPrawoWymagana długośćJasno NiebieskiLekkie OpadyLekki Deszcz z WyładowaniamiLimerykiFortunkaWyświetl tabeleWyświetl wszystkie kontakty ładując ekran kontaktów? (jeśli wyłączone, zobaczysz tylko te wyszukiwane)Listowanie użytkownikw jest wyłączone.Listowanie użytkownikw jest wyłączone.LiteraturaLokalizacjaŁadowanie...Ładowanie...OpcjeCzas lokalny: Ustawienia lokalne i czasLokalizacjaOpcjeZalogujWylogujZadania przy logowaniuLogowanie nie powiodło się ponieważ podano nieprawidłowe hasło lub nazwę użytkownika.Logowanie nie powiodło się.Długi tekstMiłośćNiskiLoyola NiebieskiMMMagiaPocztaAdministracja pocztąZarządzaj Książkami AdresowymiZarządzaj KalendarzaminotatnikZarządzanie Listami ZadańZarządzaj listą kategorii, którymi będziesz oznaczał pozycje, i kolorami z nimi związanymi.Zarządzaj swoimi urządzeniami z ActiveSyncMenedżerStyczeńMapaOznacz jakoOznacz to jako swój własny kontaktPasująceZawierającePasujące polaMaksymalna liczba zakładekLiczba znakwMaksymalna liczba folderów Liczba wierszyMaksimum wydarzeń pokazywanych (0 = bez limitu)Maksymalna liczba stronJaŚredniaCzłonkowieTekstPełny opis:Menu ListaTryb menu:Obecna pogodaMetryczneDrugie imię%s minut%s minutZapisano konfigurację.PnMobilnyMobilny (Smartfon)Tel. kom.TrybŚredniOstatnia modyfikacjaPoniedziałekMiesiącMiesiąc, tydzień i widok dniaMiesięcy do przoduMiesięcy do tyłuFazy księżycaWięcej opcji...Najczęściej odwiedzaneNajczęściej odwiedzane zakładkiPrzeważnie PogodniePrzeważnie ChmurniePrzeważnie Chmurnie i WietrzniePrzeważnie SłoneczniePrzenieśPrzesunięto na stałePrzesunięto zakładki: Przesunieto folderUżytkownicy Mozilla/Firefox będą musieli eksportować swoje Zakładki przez przejście do "Menadżer zakłądek" i wybranie "Eksport" z menu "Narzędzia".Książka adresowa MulberryWielokrotne wyboryKontoinformacje o Moim KoncieMoja Książka adresowaKalendarzKalendarzKalendarz:Mój adres Wolny/ZajętyMoje Notatniki:Moje NotatkiMój portalWygląd portaluListy ZadańListy Zadań:ZadaniaNIE, NIE zgadzam sięUWAGA: CZYSZCZENIE URZĄDZENIE MOŻE ZRESETOWAĆ JE DO USTAWIEŃ FABRYCZNYCH. UPEWNIJ SIĘ ŻE CHCESZ TO WYKONAĆ PRZED ZLECENIEM CZYSZCZENIAN_azwaNazwaNazwaFormat NazwPrzedrostkiPrzyrostkiNazwa:NigdyNowa zakładkaNowy KalendarzNowa kategoriaNowy KontaktNowe WydarzenieNowy folderWiadomośćNowa NotatkaNowe ZadanieNowa Lista ZadańNowa nazwa użytkownika (opcjonalnie)Nowy folderHasłoHasła muszą pasować.WiadomościNastępne24 godz.Następne 4 fazyNastępneNastępne opcjeNastępneNastępneNastępneNastępne opcjeNastępnePseudonimNocNieNie znaleziono zakładekBrak zawartościBrak PowiadomieńBez dźwiękuksiążka adresowaBez powiadomieniaBrak konfiguracji, by pokazać rżnicę.Brak zakładek do wyświetleniaBez zmian.Nie znaleziono kontaktów.Bez opóźnieniaBez terminu.Brak wydarzeń do wyświetleniaNie znaleziono wolny/dostępny dla %s.%s nieznaleziony.Brak elementówBrak elementówAplikacja gotowa.Nie podano adresu docelowegoBrak kontaktów spełniających warunkiNie wgrano plikuBrak notatek spełniających zadane kryteria.Brak ofensywnych fortunekBrak zadania głównegoTwoje ustawienia zostały uaktualnione.Brak zadań do wyświetleniaNie wybrano numeru.Nie wprowadziłeś prawidłowego adresu email.Nie znaleziono wersji w oryginalnej konfiguracji. Wygeneruj ponownie konfiguracjęNie znaleziono wersji w twojej konfiguracji. Wygeneruj ponownie konfiguracjęNo_tatkaNie oficjalna informacjaŻadenNordyckie (ISO-8859-10)Północna PółkulaNie akceptowanyNie zaimplementowano.Nie znalezionoNie zaimplementowanoNie zmodyfikowanyNie PrywatneNie zaimplementowano.Skonfiguruj %sNieznaleziony.Kategoria NotatkiSzczegły certyfikatuTekst_Tekst NotatkiNotatka nieznaleziona.Notatka: Notatnik:NotatnikLista punktowananotatnik %sNotatnikiNotatkiPodsumowanie NotatekNic do edycji.UwagaPowiadomieniePowiadomieniaNieLiczba znakwLista zakładek do pokazaniaLiczba wpisów na stronęLiczba znakwOKLUBTwórca obiektuObiekt nieznaleziony.Folder %s nie istniejeOpcjeBiuro Ok HasłoHasło nieprawidłoweODla wszystkich kalendarz do którym mam dostępDla wszystkich pokazywanych kalendarzachDla wszystkich pokazywanych listach zadańTylko dla moich kalendarzyTylko na moich listach zadańW nowszej wersji Internet Eksplorer możesz będziesz musiał dodać %s://%s do strefy zaufania by móc pracować.Tylko ofensywne fortunkiWgrywanie plikw nie jest obsługiwane.Tylko właściciel lub administrator systemu może zmienić współwłasność lub właściciela uprawnień dla udziałuCzy otworzyć odnośnik w nowym oknie?System OperacyjnyOpcjonalneOpcjonalni UczestnicyOpcjeAlbo podaj nazwę użytkownika:OrganizacjaOrganizatorInneInne informacjeInne opcjeInne PreferencjeLiczba znakwPodglądWłaścicielWłaściciel:Właściciel: %sKlucz publiczny PGPKod PHPPowłoka PHPWieczorem MgłaWieczorem MżawkaWieczorem DeszczWieczorem Przelotne DeszczeWieczorem ŚniegWieczorem SłonecznieWieczorem Deszcze z WyładowaniamiWieczorem BurzePowłoka P_HPZadanie główneCzęściowa zawartośćCzęściowe zachmurzenieHasłoHasło:Hasła muszą pasować.PrzeszłeWklejWymagana opłataLudzieWykonaj zadania przy logowaniuNieodwracalnie usunąć ten kontakt?Nieodwracalnie usunąć to wydarzenie?Uprawnienie "%s" nie skasowane.Brak UprawnieńBrak UprawnieńUprawnieniaAdministracjaOsoboweInformacje osobisteZdjęcieTyp MIME ZdjęciaZdjęciaKsiążka adresowa PineProszę podać nazwę dla nowego folderu:Proszę podać hasło.Proszę podać nazwę użytkownika.Proszę najpierw podać poprawne wartości w formularzu.Proszę podać nazwę nowej listy kontaktów:Proszę opisać problem.Proszę przeczytać następujący tekst. MUSISZ się zgodzić z warunkami, jeśli chcesz użyć systemu.Klucz publicznyKlucz publicznyPolitykaPortal%d %s i %sSzansa
opadówPreferencjeCiśnienieCiśnienie na poziomie morza: Ciśnienie: PoprzedniOstrzeżenie: Ta operacja kasuje wszystkie wpisy w obecnej książce adresowej.RaportyŻądana jednostka jest za dużaUpłynał czas żądaniaŻądany-URI za dużyŻądany obiekt nieznaleziony.Żądany przedział nie spełnionyŻądany obiekt nieznaleziony.WymaganeWymagani UczestnicyWymagane ZasobyResetWyczyść zawartośćZresetuj hasłoResetuj stan wszystkich urządzeń. To spowoduje resynchronizację wszystkich wpisów.Resetowanie do domyślnychZresetuj hasłoLista numerowanaZasobyOdpowiedźTyp OdpowiedziOgranicz widok dnia i tygodnia do tych ram czasowych nawet jeśli istnieją wydarzenia wcześniejsze lub późniejsze?WynikiWynikiPowrót do głównego ekranuPowrót do opcjiPowrót do kalendarzyPowrót do moich kalendarzyZresetuj hasłoPrzywróć konfiguracjęZagadkiWykonajCertyfikat publiczny S/MIMEPowloka SQLPowłoka S_QLSoSobotaZapiszZapisz "%s"Zapisz %sZapisz jako noweZapisz WydarzenieZapisz jako PDFŚciągnij wygenerowaną konfigurację jako skrypt PHP.Zapisz wyszukiwanie jako wirtualna książka adresowaZapisane %sNie można otworzyć modułu Maintenance_Task %sUwierzytelnienie SASL nie jest dostępne.Miejscowe DeszczeMiejscowe BurzeNaukaSzukajWyszukiwanieZnajdź zakładkiSzukajWynikiWyniki wyszukiwania (%s)SzukajSzukaj duplikatów w:Opcje wyszukiwaniaOpcje wyszukiwaniaSzukaj Kalendarzy:Szukaj Notatników:Szukaj List Zadań:Szukaj: Opcje wyszukiwaniaSzukaj:Szukaj: Wyniki dla "%s"Uwierzytelnienie SASL nie jest dostępne.Zobacz inneWybierz wszystkieWybierz wszystko/Brak wyboruBrak wyboruWybierz grupęWybierz grupę do dodaniaWybierz grupę do dodania:Wybierz nowego właścicielaWybierz serwerWybierz użytkownikaWybierz użytkownika do dodania:Wybierz źródła książek adresowych przy dodawaniu i wyszukiwaniu adresów.Wybierze wszystkie pola do przeszukiwaniu przy rozwijaniu adresów.Wybierz preferencje potwierdzania, wyświetlanie różnich widoków i wybierz domyślny widok.Wybierz datęWybierz zasobyWybierz format daty:Wybierz format daty:Wybierz książki adresowe który mają być wykorzystywane przy synchronizacji z zewnętrznymi urządzeniami:Wybierz format daty:Wybierz format daty:Wybierz znaki z poniższych pl formularza. Możesz je skopiować i wkleić z pola tekstowego.Wybierz kodowanie dla pliku źródłowego:Wybierz kolumny które mają być wyświetlane w widoku listy:Wybierz format daty i czasu:Wybierz znak podziału daty:Wybierz format daty:Wybierz układ dnia i godziny:Wybierz format daty:Wybierz plik do importu:Wybierz pierwszy dzien tygodnia:Wybierz format źródłowego pliku:Wybierz format używany do wyświetlania nazwisk:Wybierz format używany do sortowania nazwisk:Wybierz listę(y) zadań z której eksportować:Wybierz format daty:Wybierz znak podziału daty:Wybierz format czasu:Wybierz widok przy starcie:Wybierz domyślny widok i preferencje stronicowania.Wybierz które pola wyświetlać w liście adresów.Wybierz format wyświetlania nazw.Wybierz schemat kolorów.Wybierz twój preferowany język:Wybierz: %s, %sNie można uzyskać książki adresowej. %sAdres domowyWyślij raport o problemieWyślij emaile%s do wszystkich uczestnikówCzas na serwerzeBlok "Metar" nie jest dostępny.Serwis niedostępnyAdministracjaSesjeUstaw domyślne wartośći dla nowych wydarzeń.Wybierz datęWybierz datęUstaw informacje potrzebne do resetowania jeśli zapomnisz hasłoWybierz datęUstaw zdalne serwery, do ktrych chcesz mieć dostęp z serwisu.Ustaw swoje kalendarze Wolny/Zajęty oraz swoje i innych użytkowników preferencje Wolny/Zajęty.Ustaw preferowany język, strefę czasową i opcje daty.Ustaw usługę początkową, schemat kolorów, odświeżanie strony i inne opcje wyświetlaniaUdost. Książki AdresoweWspółdzielone KalendarzWspółdzielone Kalendarz:KatalogUdostępn. Listy ZadańUdostępn. Listy Zadań:WspółdzielenieKrótkie PodsumowanieCzy definiować przyciski dostępu dla większości odsyłaczy?Czy ma być pokazywany notatnik jako oddzielna kolumna w Widoku ListyCzy otworzyć folder z twoją listą zakłądek podczas logowania?PokażPokaż %sPokaż zaawansowane ustawieniaObaPokazywać legende Wolny/Zajęty?Pokazywać przyciski akcji?Pokazuj ikony kasowania, alarmu i powtarzania w widokach kalendarza?Pokazywać termin?Pokazywać czas ostatniego zalogowania po logowaniu?Pokazywać nazwę notatnika?Pokazuj notatki z tych kategoriiPokaż PowiadomieniaPokazuj tylko wydarzenia z alarmemPokaż priorytety?Pokazuj współdzielone kalendarze przy sobie?Pokazywać alarmy zadań?Pokazywać nazwę listy?Pokaż menu %s po lewej?Używać trybu dynamicznego, jeśli przeglądarka obsługuje?Pokaż tą notatkęPokazywać czas dnia pomiędzy każdym dniem w widoku tygodnia?DeszczeWcześnie DeszczePóźno DeszczeDeszcze w OkolicykalendarzkalendarzkalendarzPomiń zadania przy logowaniuMałaKierunek SortowaniaSrotuj zakładki wg:Sortuj wgSortuj po kategoriiSortuj wg. Stanu UkończeniaTwoje imię[Pokaż cytowany tekst -Sortuj wg. PriorytetuKierunek sortowaniaSortuj zadania wg:Południowoeuropejski (ISO-8859-3)Południowa płkulaEdycja znakw specjalnychSportMałżonekStandardStar TrekStartData StartuDzień PoczątkuGodzina PoczątkuMinuta PoczątkuMiesiąc PoczątkuPoczątekGodzina StartuRok PoczątkowyNie wybrano numeru.Start:StatusZarządzanie StanemStatusZatrzymaj %s nigdy%s, %s dnia %s lub %s po %s powtórzeniach %sErytreaNSzablon %s nieznaleziony.SubskrybujSubskrybcja z innej programu kalendarzaSubskrybcjaURL SubskrybcjiPowodzenieUdało się dodać "%s" do systemu.Udało się dodać %d kontaktów do listy.Udało się dodać %s do %s.Udało się usunąć dane użytkownika "%s" z systemu.Udało się utworzyć listę kontaktów "%s".Kontakty zostały pomyślnie dodane do Twojej książki adresowej.Udało się usunąć "%s".Udało się usunąć %d kontaktów.Udało się usunąć połączyć dwa kontakty.Udało się usunąć "%s" z systemu.Udało się usunąć %d kontaktów z listy.Udało się przywrcić konfigurację. Przeładuj, by zobaczyć zmiany.Udało się uaktualnić "%s"Udało się zapisać kopię bezpieczeństwa.Udało się zapisać kopię bezpieczeństwa pliku %s.Udało się uaktualnić "%s"Udało się zapisać %sPodsumowanieWschód słońcaZachód słońcaNiedzielaSłonecznieWschód słońcaWschód/Zachód słońcaWschód: Zachód słońcaZachód: Przełącza nie protokołówKalendarz %slista zadańkalendarzSystemowe listy zadań nie mają właściciela. Tylko administrator może zmienić ustawienia i uprawnienia listy zadań.BurzeBurze WcześnieBurze PóźnoBurzeBurzowo i WietrznieBurzeWcześnie BurzePóźno BurzeWartości rozdzielone tabulacjąChmura ZnacznikówZnacznikiDocelowa książka adresowaUstawienia Domyślne Zadańlista zadańPełny opis:Informacje o Liście ZadańLista List Zadańlista zadańPreferencje Listy Zadań i WspółdzieleniaLista zadań %slista zadańNazwa Zadania%s - UwagaSzukaj%s nieznaleziony.Pełny opis:Plik ICS listy zadańlista zadań %slista zadańZadanie nieznalezione.ZadanieZadaniaPodsumowanie ZadańOstatnie logowanie: %s z %sTemperaturaTemperatura: Temperatura
(%sMax%s/%sMin%s) °%sSzablonTymczasowo przeadresowanyWstępnyWyrwnanie tekstuTylko tekstCzPlik nie zawiera danych.Plik nie zawiera danych.Plik nie zawiera danych.Plik nie zawiera danych.Blok weather.com nie jest dostępny.Blok weather.com nie jest dostępny.Serwer "%s" został usunięty.Rozszerzenie FTP jest niedostępne.Rozszerzenie FTP jest niedostępne.Plik tymczasowy "%s" nie istnieje.Książka adresowa "%s" została utworzona.Wgrywany plik nie mgł być zapisany.Książka adresowa "%s" została usunięta.Książka adresowa "%s" została nazwana "%s".Książka adresowa "%s" została zapisana.Alarm "%s" został usunięty.Alarm "%s" został zapisany.Brak konfiguracji dla %s.Serwer "%s" został usunięty.Serwer "%s" został usunięty.Kalendarz "%s" został nazwany "%s".Kalendarz "%s" został zapisany.Wgrywany plik nie mgł być zapisany.Tytuł kalendarza nie może być pusty.Przywrócono połączenie z serwerem.Plik tymczasowy "%s" nie istnieje.Obecna godzinaDomyślny email używany w tej tożsamościNie udało się uzyskać z serwera klucza pbulicznego.Powiadomienie o wydarzeniu wysłane do %s.Tożsamość "%s" została usunięta.Prośba o zapisanie %s została usunięta.Nie kasujTożsamość "%s" została usunięta.Tożsamość "%s" została usunięta.Notatnik "%s" został nazwany "%s".Notatnik "%s" został zapisany.Hasła muszą pasować.%s nie znaleziony.Uwierzytelnienie HTTP nie powiodło si꯹dany obiekt nieznaleziony.Program używany do przeglądania danego typu danych (%s) nie został znaleziony w systemie.Żądany obiekt nieznaleziony.Serwer "%s" został usunięty.Serwer "%s" został zapisany.Serwer "%s" został zapisany.Serwer "%s" został usunięty.Serwer "%s" został zapisany.Serwer "%s" został zapisany.Serwer "%s" został usunięty.Serwer "%s" został zapisany.Prośba o zapisanie %s została usunięta.Prośba o zapisanie %s została usunięta.Serwer "%s" został usunięty.Serwer "%s" został usunięty.Serwer "%s" został usunięty.Lista Zadań "%s" została utworzona.Lista Zadań "%s" została usunięta.Lista Zadań "%s" została przemianowana na "%s".Lista Zadań "%s" została zapisana.Tytuł listy zadań nie może być pusty.Pokazywany okresUżytkownik o nazwie "%s" już istnieje.Plik tymczasowy "%s" nie istnieje.Szablon %s nieznaleziony.Potem wg:Brak zakładek w folderzeWystąpił błąd poczas importowania danych iCalendar.Nie ma żadnych dostępnych opcji.Brak zadań spełniających obecne kryteriaStwierdzono brak odpowiedzi serwera od kilku minut. Serwer może być tymczasowo niedostępny albo problemy sieciowe mogą zakłócać sesje. System nie będzie się aktualizował dopóki połączenie nie będzie przywrócone.Wystąpił problem przy dodawaniu "%s" do systemu: %sWystąpił problem przy usuwaniu danych dla użytkownika "%s" w systemie: Wystąpił problem przy uaktualnianiu "%s": %sWystąpił problem podczas kopiowania zakładki: %sWystąpił problem przy dodawaniu "%s" do systemu: %sWystąpił problem przy uaktualnianiu "%s": %sWystąpił problem podczas usuówania zakładki: %sWystąpił problem podczas kasowania folderu: %sWystąpił problem podczas przenoszenia zakłądki: %sWystąpił problem podczas przenoszenia folderu: %sWystąpił problem przy usuwaniu "%s" z systemu.Wystąpił problem przy uaktualnianiu "%s": %sWystąpił problem przy uaktualnianiu "%s": %sWystąpił błąd poczas importowania danych iCalendar.Wystąpił błąd podczas dodawania zakłądki: %sWystąpił błąd poczas importowania danych iCalendar.Wystąpił problem podczas dodawania folderu: %sWystąpił błąd poczas importowania danych iCalendar.Wystąpił błąd poczas importowania danych iCalendar.Wystąpił błąd podczas zapisywania zakładki: %sNieprawidłowy użytkownik lub alternatywny adres email. Spróbuj ponownie albo skontaktuj się z administratorem.Wystąpił błąd podczas zapisywania folderu: %sWystąpił błąd poczas importowania danych iCalendar.Wystąpił błąd przy wysyłce powiadomienia do %s: %sWystąpił błąd podczas wyświetlania tego notatnika: %sWystąpił błąd podczas wyświetlania tej części wiadomościBrak zadań do wyeksportowania.Te książki adresowe będą wyświetlana w następującej kolejności:Aktualny MiesiącProszę podać nazwę użytkownika i hasłoKontakt oznaczony jako własnyWgrywanie plikw nie jest obsługiwane.To jest wyjątek dla powtarzającego się wydarzenie pierwotnie zaplanowanego na %sTo jest wyjątek dla powtarzającego się wydarzenie pierwotnie zaplanowanego %s o %sTo jest log powiadomieńAuth_ldap: Nie można dodać użytkownika. Serwer zwrcił odpowiedź:Auth_ldap: Nie można dodać użytkownika. Serwer zwrcił odpowiedź:Obsługa osobistego klucza PGP wymaga bezpiecznego połączenia www.Tożsamość "%s" została usunięta.To będzie ulubiona książka adresowa przy dodawaniu lub importowaniu kontaktów.WyładowaniaCzwartekCzasFormat czasuCzasCzasCzasy udanych sesji synchronizacjiTytułTytułAby być w stanie szybko dodać zakładki od twojej przeglądarki:Aby wykluczyć wybrane pole z importu lub skorygować błędne dopasowanie wybierz pole z listy poniżej i kliknij "Usuń parę".Aby ułatwić znalezienie, możesz wprowadzić oddzielone przecinkami znaczniki opisujące tematykę.Aby wybrać wielokrotne pola przytrzymaj przycisk Ctrl (PC) lub Command (Mac) podczas klikania.Aby subskrybować tą listę zadań z innego programu, użyj tego URL:DzisiajJutroCałkowityTradycyjnyPrezentacjeWtWtorekTurecki (ISO-8859-9)Inne informacjeTwitter Timeline dla %sLiczba znakwU.V. indeks: URLBłąd podczas kasowania "%s": %s.Błąd podczas kasowania "%s": %s.Błąd podczas kasowania "%s": %s.Błąd podczas kasowania "%s": %s.Błąd podczas łączenia się z serwerem SQL.Błąd podczas zmiany do %s.Błąd przy otwieraniu skompresowanego archiwum.Błąd podczas zmiany do %s.Błąd podczas kasowania "%s": %s.Błąd podczas kasowania "%s": %s.Błąd podczas kasowania "%s": %s.Błąd podczas kasowania "%s": %s.Błąd podczas tworzenia pliku na VFS.NiezatwierdzonyCofnij zmianyNieprzyznanaJednostkiNieznane (%s)Nie subskrybujNieobsługiwane rozszerzenieNieobsługiwany typ mediówNadchodzące WydarzeniaUaktualnijUaktualnij %sUaktualnij %sUaktualnij użytkownikaUaktualniono "%s".Uaktualniony %sUaktualniono "%s".Uaktualniono "%s".ZaładujUzyj ProxyUżyj dostosowanej metody powiadomianiaUżyj domyślnej metody powiadomianiaUżytkownicyAdministracja użytkownikw HordeNazwa użytkownika:Interfejs użytkownikaNazwa użytkownikaRejestracja użytkownikaRejestracja użytkownikw została wyłączona dla tego serwera.Rejestracja użytkownikw została wyłączona dla tego serwera.%s nieznaleziony.Wybierz użytkownika do dodaniaWybierz użytkownika do dodania:Nazwa użytkownikaNazwa użytkownika:UżytkownicyUżytkownicy w systemie:LiczbaZmiennyWersjaKontrola wersjiBardzo WysokiPokaż DzieńPokaż zewnętrzną stronę wwwPokaż notatkęWybierz domyślny sposób wyświetlania:WidocznośćWidoczność: OstrzeżenieŚrPogodaPrognoza PogodyPogoda dziękiURL stronyURL StronyŚrodaTydzieńWeek %dTygodniWitamyWitamy, %sZachodni (ISO-8859-1)Zachodni (ISO-8859-15)Jaką aplikację ma %s wyświetlać po zalogowaniu się?Jaka ma być domyślna godzina terminu ukończenia dla zadań?Jaki jest znak separatora?Jaki jest znak cytowania?O której powinien kończyć się widok dnia i tygodnia, gdy brak późniejszych wydarzeń?O której powinien zaczynać się widok dnia i tygodnia, gdy brak wcześniejzy wydarzeń?Przy tworzeniu nowego zadania, ile dni w przyszłości ma wynosić domyślny okres do terminu ukończenia (0 oznacza dziś)?Przy tworzeniu nowego zadania, czy powienien mieć on domyślnie termin ukończenia?Który dzień ma być wyświetlany jak pierwszy dzień tygodnia?Podczas przeglądania będziesz miał możliwość dodania aktualnej strony do zakładek poprzez kliknięcie swojego nowego skrótu "Dodaj do zakładek".Całe poleSzerokość menu %s po lewej:WikiWiatrWiatr:Wiatr: PracaAdres do pracyAdres do pracyPracaKraj służbowyEmailPracaTel. do pracyTel. do pracyTel. do pracySłużbowa skrzynka pocztowaTel. do pracyWojewództwo PracaAdres domowyTydzień RoboczyRRRokTakTak, zgadzam się (wczoraj)Nie jesteś autoryzowany.Nie jesteś autoryzowany.Nie jesteś autoryzowany.Nie jesteś autoryzowany.Nie udało się ściągnąć całej książki adresowej.Nie jesteś autoryzowany.Nie jesteś autoryzowany.Nie jesteś autoryzowany.Nie masz uprawnień do tworzenia więcej niż %d zakładek.Nie masz pozwolenia do tworzenia więcej niż %d folderów.Nie jesteś autoryzowany.Nie udało się ściągnąć całej książki adresowej.Nie jesteś autoryzowany.Nie jesteś autoryzowany.Nie jesteś autoryzowany.Auth_ldap: Nie udało się usunąć użytkownika %sNie jesteś autoryzowany.Nie jesteś uczestnikiem podanego wydarzenia.Możesz zmień domyślne ustawienia w %sOpcje powiadomień%sWstrzymaj %s lub %s odrzuć %s całkowicieNie masz skonfigurowanego adresu email w preferencjach Informacji Osobistych Musisz ustawić go %stutaj%s aby powiadomienia mogły być wysyłane.Nie masz uprawnień do przeglądania tego folderu.Nie masz uprawnień do przeglądania tej listy zadań.Nie udało się ściągnąć całej książki adresowej.Dostajesz tą wiadomość gdyż twoj kalendarz jest skonfigurowany aby wysyłać plan dnia. Możesz to zmienić jeśli %szalogujesz się do kalendarza%s i zmienisz ustawienia.Dostajesz tą wiadomość gdyż twoj kalendarz jest skonfigurowany aby wysyłać powiadomienia. Możesz to zmienić jeśli %szalogujesz się do kalendarza%s i zmienisz ustawienia.Dostajesz tą wiadomość gdyż twoja lista zadań jest skonfigurowana aby wysyłać powiadomienia. Możesz to zmienić jeśli %szalogujesz się do listy zadań%s i zmienisz ustawienia.Wylogowano.Zasubskrybowano "%s" (%s).Odsubskrybowano "%s" (%s).Musisz wprowadzić prawidłową wartość.Zaakceptowano uczestnictwo w tym wydarzeniu.Uczestnictwo w tym wydarzeniu zostało odrzucone.Wstępnie zaakceptowano uczestnictwo w tym wydarzeniu.Musisz opisać problem zanim go wyślesz.Musisz określić książkę decelową.Najperw musisz wybrać folder docelowy.Musisz wpierw określić adres.Musisz określić serwer, ktry chcesz usunąć.Musisz wybrać przynajmniej jeden kontakt.Musisz określić użytkownika, ktrego chcesz dodać.Musisz określić użytkownika, ktrego chcesz wyczyścić.Musisz określić użytkownika, ktrego chcesz wyczyścić.Musisz określić użytkownika, ktrego chcesz usunąć.Musisz określić użytkownika, ktrego chcesz dodać.Musisz określić użytkownika, którego chcesz uaktualnić.Zażądano powiadomień gdy są dodawane zadania do twoich list zadań.Zażądano powiadomień gdy są usuwane zadania z twoich list zadań.Zażądano powiadomień gdy są edytowane zadania na twoich list zadań.Twj adres e-mailTwoje informacjeTwój adres internetowy się zmienił od początku sesji. W związku z zabezpieczniami twojego konta musisz zalogować się ponownie.Twoje imięTen system autentykacji nie obsługuje dodawania użytkownikw, lub ta opcja została wyłączona.Ten system autentykacji nie obsługuje listowania użytkownikw, lub ta opcja została wyłączona.Twj adres internetowy się zmienił od początku sesji %s. W związku z bezpieczeństwem Twojego konta musisz zalogować się ponownie.Twoja przeglądarka nie obsługuje tej funkcjonalności.Twoje przeglądarka jest zbyt stara aby wyświetlić tryb dynamiczny. Zostanie użyty tryb tradycyjny.Twoja obecna strefa czasowa:Twoj plan dniaTwoj plan dnia na %sDomyślny kalendarz:Domyślny notatnik:Domyślna lista zadań:Twoje pełne imię i nazwisko:Twoje ustawienia zostały uaktualnione.Twoim nowym hasłem w %s jest: %sTwoje hasło zostało zresetowaneTwoje hasło zostało zresetowane, ale nie mogło być wysłane. Skontaktuj się z administratorem.Twoje hasło zostało zresetowane, sprawdź email i zaloguj się ze swoim nowym hasłemTwoje hasło wygasłoTwoje hasło wygasłoTwoje ustawienia zostały zaktualizowane.Twoje zdalne serwery:Twoja sesja wygasła. Zaloguj się jeszcze raz.[Zarządzaj Kalendarzami][Zarządzaj Notatnikami][Zarządzaj Listami Zadań][Raport o problemie]Kalendarz %sNieznane[Bez nazwy]_AlarmyZadaniaWszystkie z_adaniaSzukajTreśćPrzeglądaj (_b)_CLIKategoriaKategoria:UkończoneZadania ukończoneKonfiguracjaKontaktyDaneUsuńUsuń zakła_dkiPełny opis:TerminEdycja_Edytuj zakładkiZawierające: Przyszłe zadaniaIdź do_GrupyStart_Import/EksportWyświet_l NotatkiWyświetl tabele_WylogujKsiążki Adresowe_Nowa zakładka_Nowy Kontakt_Nowe Wydarzenie_Nowa Notatka_Nowe Zadanie_Nowe WydarzenieHasłoHasło:UprawnieniaDrukuj_Szybkie DodawanieUsuń z tej listy_RaportyWyszukiwanie_Data Startulista zadań_TytułDzisiaj_UżytkownicyZobaczamPokaż jako %srosnącootermin zajętyprzeze mnieklikkliknięciaukończonedzieńdnimalejącoevents.ics%s do %s z %s%s do %s z %sgodzinyKalendarziCalendar to format pliku który pozwala użytkownikom wysyłać propozycje spotkań i zadań do innych użytkowników, poprzez email, lub współdzielenieplików z rozszerzeniem .ics.Linkw %sładowanieminutywięcej...bez formatowaniaCzas lokalny: nie ukończone%s do %s z %slubSpampreferencjeodczyt i edycję wydarzeńodczyt i edycję zadańodczyt wydarzeńodczyt zadańrośniewybierz...adresy email rozdzielone przecinkamipokaż różnicestablinetasks.icsdodo Listy Kontaktówdo innej książki adresowejWpisz hasło dwa razy, by potwierdzićvCardvCard (3.0)vNotepogodatydzieńtygodnitrean-1.0.3/locale/pl/LC_MESSAGES/trean.po0000664000175000017500000005052412171337643016055 0ustar janjan# Polish translations for Horde package # Polskie tłumaczenia dla pakietu PACKAGE. # Copyright 2007-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Horde package. # Automatically generated, 2007. # Mariusz Zynel , 2001. # Piotr Roszatycki , 2001. # Krzysztof Kozlowski , 2005. # Piotr Adamcio , 2007 msgid "" msgstr "" "Project-Id-Version: Passwd H3 (3.1-cvs)\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2007-06-13 22:05+0200\n" "PO-Revision-Date: 2007-05-30 12:02+0200\n" "Last-Translator: adamcios@go2.pl\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" #: edit.php:227 #, php-format msgid "\"%s\" was not renamed: %s." msgstr "Nazwa \"%s\" nie została zmieniona: %s." #: data.php:155 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "%d Foldery i %d Ulubione zaimportowano." #: templates/reports.php:104 #, php-format msgid "%s Bookmarks" msgstr "%s zakładki" #: reports.php:24 #, php-format msgid "%s Response Codes" msgstr "%s kody odpowiedzi" #: lib/base.php:74 #, php-format msgid "%s's Bookmarks" msgstr "Zakładki %s" #: lib/Block/bookmarks.php:63 lib/Block/highestrated.php:38 #: lib/Block/mostclicked.php:38 msgid "1 Line" msgstr "1 linia" #: templates/star_rating_helper.php:20 msgid "1 star out of 5" msgstr "1 gwizdka mniez z 5" #: lib/Block/bookmarks.php:55 lib/Block/highestrated.php:30 #: lib/Block/mostclicked.php:30 msgid "10 rows" msgstr "10 wierszy" #: lib/Block/bookmarks.php:56 lib/Block/highestrated.php:31 #: lib/Block/mostclicked.php:31 msgid "15 rows" msgstr "15 wierszy" #: templates/reports.php:36 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx kody odpowiedzi (%s)" #: lib/Block/bookmarks.php:62 lib/Block/highestrated.php:37 #: lib/Block/mostclicked.php:37 msgid "2 Line" msgstr "2 linie" #: templates/star_rating_helper.php:21 msgid "2 stars out of 5" msgstr "2 gwiazdki mniej z 5" #: lib/Block/bookmarks.php:57 lib/Block/highestrated.php:32 #: lib/Block/mostclicked.php:32 msgid "25 rows" msgstr "25 wierszy" #: templates/reports.php:42 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx kody odpowiedzi (%s)" #: lib/Block/bookmarks.php:61 lib/Block/highestrated.php:36 #: lib/Block/mostclicked.php:36 msgid "3 Line" msgstr "3 linie" #: templates/star_rating_helper.php:22 msgid "3 stars out of 5" msgstr "3 gwiazdki mniej z 5" #: templates/reports.php:53 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx kody odpowiedzi (%s)" #: templates/star_rating_helper.php:23 msgid "4 stars out of 5" msgstr "4 gwiazdki mniej z 5" #: templates/reports.php:64 #, php-format msgid "4xx Response Codes (%s)" msgstr "4xx kody odpowiedzi (%s)" #: templates/star_rating_helper.php:24 msgid "5 stars out of 5" msgstr "5 gwiazdek mniej z 5" #: templates/reports.php:86 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx kody odpowiedzi (%s)" #: lib/Forms/Search.php:24 msgid "AND" msgstr "I" #: lib/Trean.php:171 msgid "Accepted" msgstr "Zaakceptowany" #: templates/add/add.inc:59 lib/Block/tree_menu.php:24 msgid "Add" msgstr "Dodaj" #: templates/add/add.inc:87 msgid "Add to Bookmarks" msgstr "Dodaj do zakładek" #: templates/search.php:65 msgid "All" msgstr "Wszystko" #: data.php:38 perms.php:239 lib/Block/bookmarks.php:32 #, php-format msgid "An error occured listing folders: %s" msgstr "Wystąpił błąd wylistowanych folderów: %s" #: lib/Trean.php:49 #, php-format msgid "An error occurred counting folders: %s" msgstr "Wystąpił błąd podczas zliczania folderów: %s" #: lib/Forms/Search.php:25 msgid "Any Part of the field" msgstr "Jakakolwiek część pola" #: templates/search.php:29 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "Czy jesteś pewien, że chcesz skasować wybrane zakładki?" #: config/prefs.php.dist:33 msgid "Ascending (A to Z)" msgstr "Rosnąco (A do Z)" #: perms.php:44 msgid "Attempt to edit a non-existent share." msgstr "Próba edycji nieistniejącego udziału.." #: lib/Trean.php:203 msgid "Bad Gateway" msgstr "Zła bramka" #: lib/Trean.php:183 msgid "Bad Request" msgstr "Zła odpowiedź" #: add.php:64 msgid "Bookmark Added" msgstr "Dodano zakładkę" #: data.php:17 lib/Block/bookmarks.php:3 lib/Block/bookmarks.php:81 msgid "Bookmarks" msgstr "Zakładki" #: templates/common-header.inc:27 msgid "Bookmarks Feed" msgstr "Dostarczono zakładki" #: browse.php:35 msgid "Browse" msgstr "Przeglądaj" #: templates/edit/footer.inc:2 templates/add/add.inc:60 msgid "Cancel" msgstr "Anuluj" #: templates/views/BookmarkList.php:28 msgid "Clicks" msgstr "Kliknięcia" #: templates/add/add.inc:82 msgid "Close" msgstr "Zamknij" #: lib/Forms/Search.php:24 msgid "Combine" msgstr "Łącz" #: config/prefs.php.dist:63 msgid "Completely collapsed" msgstr "Całkowicie zwinięty" #: config/prefs.php.dist:65 msgid "Completely expanded" msgstr "Całkowicie rozwinięty" #: edit.php:237 msgid "Confirm Deletion" msgstr "Potwierdź usunięcie" #: lib/Trean.php:192 msgid "Conflict" msgstr "Konflikt" #: lib/Trean.php:167 msgid "Continue" msgstr "Kontynuuj" #: templates/browse.php:105 templates/browse.php:106 msgid "Control access to this folder" msgstr "Zarządzanie dostępem dla tego folderu" #: edit.php:204 msgid "Copied bookmark: " msgstr "Skopiowane zakładki: " #: templates/search.php:72 msgid "Copy" msgstr "Kopiuj" #: edit.php:212 #, php-format msgid "Copying folders is not supported." msgstr "Kopiowanie folderów jest niewspierane" #: lib/Trean.php:170 msgid "Created" msgstr "Utworzony" #: templates/reports.php:96 #, php-format msgid "DNS Failure or Other Error (%s)" msgstr "Awaria DNS lub Inny błąd (%s)" #: templates/browse.php:90 templates/search.php:70 msgid "Delete" msgstr "Usuń" #: templates/browse.php:146 msgid "Delete Bookmark" msgstr "Usunięte zakładki" #: templates/browse.php:91 msgid "Delete this folder" msgstr "Usuń ten folder" #: edit.php:49 edit.php:100 msgid "Deleted bookmark: " msgstr "Skasowane zakładki: " #: edit.php:113 msgid "Deleted folder: " msgstr "Skasowane foldery: " #: edit.php:259 #, php-format msgid "Deleted the folder \"%s\"" msgstr "Skasowany folder \"%s\"" #: config/prefs.php.dist:34 msgid "Descending (9 to 1)" msgstr "Malejąco (9 do 1)" #: templates/edit/bookmark.inc:16 templates/add/add.inc:42 #: lib/Forms/Search.php:22 msgid "Description" msgstr "Opis" #: config/prefs.php.dist:10 msgid "Display Options" msgstr "Opcje wyświetlania" #: lib/Block/bookmarks.php:52 msgid "Display Rows" msgstr "Wyświetl wiersze" #: templates/data/export.inc:11 msgid "Download Folder" msgstr "Ściągniete foldery" #: templates/add/add.inc:73 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" "Przeciągnij \"Dodaj do zakładek\" poniższy link na swóją belkę \"Linki\"" #: templates/add/add.inc:71 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "Przeciągnij \"Dodaj do zakładek\" poniższy link na swój \"Osobisty pasek " "zadań\"" #: templates/search.php:69 msgid "Edit" msgstr "Edytuj" #: edit.php:277 msgid "Edit Bookmark" msgstr "Edytuj zakładkę" #: templates/browse.php:141 msgid "Edit Bookmarks" msgstr "Edytuj zakładki" #: perms.php:235 msgid "Edit Permissions" msgstr "Edytuj uprawnienia" #: perms.php:242 #, php-format msgid "Edit Permissions for %s" msgstr "Edytuj uprawnienia dla %s" #: lib/Trean.php:200 msgid "Expectation Failed" msgstr "Błędna oczekiwana" #: templates/data/export.inc:4 msgid "Export Bookmarks" msgstr "Eksport zakładek" #: templates/data/import.inc:9 msgid "File to import:" msgstr "Plik do importu:" #: templates/add/add.inc:70 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: config/prefs.php.dist:64 msgid "First level shown" msgstr "Pokazany pierwszy poziom" #: templates/views/BookmarkList.php:26 templates/edit/bookmark.inc:26 #: templates/add/add.inc:47 lib/Block/bookmarks.php:42 msgid "Folder" msgstr "Folder" #: templates/browse.php:70 templates/browse.php:71 msgid "Folder Actions" msgstr "Czynności na folderach" #: lib/Bookmarks.php:353 msgid "Folder names must be non-empty" msgstr "Nazwal folderu nie może być pusta" #: templates/data/import.inc:11 msgid "Folder to import into:" msgstr "Importuj folder do:" #: lib/Trean.php:186 msgid "Forbidden" msgstr "Zabroniony" #: lib/Trean.php:178 msgid "Found" msgstr "Znaleziony" #: lib/Trean.php:205 msgid "Gateway Time-out" msgstr "" #: lib/Trean.php:193 msgid "Gone" msgstr "" #: reports.php:24 templates/reports.php:33 msgid "HTTP Status" msgstr "Status HTTP" #: lib/Trean.php:206 msgid "HTTP Version not supported" msgstr "Nie wspierana wersja HTTP" #: lib/Block/bookmarks.php:50 config/prefs.php.dist:22 msgid "Highest Rated" msgstr "Najczęściej odwiedzane" #: lib/Block/highestrated.php:3 lib/Block/highestrated.php:49 msgid "Highest-rated Bookmarks" msgstr "Najczęściej odwiedzane zakładki" #: templates/data/import.inc:16 msgid "Import" msgstr "Import" #: data.php:183 templates/data/import.inc:4 msgid "Import Bookmarks" msgstr "Import Zakładek" #: templates/data/export.inc:9 msgid "Include Subfolders" msgstr "Włączając podfoldery" #: lib/Trean.php:201 msgid "Internal Server Error" msgstr "Wewnętrzny błąd serwera" #: templates/add/add.inc:72 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/data/import.inc:7 msgid "" "Internet Explorer users will need to export their current Favorites by going " "to the \"File\" menu and selecting \"Import and Export\"." msgstr "" "Użytkownicy Internt Explorer muszą wyeksportować Ulubione przez menu\"Plik\" " "wybierając opcję \"Importi Ekspor\"." #: lib/Trean.php:194 msgid "Length Required" msgstr "Wymagana długość" #: lib/Forms/Search.php:25 msgid "Match" msgstr "Pasujące" #: lib/api.php:30 msgid "Maximum Number of Bookmarks" msgstr "Maksymalna liczba zakładek" #: lib/api.php:27 msgid "Maximum Number of Folders" msgstr "Maksymalna liczba folderów " #: lib/Block/tree_menu.php:3 msgid "Menu List" msgstr "Menu Lista" #: lib/Trean.php:188 msgid "Method Not Allowed" msgstr "" #: lib/Block/bookmarks.php:51 config/prefs.php.dist:23 msgid "Most Clicked" msgstr "Najczęściej odwiedzane" #: lib/Block/mostclicked.php:3 lib/Block/mostclicked.php:49 msgid "Most-clicked Bookmarks" msgstr "Najczęściej odwiedzane zakładki" #: templates/search.php:71 msgid "Move" msgstr "Przenieś" #: lib/Trean.php:177 msgid "Moved Permanently" msgstr "Przesunięto na stałe" #: edit.php:151 msgid "Moved bookmark: " msgstr "Przesunięto zakładki: " #: edit.php:164 msgid "Moved folder: " msgstr "Przesunieto folder" #: templates/data/import.inc:6 msgid "" "Mozilla/Firefox users will need to export their current Bookmarks by going " "into \"Bookmark Manager\" and selecting \"Export\" from the \"Tools\" menu." msgstr "" "Użytkownicy Mozilla/Firefox będą musieli eksportować swoje Zakładki przez " "przejście do \"Menadżer zakłądek\" i wybranie \"Eksport\" z menu \"Narzędzia" "\"." #: lib/Trean.php:176 msgid "Multiple Choices" msgstr "Wielokrotne wybory" #: templates/edit/folder.inc:9 msgid "Name" msgstr "Nazwa" #: add.php:111 templates/browse.php:136 templates/add/add.inc:27 msgid "New Bookmark" msgstr "Nowa zakładka" #: lib/Trean.php:85 msgid "New Folder" msgstr "Nowy folder" #: templates/browse.php:80 msgid "New folder" msgstr "Nowy folder" #: templates/edit/delete_folder_confirmation.inc:15 msgid "No" msgstr "Nie" #: templates/search.php:76 msgid "No Bookmarks found" msgstr "Nie znaleziono zakładek" #: lib/Trean.php:173 msgid "No Content" msgstr "Brak zawartości" #: lib/Block/bookmarks.php:128 lib/Block/highestrated.php:73 #: lib/Block/mostclicked.php:73 msgid "No bookmarks to display" msgstr "Brak zakładek do wyświetlenia" #: lib/Trean.php:172 msgid "Non-Authoritative Information" msgstr "Nie oficjalna informacja" #: templates/search.php:66 msgid "None" msgstr "Żaden" #: lib/Trean.php:189 msgid "Not Acceptable" msgstr "Nie akceptowany" #: lib/Trean.php:187 msgid "Not Found" msgstr "Nie znaleziono" #: lib/Trean.php:202 msgid "Not Implemented" msgstr "Nie zaimplementowano" #: lib/Trean.php:180 msgid "Not Modified" msgstr "Nie zmodyfikowany" #: templates/add/add.inc:76 msgid "Note:" msgstr "Notatka: " #: edit.php:271 msgid "Nothing to edit." msgstr "Nic do edycji." #: lib/Block/highestrated.php:27 lib/Block/mostclicked.php:27 msgid "Number of bookmarks to show" msgstr "Lista zakładek do pokazania" #: lib/Trean.php:169 msgid "OK" msgstr "OK" #: lib/Forms/Search.php:24 msgid "OR" msgstr "LUB" #: templates/add/add.inc:77 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "W nowszej wersji Internet Eksplorer możesz będziesz musiał dodać %s://%s do " "strefy zaufania by móc pracować." #: perms.php:56 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "" "Tylko właściciel lub administrator systemu może zmienić współwłasność lub " "właściciela uprawnień dla udziału" #: config/prefs.php.dist:54 msgid "Open links in a new window?" msgstr "Czy otworzyć odnośnik w nowym oknie?" #: config/prefs.php.dist:9 msgid "Other Options" msgstr "Inne opcje" #: lib/Trean.php:175 msgid "Partial Content" msgstr "Częściowa zawartość" #: lib/Trean.php:185 msgid "Payment Required" msgstr "Wymagana opłata" #: templates/add/add.inc:4 msgid "Please enter a name for the new folder:" msgstr "Proszę podać nazwę dla nowego folderu:" #: lib/Trean.php:195 msgid "Precondition Failed" msgstr "" #: lib/Trean.php:190 msgid "Proxy Authentication Required" msgstr "Wymagane autoryzacja proxy" #: templates/views/BookmarkList.php:27 msgid "Rating" msgstr "Notowanie" #: templates/edit/delete_folder_confirmation.inc:3 #, php-format msgid "Really delete \"%s\" and all of its bookmarks?" msgstr "Czy napewno skasować \"%s\" i wszystkie zakładki w środnku?" #: templates/browse.php:98 msgid "Rename this folder" msgstr "Zmień nazwę tego folderu" #: reports.php:17 msgid "Reports" msgstr "Raporty" #: lib/Trean.php:196 msgid "Request Entity Too Large" msgstr "Żądana jednostka jest za duża" #: lib/Trean.php:191 msgid "Request Time-out" msgstr "Upłynał czas żądania" #: lib/Trean.php:197 msgid "Request-URI Too Large" msgstr "Żądany-URI za duży" #: lib/Trean.php:199 msgid "Requested range not satisfiable" msgstr "Żądany przedział nie spełniony" #: lib/Trean.php:174 msgid "Reset Content" msgstr "Wyczyść zawartość" #: templates/edit/footer.inc:1 msgid "Save" msgstr "Zapisz" #: search.php:21 lib/Forms/Search.php:20 lib/Block/tree_menu.php:33 msgid "Search" msgstr "Wyszukiwanie" #: lib/Forms/Search.php:18 msgid "Search Bookmarks" msgstr "Znajdź zakładki" #: search.php:57 #, php-format msgid "Search Results (%s)" msgstr "Wyniki wyszukiwania (%s)" #: lib/Trean.php:179 msgid "See Other" msgstr "Zobacz inne" #: templates/search.php:65 msgid "Select All" msgstr "Wybierz wszystkie" #: templates/views/BookmarkList.php:29 msgid "Select All/Select None" msgstr "Wybierz wszystko/Brak wyboru" #: templates/search.php:66 msgid "Select None" msgstr "Brak wyboru" #: templates/search.php:64 #, php-format msgid "Select: %s, %s" msgstr "Wybierz: %s, %s" #: lib/Trean.php:204 msgid "Service Unavailable" msgstr "Serwis niedostępny" #: config/prefs.php.dist:11 msgid "" "Set sort order and direction, choose whether links open in a new window, and " "what is visible in bookmark listings." msgstr "" #: config/prefs.php.dist:66 msgid "Should your list of bookmark folders be open when you log in?" msgstr "Czy otworzyć folder z twoją listą zakłądek podczas logowania?" #: config/prefs.php.dist:45 #, fuzzy msgid "Show folder actions panel?" msgstr "Pozwolić tworzyć foldery?" #: config/prefs.php.dist:24 msgid "Sort bookmarks by:" msgstr "Srotuj zakładki wg:" #: lib/Block/bookmarks.php:46 msgid "Sort by" msgstr "Sortuj wg" #: config/prefs.php.dist:35 msgid "Sort direction:" msgstr "Kierunek sortowania" #: lib/Trean.php:168 msgid "Switching Protocols" msgstr "Przełącza nie protokołów" #: lib/Block/bookmarks.php:58 lib/Block/highestrated.php:33 #: lib/Block/mostclicked.php:33 msgid "Template" msgstr "Szablon" #: lib/Trean.php:182 msgid "Temporary Redirect" msgstr "Tymczasowo przeadresowany" #: templates/browse.php:155 msgid "There are no bookmarks in this folder" msgstr "Brak zakładek w folderze" #: edit.php:206 #, php-format msgid "There was a problem copying the bookmark: %s" msgstr "Wystąpił problem podczas kopiowania zakładki: %s" #: edit.php:51 edit.php:102 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Wystąpił problem podczas usuówania zakładki: %s" #: edit.php:115 #, php-format msgid "There was a problem deleting the folder: %s" msgstr "Wystąpił problem podczas kasowania folderu: %s" #: edit.php:153 #, php-format msgid "There was a problem moving the bookmark: %s" msgstr "Wystąpił problem podczas przenoszenia zakłądki: %s" #: edit.php:166 #, php-format msgid "There was a problem moving the folder: %s" msgstr "Wystąpił problem podczas przenoszenia folderu: %s" #: add.php:59 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Wystąpił błąd podczas dodawania zakłądki: %s" #: add.php:43 add.php:100 edit.php:137 edit.php:191 #, php-format msgid "There was an error adding the folder: %s" msgstr "Wystąpił problem podczas dodawania folderu: %s" #: edit.php:72 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Wystąpił błąd podczas zapisywania zakładki: %s" #: edit.php:85 #, php-format msgid "There was an error saving the folder: %s" msgstr "Wystąpił błąd podczas zapisywania folderu: %s" #: templates/views/BookmarkList.php:25 templates/edit/bookmark.inc:11 #: templates/add/add.inc:37 lib/Forms/Search.php:21 lib/Block/bookmarks.php:49 #: config/prefs.php.dist:21 msgid "Title" msgstr "Tytuł" #: templates/add/add.inc:69 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Aby być w stanie szybko dodać zakładki od twojej przeglądarki:" #: templates/reports.php:103 msgid "Total" msgstr "Całkowity" #: templates/edit/bookmark.inc:21 templates/add/add.inc:32 #: lib/Forms/Search.php:23 msgid "URL" msgstr "URL" #: lib/Trean.php:184 msgid "Unauthorized" msgstr "Niezatwierdzony" #: templates/reports.php:100 #, php-format msgid "Unknown (%s)" msgstr "Nieznane (%s)" #: lib/Trean.php:198 msgid "Unsupported Media Type" msgstr "Nieobsługiwany typ mediów" #: perms.php:228 #, php-format msgid "Updated %s." msgstr "Uaktualniony %s" #: lib/Trean.php:181 msgid "Use Proxy" msgstr "Uzyj Proxy" #: templates/add/add.inc:74 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Podczas przeglądania będziesz miał możliwość dodania aktualnej strony do " "zakładek poprzez kliknięcie swojego nowego skrótu \"Dodaj do zakładek\"." #: lib/Forms/Search.php:25 msgid "Whole Field" msgstr "Całe pole" #: templates/edit/delete_folder_confirmation.inc:9 msgid "Yes" msgstr "Tak" #: add.php:21 data.php:64 data.php:131 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Nie masz uprawnień do tworzenia więcej niż %d zakładek." #: add.php:84 data.php:55 data.php:106 #, php-format msgid "You are not allowed to create more than %d folders." msgstr "Nie masz pozwolenia do tworzenia więcej niż %d folderów." #: browse.php:22 msgid "You do not have permission to view this folder." msgstr "Nie masz uprawnień do przeglądania tego folderu." #: templates/add/add.inc:11 msgid "You must select a target folder first" msgstr "Najperw musisz wybrać folder docelowy." #: lib/Trean.php:144 msgid "_Browse" msgstr "Przeglądaj (_b)" #: templates/browse.php:147 msgid "_Delete Bookmarks" msgstr "Usuń zakła_dki" #: templates/browse.php:142 msgid "_Edit Bookmarks" msgstr "_Edytuj zakładki" #: lib/Trean.php:150 msgid "_Import/Export" msgstr "_Import/Eksport" #: templates/browse.php:137 msgid "_New Bookmark" msgstr "_Nowa zakładka" #: lib/Trean.php:146 msgid "_Reports" msgstr "_Raporty" #: lib/Trean.php:145 msgid "_Search" msgstr "Wyszukiwanie" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "click" msgstr "klik" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "clicks" msgstr "kliknięcia" trean-1.0.3/locale/sl/LC_MESSAGES/trean.mo0000644000175000017500000041753512171337643016064 0ustar janjan=W {()8 HV _ kx}"-ե 6$T)y&צ % $1V f r (ͧߧ  ( Ȩ֨   !/6 ˩֩  *BIXay Ȫ Ҫ.ߪ.)2X8QīZWq4ɬ  $ ,7GMT]%f ҭ     )5HWqî$̮.N7-ί ֯ ,* .:BJPT l z"Ѱ %=Q'`)ұ  #.B T`vײ 73.;b8 ׳ #97q',*ٴ% *5 <F/N7~.U-;-i=?ն-@C##@̷3 %Ag})$%( 5 GR W d p| Ϲڹ'")/7>)Gq  ͺ׺  06=O Xemqu» ˻+ֻ #9@G:]"3Լ.7!UTw@̽) 7 Q\ do Ⱦ )G[mTEd>*+=Ol!}     '4;Sdm s      % 0>=X %!4+H;t !6#3Wh q~$ !/Qp!.&=Zy&+3&+D8p/ .)Ak ##()(/Xx %(-0,/]! BY&v*AD O\dl s  -=(QzICINWhx }    -:Lf"4/ DQd"w   "/ / ;E _k s}./4C\ e&sC &/8<hD  $, 1 < JUev   %D\ q{ {6Qm*5F/X# 3? O Zgw  ! 4N%f   ". ?L [gl     .8>CG`e jt| $1 :ELU[^ez   2AIQ W al{~  B,6o74 % *4= OY `nuz ! /6 ;H O"Z }   05?SO$  !+ 3 @ a& )  "/?E@Vf  '8H[l#j.4 E O [|B40%5V 9  )(=f{'9Qi "' ,7F(Lu   +&.AQ X#c   )04 < HTdlt  %*3 C O:Y  # + 6@O`|  G _ mw| %*  (-h3  / %06 F Q[o0?CKT[ c mxQ Jd~ (E LJZ   &/> F Q ]2j    #5F Wbj'8 KV m z 3H`y    )6Vqv {   8,F)Y ,.3368j4"6Latb' >L dq+! EA=   ( 8E U`qXZ8i ( "?jD )"\B >-5D GT hs $ 3I\k     =DU^ n|,  *0ARY(x      ! - 3 ; B  K )l  A  * "? (b ) P  "" E L U [ ` i *n  #   ' . K T  l w           2  N Z `  o |              2.Ea "**9d k6w 2DZ%z01-1@ FTcw  ). 6 A MZ^qx%   % (5 KW q    R `$x   '< R _ ky  (i4 '9Tl  )3 I#W{ F?7UW/  ;5F(| -@+O0%    49; u     #0K[ cq , )< CM V `k} d`&h8*; (J 4s          !!!&!.!7!?! V!`!g! {!!!!!!!!! !!"" 4"?"\"b"s" " "(""""*#0# C#N# S# ]#g#j##s##8#&#1$'I$)q$d$U%8V%J%[%(6&V_&8&(&,'E'Da'#'C'H(W(0(9)%I)Ao)[) *I*1*++!K+m+++&+:+3,%O,u,', ,',(---0M-i~-1-A.,\.-.-.+.+/3=/%q/=/e/M;0*0*0/0.10>1To1Z1*2*J2Hu2J22 3/<3,l3-3?3p4qx4f4oQ55u6%626)6>7"O7Rr7%7 77$8E8!9069%g9919999 9 9 ::/: 5:@:V:r::u:Y: ;;;;&;0,;];r;; ; ;; ;;;;; ;;<< ,< 9<F<*J<u<|<<(<.</<,="D=%g===$==>!"> D>e>2>>/>+>*?#J?n??!?%?&?@%5@$[@@@$@@"@,A(EAnA%AA#AA B/BJB&cB)BB)BB1C NC [C/hC$CCCCC C$D,D2D":D%]DDDDDDD D E E E(E@E3GE{EE EE2EE!EE F F22FeF|F FFF F FFF F G(G1GQGZG'uGGGGG G?GHH -H7H@HTH \H iHuHHH H HHH*H I)I;ICIFIWI pI|IIII I IIII/I J=JZJ pJ1}JnJ K*K?=K}KK KKKKKKKK K K9K."L)QL{LLLLLLMM MMM$M (M#5M2YM5M6MM-N4BNwN(NSN1O@OZO5BP!xPEPkPLQ jQ*Q'Q(Q)R&1R%XR(~R(R"R+R0SPScSwSyS T TsT|"U+UTU V'8V`VwVVV@VW WQ=WWWW WWWWW XX2XPX`XhX mXwXXXXX XX XXXXX XXYYY/YAY GYRYYYrYYYYYYYYYY ZZZ(Z@Z'GZoZrZwZZZZZZZZZ[ [ [["0[S[ [[i[ q[}[[ [5[\\ \\] ]] ]']!@]'b] ]] ]&]#^,^G^/d^ ^-^^^^ _ _'_0_6_ <_]_ q_ _ __ __8`G` P`^` m` w` ` ` ``` Yacara aa aaa aaaa bb0bHb`bgb7obb.b3bC%cOicUcUd7edddd dddeee#e+,e.Xe e eeeeee e f ff3fDf[fxfff f"fffggT-g-g&ggg g%g h#h *h5h >hHhPhTh lh yhhh#h h hh i1iOiai5si/i%iij!j(j/j8jGj OjZjlj jjjjjjjj k %k/0k/`kCkAk l l)l>lGlMl^lpl3ll&l)l*m5Hm ~mm mm4m/m4n`=n'n3n=nB8o3{oAo,o-p@Lp;p$ppq$q#?A~ ʠ    *'F1n &š    -36Iv 2ATd{)LS it!BϤ2&+Y@ƥ = %Gm~#(AX%n*ϧ0!D%fƨߨ*E LXqv| ש ީ $=L \j {2̪Ӫ ڪ(&8 @"Kn$tɫګ2;A IWi   ˬݬ  (5 DQCcЭ"׭ %2BRdv  !î    .;AIPXAlϯد ޯ'%)*/ Zend17H%[9 ϱڱ   9 $Z#$ݲ#&9=EYah m y_ /2bv   ߴ$#&5\ ebsֵ*1AH] d n|   3ܶ%7@Oatͷ ʸ ܸ  /7JNW]b hsҹ!:Sh o| Ϻ ޺ ",@ S ^hnw} <-%.Tk/z4"߼#,&3Sýӽ !=_ty .Nhy)5# OJk ) 3 >I Q \g v   .'P9C1*9 dp{ 2N%c%A D,q     -:NWk  &5N]n  "&3Zmt|& 2 KVm   "&' D4"y&'2g3$ & 1:Vm./ $3;QZ(n 5 "7? EOUq      HjF"3CL,a 9  #->4Z#89#%] -=*R}    &AZ i!t    &;Rb i u^3Qow}  (9'Hp)   (j6#1EZ!o" .6 >H]2pOKJ,=1 %;a1j! ((,L4(%!%4FW3^       +AX"g  '+:BK^ t     #&= D_N"''PC2=!'@ F Tb jx   !2A\d " >G\ v (9)>DM \jnu''.,)V7rAGN4>$J32.f/%S?=_={4W= 7_#q>34h) 0 >;'z!1FaV56 0D.u.0/640kHpFV/1*.*.YX`2B4uOI$Di:bD]=C$(.#FC K !C@1` (    )7H O[j~3u+16>D*Ju 7>W _l/p+1,,Yt)  8 Y z((&'N#j! !&6(S|!0 %()N/x#("&(?)h#+3$1*V*4 125 hu&$.N#d    '9/iq D (@8X** ' > Q  d o    !  " (  1 ; W  _  j @t          > Y  n  y   +        0 <  B P  Y e w    -    9 2J P}   @ 27=Lcjrw A6+0\b"z '/B-r/&" -0@Rq#BJ$po#!)&'P)x?@=#Aa+.Hf ~ m sq2&l8.T 6&"9f\ &/I^'{     )3 9 EQXiq#w &&=Ybk~ /-6N lx$ *5HN Q[IZ%-m^kS\Rf`1LWoNF{ ,TraP&t_G.h~ '}sO a#14(>yl f7=]3Zlm.)?B w*uxUW7?fwW:^ Nx2Rt=!= ]/Q3{Eaydq[kAQewR{ Tu5E(_k`o!TtLLa"?9C[T$p52Y~l_?TYDzHH[IIH+n iPi,#'1_|<NgjpaJ}yg|%4 J] v upct/9ql<d0 }U3.DHI<rY2iZw>@c>X5H;V/Az)2b7\+x]EQv=wot1i]MOg=E9jr"9<$dSrs.Sj0@7wU~ngFB3_F6'e=iDK!{&B6: [AzJ-o]Cmb-Q:BfI` AY!|cV#/XUVm>Grq0DUD@XKCC0  ReVm)86dl0uayo?>NJG'AIV NehVW i($&7eF pIh'#W|\8)\Ogb6 :}R9"bJkRVGL;[ySZwL~*A,D(NFQy,3yV2+eC} X8KUlEqY.0s) "56 L WMO$k^wQo~4Y9^K.=o&!)*g@h,3UR%n[(/G$nxX:*%t+"q4>)J"!":\8q(- Rrx _ PJ1`lbO7/eK||pzq_WMc=BeJs`W(\: 2S`O,uTz &{PFc^$~v5Sb.9%2 $ "]6{0# $'mt&uBDksB;!\>|T*4H*Er.%TY^-*s+ZDnczY p@<Q#boO46>I_m2+ESg4@#t|' 8Fvx1uX 6pK58)^X`n * G- ?cjQ-rva0PMN Mmj1kCEK fk4 C3'<PNpfOGx5~vZ;ld{v(/[s;Lf}~C Fz}7{%\U^jjjHBv8yM@&dhfM<gni]+M@1 nxX<? &d/9d-H!z#,3%SsK7hZ8GZ+a bAi P5h}LhuPc;q?:,;`;A  (%s days ago) (Accesskey %s) (in %s days) (today) (tomorrow) (yesterday) at "%s" is not a directory."%s" is not a valid choice."%s" is not a valid email address."%s" is not configured in the Horde Registry."%s" share driver not found."%s" share not found."%s" tree renderer not found."%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s."%s" was not renamed: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d Folders and %d Bookmarks imported.%d days until your password expires.%d-day forecast%s - Notice%s Bookmarks%s Clicks%s Fingerprint%s KB%s MB%s Maintenance Operations - Confirmation%s Response Codes%s Setup%s Sign Up%s Terms of Agreement%s already exists.%s at %s %s%s is ready to perform the maintenance operations checked below. Check the box for any operation(s) you want to perform at this time.%s is required%s minutes%s not found.%s to %s of %s%s's Address Book%s's Bookmarks%s's Calendar%s's Notepad%s's Tasklist%s: %s%s: This message may not be from whom it claims to be. Beware of following any links in it or of providing the sender with any personal information., gusting , gusting %s %s, variable from %s to %s-- select --1 Click1 Line12 Hour Format1xx Response Codes (%s)2 Line24 Hour Format24 hours2xx Response Codes (%s)3 Line3xx Response Codes (%s)4xx Response Codes (%s)5xx Response Codes (%s)NicaraguaNigerNigeriaNightNiueNoNo Bookmarks foundNo ContentNo available configuration data to show differences for.No available strategy for making ISO images.No batch template.No block exists at the requested positionNo bookmarks to displayNo change.No children can be added to this permission.No configuration information specified for %s.No configuration information specified for FTP VFS.No configuration information specified for SQL VFS.No configuration information specified for SQL-File VFS.No configuration information specified for SSH2 VFS.No credit left.No destination supplied.No file uploadedNo icons found.No location is set.No location provided.No message supplied.No name specified.No number specified.No offensive fortunesNo path to the OpenSSL binary provided. The OpenSSL binary is necessary to work with PKCS 12 data.No pending signups.No preference "%s" found in scope "%s".No quota set.No separator specified.No such fileNo such object %s!No temporary directory available for cache.No username and/or password sent.No valid XML data returnedNo valuesNo version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.Non-Authoritative InformationNoneNordic (ISO-8859-10)Norfolk IslandNorthern HemisphereNorthern Mariana IslandsNorwayNot AcceptableNot AfterNot BeforeNot FoundNot ImplementedNot ModifiedNot a directoryNot found.Not implemented.Not supported.Note:NotesNothing to browse, go back.Nothing to edit.NovemberNumberNumber of ClicksNumber of charactersNumber of columnsNumber of columns to display in browse and search results (does not apply to tree view):Number of rowsNumbers not specified for updating in distribution list.O charactersOKObjectObject CreatorOctalOctoberOffense filterOfficeOld and new passwords must be different.Old passwordOld password is not correct.OmanOn newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Onclick eventOnly IMAP servers support shared folders.Only offensive fortunesOnly one email address allowed.Only one email address is allowed.Only the owner or system administrator may change ownership or owner permissions for a shareOpen Fo_lderOpen in a new windowOpen links in a new window?OpenSSL error: Could not extract data from signed S/MIME part.Operating SystemOptionsOptions for %sOrOrganisationOrganisational UnitOrganizingOriginal application templateOriginal templates in %s:OtherOther InformationOther OptionsOther charactersOwner PermissionsOwner:PAM authentication is not available.PEAR::Mail backendPGP Digital SignaturePGP Encrypted DataPGP Public KeyPGP Signed/Encrypted DataPHPPHP CodePHP ShellPM Light RainPM RainPM ShowersPM SnowPM Snow ShowersPM SunPM T-StormsPOSIX extension is missingP_HP ShellPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPartial ContentPartly CloudyPasswordPassword changed successfully.Password incorrectPassword required for RADIUS authentication.Password with confirmationPassword:Password: Passwords must match.PastePayment RequiredPending Signups:PeoplePerform Maintenance OperationsPerform maintenance operations on login?PermissionPermission "%s" not deleted.Permission DeniedPermissionsPermissions AdministrationPersonal InformationPeruPetsPhilippinesPhonePhone #PhotosPitcairnPlease enter a month and a year.Please enter a name for the new category:Please enter a valid IP address.Please enter a valid date, check the number of days in the month.Please enter a valid time.Please enter the name of the new category:Please modify the name accordinglyPlease provide a summary of the problem.Please provide your username and passwordPlease read the following text. You MUST agree with the terms to use the system.Please select an item firstPlease type the new category name:PolandPoliticsPollsPortPortugalPostPost to this folder (not enforced by IMAP)PostnukePrecipitation for last %s hour(s): Precipitation
chancePrecondition FailedPreferences "%s" deleted in scope "%s".Prefs_ldap: Required LDAP extension not found.PressurePressure at sea level: Pressure: PreviewPrevious optionsPrivate KeyProblemProblem DescriptionProjectsPrompt textProxy Authentication RequiredPublic KeyPublic Key AlgorithmPublic Key InfoPublic/Private keypair not generated successfully.Puerto RicoPurgePurge messagesPurple HordeQatarQueryQuotaRSA Public Key (%d bit)Radio selectionRainRain EarlyRain LateRain ShowerRain and SnowRain to SnowRandom FortuneRatingRatingsRatioReadRead messagesReally delete %s? This operation cannot be undone.Really remove user data for user %s? This operation cannot be undone.Redirect to %sRefreshRefresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:RegexRelationship BrowserReloadRemarksRemote ServersRemote URL (http://www.example.com/horde):RemoveRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sRename this CategoryReportsRequest Entity Too LargeRequest Time-outRequest couldn't be answered. Returned errorcode: Request-URI Too LargeRequested range not satisfiableRequested service could not be found.Required "%s" not specified in %s configuration.Required "%s" not specified in VFS configuration.Required "%s" not specified in configuration.Required FieldResetReset ContentReset PasswordReset Your PasswordRestore Last QueryResultsReturn to OptionsRetype new passwordReunionRevert ConfigurationRich Text Editor OptionsRiddlesRight click context menuRight headerRight valuesRoleRomaniaRotate 180Rotate LeftRotate RightRunRussian FederationRwandaS/MIME Cryptographic SignatureS/MIME Encrypted MessageSASL authentication is not available.SMS MessagingSQL ShellSQL statement for value lookupsSSHSUCCESSS_QL ShellSaSaint HelenaSaint Kitts and NevisSaint LuciaSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSatellite ProviderSaudi ArabiaSaveSave "%s"Save %sSave OptionsSave and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved %s configuration.Saved setup upgrade script to: "%s".Scattered T-StormsScienceSea_rchSearchSearch BookmarksSearch EnginesSearch ResultsSearch Results (%s)Search:See OtherSelect AllSelect All BookmarksSelect All CategoriesSelect FilesSelect NoneSelect a dateSelect a group to add:Select a new owner:Select a serverSelect a user to add:Select allSelect all date components.Select an imageSelect an objectSelect editor pluginsSelect noneSelect the characters you need from the boxes below. You can then copy and paste them from the text area.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the identity you want to change:Select the time delimiter:Select the time format:Select two matching fields.Select your color scheme.Select your preferred language:Select: %s, %sSelect: %s, %s, %s, %sSend Problem ReportSend SMSSending failed: %sSenegalSensor: SeptemberSerbia and MontenegroSerial NumberServer data wrong or not available.Service UnavailableSession AdminSession ID expired.SessionsSetSet PermissionsSet options to allow you to reset your password if you ever forget it.Set up remote servers that you want to access from your portal.Set your preferred language, timezone and date options.Set your startup application, color scheme, page refreshing, and other display options.SetupSetup upgrade scripts availableSeveral locations possible with the parameter: SeychellesShare/kolab: Owner of folder %s cannot be determined.Shibboleth authentication not available.ShoppingShort SummaryShould access keys be defined for most links?Should your list of bookmark categories be open when you log in?ShowShow differences between currently saved and the newly generated configuration.Show last login time when logging in?Show option to keep originalShow pickerShow the %s Menu on the left?Show uploadShowersShowers EarlyShowers LateShowers in the VicinityShrinkShrink or move neighbouring block(s) out of the way firstSierra LeoneSign upSignatureSignature AlgorithmSingaporeSizeSkip MaintenanceSlovakiaSloveniaSmallSnowSnow ShowerSnow ShowersSnow Showers EarlySnow Showers LateSnow depth: Snow equivalent in water: Solomon IslandsSomaliaSongs & PoemsSort order selectionSource addressSouth AfricaSouth European (ISO-8859-3)South Georgia and the South Sandwich IslandsSouthern HemisphereSpacerSpainSpamSpecial Character InputSpecial charactersSportsSri LankaStandardStar TrekStart yearState or ProvinceStatusStorage formatStreet AddressString listStrip domain from the addressSuSubdirectory "%s" not found.SubjectSubmitSubmitted request to add "%s" to the system. You cannot log in until your request has been approved.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully saved the backup configuration file %s.Successfully updated "%s"Successfully wrote %sSudanSun RiseSun SetSunnySunriseSunrise/SunsetSunrise: SunsetSunset: SupportSurinameSurnameSvalbard and Jan MayenSwazilandSwedenSwitching ProtocolsSwitzerlandSync log deletedSyncMLSyrian Arab RepublicT-StormT-Storm and WindyT-StormsT-Storms EarlyTSV fileTable SetTable operations menu barTaiwanTaiwan, Province of ChinaTajikistanTanzania, United Republic ofTasksTelephone NumberTemp for last hour: TemperatureTemperature: Temperature
(%sHi%s/%sLo%s) °%sTemplateTemplate "%s" not found.Template AdministrationTemplate to use when displaying bookmarks:Temporary RedirectTest HordeTextText AreaText OnlyThThailandThe FTP extension is not available.The History system is disabled.The Horde/Kolab integration engine does not support "%s"The IMSP log could not be initialized.The Maintenance:: class did not load successfullyThe Options window has closed. Exiting.The SSH2 PECL extension is not available.The administrator needs to configure a permanent Permissions backend if you want to use Permissions.The contact ID number was not specified, left blank or was not found in the database.The contact was successfully added to your address book.The detached PGP signature block is required to verify the signed message.The distribution list ID was either not specified, left blank or not found in the database.The distribution list was not specified.The email address %s has been added to your identities. You can close this window now.The encryption features require a secure web connection.The file %s should contain a %s setting.The file %s should contain some %s settings.The file contained no data.The following applications encountered errors removing user data: %sThe identity "%s" has been deleted.The image file was larger than the maximum allowed size (%d bytes).The location of the GnuPG binary must be given to the Crypt_pgp:: class.The message sent on %s to %s with subject "%s" has been displayed. This is no guarantee that the message has been read or understood.The name to use when linking to the compose pageThe new from address can't be verified, try again later: The number of fields must be numeric.The openssl module is required for the Horde_Crypt_smime:: class.The preference "%s" could not be saved because its data exceeded the maximum allowable sizeThe preferences backend is currently unavailable and your preferences have not been loaded. You may continue to use the system with default settings.The program used to view this data type (%s) was not found on the system.The quote character must be one single character.The separator must be one single character.The server "%s" has been deleted.The server "%s" has been saved.The signup request for %s has been removed.The specified row (%d) does not exist.The text you entered did not match the text on the screen.The uploaded data was lost since the previous step.The uploaded file could not be saved.The user [%s] already exists.The weather.com block is not available.Themes directory "%s" not found.There are no bookmarks in this categoryThere are no email addresses to confirm.There are no options available.There are no parts that can be displayed inline.There are too many characters in this field. You have entered %s characters; you must enter less than %s.There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem copying the bookmark: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the category: %sThere was a problem moving the bookmark: %sThere was a problem moving the category: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was a problem with the file upload: No %s was uploaded.There was a problem with the file upload: The %s was larger than the maximum allowed size (%d bytes).There was a problem with the file upload: The %s was only partially uploaded.There was an error adding the bookmark: %sThere was an error adding the category: %sThere was an error displaying this message partThere was an error importing the contact data.There was an error importing the iCalendar data.There was an error in the configuration form. Perhaps you left out a required field.There was an error performing the specified address book function. Please try again later.There was an error saving the bookmark: %sThere was an error saving the category: %sThere was an error updating the contact details. Please try again later.There was an error updating the distribution list. Please try again later.This IMAP server does not support sharing folders.This does not appear to be a valid rar archive.This does not appear to be a valid zip file.This does not seem to be a valid card number.This driver allows sending of messages through an SMPP gateway.This driver allows sending of messages through an email-to-SMS gateway, for carriers which provide this service.This driver allows sending of messages through the Clickatell (http://clickatell.com) gateway, using the HTTP APIThis driver allows sending of messages through the WIN (http://winplc.com) gateway, using the HTTP APIThis driver allows sending of messages through the sms2email (http://sms2email.com) gateway, using the HTTP APIThis driver allows sending of messages via SMTP through the Vodafone Italy gateway, only to Vodafone numbers. It requires an email account with Vodafone Italy (http://www.190.it).This field is required.This field may only contain integers.This field may only contain numbers and the colon.This field may only contain octal values.This field must be a comma or space separated list of integersThis field must be a valid number.This field must contain a color code in the RGB Hex format, for example '#1234af'.This form has already been processed.This is %s.This is a Kolab Groupware object. To view this object you will need an email client that understands the Kolab Groupware format. For a list of such email clients please visit %sThis is a new configuration setting.This message was written in a character set (%s) other than your own.This number must be at least one.This server can't uncompress zip and gzip files.This system is currently deactivated.This value must be a number.This window must be called from an Options windowThunderTicketsTimeTime TrackingTime formatTime selectionTimestamp or unknownTitleTitle OnlyTitle and DescriptionTitle, URL, and DescriptionToTo be able to quickly add bookmarks from your web browser:To select multiple items, hold down the Control (PC) or Command (Mac) key while clicking.TodayTogoTokelauTomorrowTongaToo many invalid logins during the last minutes.Top 10 Highest RatedTop 10 Most ClickedTotalTranslationsTree ViewTrinidad and TobagoTrue or falseTuTunisiaTurkeyTurkish (ISO-8859-9)TurkmenistanTurks and Caicos IslandsTuvaluType your choice: U charactersU.V. index: URLURL for your script delivery status reportUgandaUkraineUnable to access VFS directory.Unable to bind to the LDAP server as %s!Unable to change permission for VFS file "%s".Unable to change permission for VFS file %s/%s.Unable to change to %s.Unable to check file size of "%s".Unable to check file size of "%s/%s".Unable to connect with SSL.Unable to copy VFS file.Unable to create VFS directory "%s".Unable to create VFS directory.Unable to create VFS file.Unable to create VFS folder "%s".Unable to create empty VFS file.Unable to decompress data.Unable to delete "%s", the directory is not empty.Unable to delete "%s": %s.Unable to delete %s, the directory is not emptyUnable to delete VFS directory recursively.Unable to delete VFS directory.Unable to delete VFS directory: %s.Unable to delete VFS file "%s".Unable to delete VFS file.Unable to delete VFS folder "%s".Unable to delete VFS recursively: %s.Unable to determine current directory.Unable to execute smbclient.Unable to extract certificate detailsUnable to load the definition of %s.Unable to move VFS file.Unable to open VFS file "%s".Unable to open VFS file for writing.Unable to open VFS file.Unable to open compressed archive.Unable to read VFS file (filesize() failed).Unable to read VFS file (size() failed).Unable to read file: Unable to read the vfsroot directory.Unable to rename VFS directory.Unable to rename VFS directory: %s.Unable to rename VFS file "%s".Unable to rename VFS file %s/%s.Unable to rename VFS file.Unable to run 'mkisofs'.Unable to translate this Word documentUnable to trigger free/busy update for %sUnable to write VFS file "%s".Unable to write VFS file (copy() failed).Unable to write VFS file data.Unable to write VFS file, quota will be exceeded.UnauthorizedUndo ChangesUnexpected response from server on connection: Unexpected response from server to: UnfiledUnicode (UTF-8)United Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnitsUnknownUnknown apimsgid (API Message ID).Unknown climsgid (Client Message ID).Unknown location provided.Unknown username or password.UnnamedUnsupported ExtensionUnsupported Media TypeUpdateUpdate %sUpdate userUpdated "%s".Updated %s.Upgrade script deleted.UploadUploaded all application setup files to the server.UruguayUse Current: %sUse ProxyUse SSLUse if name/password is different for IMSP server.UserUser %s is not authorised for %s.User AdministrationUser OptionsUser RegistrationUser Registration has been disabled for this site.User account not foundUser name %s is no kolab user!User to add:UsernameUsername "%s" already exists.Username:Username: UsersUsers in the system:UzbekistanVFS directory does not exist.VacationValid locations found include: ValidityValue in minutes from now.Value is over the maximum length of %s.ValuesValues to select fromVanuatuVariableVenezuelaVerification failed - this message may have been tampered with.VersionVersion ControlVery HighViet NamVietnamese (VISCII)View %sView %s [%s]View ReportView an external web pageVirgin Islands, BritishVirgin Islands, U.S.VisibilityVisibility: Vodafone Italy via SMTPWARNWARNING!!! REMOVE SCRIPT MANUALLY FROM %s.WIN via HTTPWallis and FutunaWarningWeWeather ForecastWeather data provided byWeather.comWebWeb SiteWeeklyWelcomeWelcome to %sWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)Western SaharaWhat application should %s display after login?What is the delimiter character?What is the quote character?Whereis Australia mapWhich phasesWhich plugins to enable for the Rich Text editor.While browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Whole FieldWidth in CSS unitsWidth of the %s menu on the left (takes effect on next log-in):WikiWindWind EarlyWind speed in knotsWind:Wind: WindowsWisdomWishlistWorkWork AddressWork PhoneWrong number of fields in line %d. Expected %d, found %d.Wrong number of fields. Expected %d, found %d.Wrong offset %d while reading a VFS file.X-RefX509v3 Basic ConstraintsX509v3 Extended Key UsageX509v3 Subject Alternative NameX509v3 Subject Key IdentifierX509v3 extensionsYYYYYYYahoo! mapYearlyYemenYesYes, I AgreeYou are creating a category folder.You are not allowed to create more than %d blocks.You are not allowed to create more than %d bookmarks.You are not allowed to create more than %d categories.You are not authenticated.You are renaming the current category folder.You cannot have the '\' character in your full name.You did not authenticate.You did not enter a valid email address.You didn't map any fields from the imported file to the corresponding fields in %s.You do not have permission to view this category.You have been logged out.You have requested to add the email address "%s" to the list of your personal email addresses. Go to the following link to confirm that this is really your address: %s If you don't know what this message means, you can delete it.You must configure a DataTree backend to use Signups.You must configure a VFS backend.You must describe the problem before you can send the problem report.You must enter a valid phone number, digits only with an optional '+' for the international dialing prefix.You must enter a valid value.You must enter an email address.You must enter at least one email address.You must select a target category firstYou must select an server to be deleted.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.You must specify what action to perform.You must type a new category name.You need to provide an Italian phone numberYour %s session has expired. Please login again.Your Email AddressYour From: address:Your InformationYour Internet Address has changed since the beginning of your %s session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your %s session. To protect your security, you must login again.Your browser does not support this feature.Your browser does not support this print option. Press Control/Command + P to print.Your current time zone:Your default identity has been changed.Your default identity:Your full name:Your login has expired.Your new password for %s is: %sYour options have been updated for the duration of this session.Your options have been updated.Your password has been resetYour password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your remote servers:YugoslaviaZaireZambiaZimbabwe[Hide Quoted Text][Problem Report][Show Quoted Text -[Show Quoted Text - %s lines][line %s of %s]_Browse_CLI_DataTree_Groups_Home_Import/Export_Log in_Log out_New Bookmark_Options_Permissions_Reports_Search_Setup_Usersaddress bookaddressee unknowncalendarcalmcannot create output filecannot open inputclickclick hereclickscommand line usage errorconfiguration errorcritical system file missingdata format errorentry not foundfallingfilefrom the %s (%s) at %s %sh:hhhost name unknownimmediateinlineinput/output errorinternal software errorlines]mkisofs error code %d while making ISO.mmnamenot yet implementednotepadpermission deniedremote error in protocolrisingservice unavailableshow differencessms2email via HTTPsssteadysystem errortask listtemporary failuretype the password twice to confirmunifiedunknown errorunnameduser selectvCardw:weather.comProject-Id-Version: trean Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2006-07-25 11:30+0200 PO-Revision-Date: 2006-04-30 10:32+0100 Last-Translator: duck@obala.net Language-Team: sl_SI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (pred %s dnevi) (Hitra tipka %s) (v %s dneh) (danes) (jutri) (včeraj) ob "%s" ni mapa"%s" ni veljavna izbira."%s" ni veljaven epoštni naslov."%s" ni postavljen v Hordovem registru."%s" ne najdem drevesa za izris.Ne najdem share "%s""%s" ne najdem drevesa za izpis."%s" je bil dodan skupinskemu sistemu."%s" je bil dodan k sistemu pravic."%s" ni bil ustvarjen: %s "%s" ni bil preimenovan: %s.Porabljeno %.2fMB od %.2fMB dovoljenih (%.2f%%)%d %s in %sUvoženih je bilo %d map in %d priljebljenih.Še %d dni do poteka gesla.%d-dnevna napoved%s – Obvestilo%s priljubljene%s Klikov%s Odtis%s KB%s MB%s Vzdrževalna dela - Potrditev%s Šifre odgovorov%s Nastavitve%s prijava%s Pogoji%s že obstaja.%s ob %s %s%s je pripravljen na izvajanje vzdrževalnih operacij, preveri spodaj.Preveri nabiralnik za vse operacije, ki bi jih rad opravil sedaj.Potrebujem %s %s minut%s ne najdem.%s ob %s od %sImenik %sPriljublje %sKoledar %sBeležka %s%s Opravila%s: %s%s: to sporočilo mogoče ni od pošiljatelja, kateri pravi da je. Pazite se katerihkoli povezav v sporočilu ali podajanju katerih koli osebnih informacij na ta naslov., gostim , gostim %s %s, spremenljivka od %s do %s-- izberi --1 Klik1. vrstica12 urna oblika1xx Šifra odgovora (%s)2. vrstica24 urna oblika24 ur2xx Šifra odgovoa (%s)3. vrstica3xx Šifra odgovoa (%s)5xx Šifra odgovoa (%s)5xx Šifra odgovoa (%s)NikaragvaNigerNigerijaNigerNiueNobedenNi najdenih priljubljenihNi vsebineNi dostopnih podatkov o konfiguraciji da bi pokazal razlike.Strategija za izdelavo ISO slik, ni dostopna.Ni paketne predlogeNa želenem mest beležka ne obstaja.Ni zaznamkov za prikazni spremenjenoNa tej stopnji ne dodajamo otroških dovoljenj.Za %s ni specificiranih konfiguracijskih informacij.Za FTP VFS ni posebnih informacij. Za SQL VFS ni posebnih informacij. Za datoteko-SQL VFS ni posebnih informacij.Ni posedovanih nastavitvenih informacij za SSH VFS.Ni stanja na računu.Ni destinacijeNi naloženih datotek.Ne najdem ikon.Mesto ni nastavljeno.Ni posredovanega mesta.Nobeno sporočilo dostavljeno.Ni specificirano nobeno ime.Ni specificirano nobeno število.Nobenih ofenzivnih sreč.Pot do binarne datoteke OpenSSL ni bila nastavljena. OpenSSL binarna datoteka je potrebna za delo s PKCS 12 podatki.Ne sprejemamo začasnih prijavNe najdem lastnosti "%s" v "%s".Kvota ni nastavljena/določena.Ni specificirano ločilo.Ni take datotekeNi objekta %s!Ne najdem začasne mape za predpomnilnik.Nobeno uporabniško ime in/ali geslo ni bilo poslano.Povratnih veljavnih XML podatkov niBrez vrednostiV originalni konfiguraciji ne najdem nobene različice. Obnoviti konfiguracijo.V vaši konfiguraciji ne najdem nobene različice. Obnovite konfiguracijo.Ne-avtoritativna informacijaNobenNordijski (ISO-8859-10Norfolški otokiSeverna poloblaSeverni Marianski otokiNorveškaNedpoustnoNe kasnejeNe prejNe obstajaNi podprtoNi spremenjenoNi imenikNi najden.Ni izvedeno.Ne podpiram.Opomba:ZapiskiNi vpisanih besed za iskanje, vrnite se nazaj.Nič za urediti.novemberŠteviloŠtevilo klikovŠtevilo znakovŠtevilo stolpcevŠtevilo kolon, ki jih prikažemo v izpisu (nima učinka na drevesno strukturo):Število vrsticNi specificiranih številk za ažuriranje in distribucijski seznam.O znakiDaObjektUstvarjalec objektovOsmiškioktoberFilter neprimernih izrazovPisarnaStaro in novo geslo morata biti različna.Staro GesloStaro geslo ni pravilno.OmanV novih verzijah Internet Explorerja, boste morali dodati %s://%s med Varne točke da vam bo naposredna povezava delovala.Dogodek ob klikuMape v skupni uporabi podpira samo IMAP strežnik.Samo nesramne izjaveDovoljen je le en elektronski naslov.Dovoljen je le en elektronski naslov.Le lastnik ali sistemski administrator lahko spremeni lastništvoOdpri mapoOdpri v novem oknuOdpri povezave v novih oknihOdprtaSSL napaka: Ne morem povzeti datuma iz označenega S/MIM dela.Operacijski sistemMožnostiMožnosti za %sAliOrganizacijaOrganizacijska enotaOrganizacijaIzvirne šablone aplikacijIzvirni šablone v %s:DrugoOstale informacijeDruge nastavitveOstali znakiDovoljenja lastnikaLastnik:Overjenje ni uspeloPEAR:: gonilnik PošteDigitalen podpis PGPKodirani PGP podatkiJavni ključ PGPPodpisani/kodirani PGP podatkiPHPPHP kodaPHP lupinaPopoldne rahel dežPopoldne dežPopoldne naliviPopoldne sneg.Popoldne snežni metežiPopoldne soncePopoldne nevihteManjka POSIX razširitevP_HP lupinaPakistanPalauPalestinki okupirani teritorijPanamaPapua Nova GvinejaParagvajDelna vsebinaDelno oblačnoGesloGeslo uspešno spremenjenoNepravilno gesloZa RADIUS overitev je zahtevano geslo.Geslo in potrditevGeslo:Geslo: Geslo se mora ujemati.PrilepiZahtevano plačiloNepotrjene prijaveLjudjeIzvrši vzdrževalna delaIzvršim vzdrževalna dela ob prijavi?Dovoljenje"%s" dovoljenje ni izbrisano.Dovoljenje je zavrnjeno.DovoljenjaUpravniška dovoljenjaOsebne informacijePeruLjubljenčkiFilipiniTelefonTelefon #FotografijePitcairnProsimo, da vnesete mesec in leto.Prosim vnesite ime od nove kategorije:Prosimo, da vnesete veljaven IP naslov.Prosimo, da vnesete veljaven datum: preverite število dni v mesecu.Prosimo, da vnesete pravilen čas.Prosim vnesite ime od nove kategorije:Prosim popravite imeProsimo, da pripravite povzetek težav.Prosimo, da si izberete uporabniško ime in geslo.Prosimo, preberite sledeče besedilo. če želite uporabljati ta sistem, se morate strinjati s pogoji.Najprej izberite povezavoProsim, vnesite ime nove kategorije:PoljskaPolitikaAnketeVrataPortugalskaOddajOddaj v to mapo (ni zahtevano od IMAP)PostnukePadavine v zadnjih %s urah:Padavine
možnostPredpogoj neizpolnjenMožnost "%s" je bil izbrisana iz modula "%s".Prefs_ldap: zahtevanega LDAP raztega ne najdem.TlakTlak na morski višini:Tlak: PredogledPrejšnje možnostiZaseben ključProblemZ opisom so težave..ProjektiTakojšnje besediloZahtevna je avtentikacija pri posrednikuJavni ključAlgoritem javnega ključaInformacije javnega ključaJavni/zasebni par ključev ni bil uspešno generiran.PortorikoSprazniPrečisti sporočilaRozastoKatarPoizvedbaKvotaRSA javni ključ (%d bitov)Izberite radioDežDež zjutrajDež popoldneNalivDež in snegDež v snegSrečaTočkovanjeTočkovanjaRazmerjeBeriBeri sporočilaSte prepričani, da želite zbrisati %s? Izbrisa ni mogoče preklicati.Ste prepričani, da želite zbrisati uporabnikove podatke za uporabnika%s? Izbrisa ni mogoče preklicati.Preusmerjen na %sOsvežiOsveži dinamični meni elementov:Osveži portal:Osvežitveni interval:RegexPregledovalnik razmerijPonovno naložiPripombeOddaljeni strežnikiOddaljen URL (http://www.example.com/horde):OdstraniOdstrani parOdstrani shranjeno skripto iz strežnikove začasne mape.Odstrani uporabnikaOdstrani uporabnika: %s Preimenuj to kategorijoPoročilaZahtevek predolgČas čakanje se je iztekelZahtevi ne morem ugoditi. Vrnjena je napačna koda: Zahtevan URI je predolgZahtevana širina ni zadovoljujočaNe najdem zahtevanega servisa.Zahtevani "%s" ni podrobno oblikovan v %s konfiguraciji.Zahtevani "%s" ni podrobno oblikovan v VHS konfiguraciji.Zahtevani '%s' ni podrobno oblikovan.Zahtevana datotekaPonastaviPonastavi vsebinoPonastavi gesloPonastavite vaše gesloObnovite zadnjo poizvedboZadetkiVrni se na MožnostiPonovno vpišite novo gesloPonovno združiPovrni konfiguracijoVrni se na možnosti urejevalnika besedilaEnigmeMeni z desnim klikomDesno oglavjeDesne vrednostiFunkcijaRomunijaObrni za 180Obrni na levoObrni na desnoZaženiRusijaRuanda S/MIME kriptografski podpisS/MIME kodirano sporočiloSASL Overjanje ni uspeloSMS sporočiloSQL lupinaSQL stavek za poizvedbo vrednostiSSHUSPEHS_QL lupinaSaSveta HelenaSaint Kitts and Nevis Saint LuciaSaint Pierre and Miquelon Saint Vincent in GrenadineSamoaSan MarinoSao Tome in PrincipeSatelitski oskrbovalecSaudska ArabijaShraniShrani "%s"Shrani %s Shrani možnostiShrani in končajShranite generirano konfiguracijo kot PHP skripto na začasni mapi vašegastrežnikadirectory.Shranjena %s konfiguracijaShranjena nastavitvene skripta nadgradnje na: "%s".Razdivjana nevihta z grmenjemZnanostNajdiNajdiNajdi v zaznamkihIskalnikiRezultati iskanjaRezultati iskanja (%s)Išči:Preglej ostaleNajdi vseNajdi v vseh zaznamkihIzberi vse kategorijeIzberite datotekoNe izberi nobeneIzberite datumIzberite skupino, ki jo želite dodati:Izberite novega lastnika:Izberite strežnikIzberite uporabnika, ki ga želite dodatiIzberite vseIzberite popoln datumIzberite slikoIzberite predmetIzberite dodatke urejevalnikaOdkljukaj vseZnake, ki jih potrebujete izberite iz okvirjev spodaj. Nato jih lahko kopirate in prilepite v/iz besedila.Izberite obliko datuma in ure:Določi končni datum:Izberite obliko datuma:Izberite vrst ni red datuma in ure:Izberite identiteto, katero želite spremeniti:Določi končno uro:Izberite obliko ure:Izberite dve ujemajoči se polji:Izberite vaše barvno kombinacijoIzberite jezik:Izberi: %s, %sIzberi: %s, %s, %s, %sPošlji poročilo o napakahPošlji SMSPošiljanje neuspešno: %sSenegalSenzor:sepremberSrbija in črna goraSerijska številkaStrežnikov datum je napačen ali ni na razpolago.Servis nedostopenAdministracija sejeID seje je potekla.SejePostaviNastavi previceNastavi opcijo, da v primeru, da pozabite vaše geslo, lahko ponastavite le-to.Uredite oddaljene strežnike na katere želite dostopati z vašega portalaNastavite privzet jezik in nastavitve datumaUredi začetne barvne sheme, aplikacije, osvežitve strani...NamestiNastavi skripto za osvežitev kot razpoložljivo.Možnih je več lokacij s parametrom:SejšeliShare/kolab: Ne morem določiti lastnika mape %s.Shibboleth overjanje ni na voljo.NakupovanjeKratek povzetekNatavim tipkarske bližnice na povezave?Odprem spisek proljubljenih pri prijavi?PokažiPokaži razlike med sedaj shranjeno in najnovejšo generirano konfiguracijo.Prikaži datum zadnje prijave po vstopu?Prikaži opcije za obdržati originalPokaži tistega, ki sprejemaPrikažem %s meni na levi strani?Dodaj nalaganjePloheJutranje plohePopoldanske ploheV bližini ploheSkrčiNajprej skrči ali premakni sosednje bloke vsebine.Sierra LeonePrijavi sePodpisAlgoritmičen podpisSingapurVelikostPreskoči vzdrževanjeSlovaškaSlovenijaMajhnaSnegSnežna plohaSnežne ploheZjutraj snežne plohePopoldne snežne ploheVišina snega:Snegu ekvivalentna količina vode:Salomonovi otokiSomalijaPesmi in poezijeVrsta urejenega izboraNaslov viraJužna AfrikaJužno-evropski (ISO-8859-3)Južna Georgia in otoki Južni SandwichJužna poloblaProstorŠpanijaNezaželena poštaVhod za posebne znakePosebni znakiŠportiŠri LankaStandardenStar TrekZačetno letoDržava ali provincaStatusOblika pomnilnikaNaslov uliceSpisek besednih zvezOdstrani domeno iz naslovaNeNe najdem podmape "%s"ZadevaPredložiSprejeli smo zahtevek za vpis "%s". Ne morete se prijaviti dokler vaša zahtevek ne po potrjen.Uspeh"%s" sem uspešno dodal k sistemu.'%s' sem uspešno odstranil iz sistema."%s" sem uspešno izbrisal."%s" sem uspešno odstranil iz sistema.Uspešno vrnjena konfiguracija. Če želite videti spremembe, ponovno naložite.Uspešno shranjena varnostna kopija konfiguracije.Uspešno shranjena varnostna kopija kofiguracije datoteke %s."%s" je bil uspešno posodobljen.%s sem uspešno zapisal.SudanSončni vzhodSončni zahodSončnoSončni vzhodSončni vzhod/zahodSončni vzhodSončni zahodSončni zahod:PodporaSurinamPriimekSvalbard in Jan MayenSvaziŠvedskaZamenjava protokolovŠvicaIzbrisan sinkronizacijski dnevnikSinkronizacijaSirijska arabska republikaGrmenjeNevihta z grmenjem in vetromNevihta z grmenjemJutranje nevihte z grmenjemTSV datotekaNastavitev tabeleMenijska vrstica za urejanje tabelTajvanTaiwan, dežela KitajskeTadžikistanTanzanija, Združena republikaOpravilaTelefonska številkaTemperatura v zadnji uri:TemperaturaTemperatura: Temperatura
(%sHi%s/%sLo%s) °%sŠablona"%s" šablone ne najdem.Urejevalnik šablonŠablono, ki jo bomo uporabili pri prikazu priljubljenih:Začasno preusmerjenHordeBesediloPolje besedilaSamo besediloČeTajskaFTP razširitev ne obstajaZgodovina je izklopljena.Horde/Kolab integracija ne podpira "%s"Posodobljen datoteke ne morem shraniti.Vzdrževanje: razred ni bil uspešno naložen.Okno Možnosti je bilo zaprto. Zaključujem.SSH2 ekstenzija ni na voljoAdministrator mora najprej nastaviti sistem za pravice.Kontaktni ID ni bil posredovan ali ni bil najdev v bazi podatkov.Stik je bil uspešno dodan k vašim naslovom. Kliknite spodaj za ogled:Potrebujem ločeno PGP podpisano beležnico, da previrim podpisano sporočilo.ID seznama ni bil posredova ali ni bil najden v bazi podatkov.Ni postavljene distribucijske liste.Elektronski naslov %s je bil dodan v vašo identiteto. Lahko zaprete okno.Kodirana vsebina zahteva varno internetno povezavo.%s datoteka bi morala vsebovati %s nastavitvr.%s datoteka bi morala vsebovati %s nastavitve. Datoteka ne vsebuje nobenih podatkov.Sledeče aplikacije so povzročile napaka pri odstranjevanju podatko uporabnika: %sStrežnik "%s" je bil izbrisan.Slika je preveilka. Največje dovljena velikost je %d bajtov.Mesto GnuPG programa mora biti posredovano razredu Crypt_pgp.Sporočilo poslano dne %s za %s z naslovom "%s" je bil prebran. Ni zagotovila da je bilo dejansko prebrano ali razumljeno.Ime za povezavo na stran za sestavljanje sporočila.Elektrnski naslov ne more biti preverjen, poskusite kasneje: Ta vrednost mora biti številka.Potrebujem openssl modul za Horde_Crypt_smime:: razred.Nastaviene datoteke "%s" ne more shraniti, ker njeni podatki presegajonajvečji dovoljen obseg.Nastavitveni gonilnik je trenutno nedostopen. Zato niso bile naložene vaše osebne nastavitve, temveč privzete.Programa, ki odpira podatke te vrste (%s) ne najdem v sistemu.Razmejitev mora biti sestavljena le iz enega znaka.Ločilo mora biti en znak.Strežnik "%s" je bil izbrisan.Strežnik "%s" je shranjen.Zahtevek za prijavo %s je bil odstranjen.Izbrana vrstica (%d) ne obstaja.Vnešeno besedilo ne ustreza besedilo na ekranu.Posodobljeni podatki so bili izgubljeni pri prejšnjem koraku.Posodobljen datoteke ne morem shraniti.Uporabnik [%s] že obstaja.weather.com ni na voljo.Ne najdem mape oblik "%s".Ni priljubljenih v tej kategorijiNi nikakšnega elektronskega naslova za preverbo.Ni možnosti na razpolago.Deli ne morejo biti prikazani.V polju je preveč znakov. Vtipkali ste %s znakov. Vtipkati morate manj kot %s znakov.Prišlo je do napake pri dodajanju '%s' k sistemu: %sPrišlo je do napake pri odstranjanju '%s' iz sistema.Prišlo je do napake pri podvajanju povezave: %sPrišlo je do napake pri brisanju povezave: %sPrišlo je do napake pri brisanju povezave: %sPrišlo je do napake pri premikanju povezave: %sPrišlo je do napake pri premiku kategorije: %sPrišlo je do napake pri odstranjanju '%s' iz sistema.Prišlo je do napake pri posodabljanju '%s': %s Pri nalaganju datoteke je prišlo do napake. Nobeden %s ni bil naložen.Pri nalaganju datoteke je prišlo do napake. %s zaseda več prostora, kot je dovoljeno. Dovoljeno je (%d bytov).Pri nalaganju datoteke je prišlo do napake. %s je le delno naložena.Prišlo je do napake pri dodajanju povezave: %sPrišlo je do napake pri dodajanju kategorije: %sV sporoeilu se je pojavila neznana napaka.Pri sprejemanju kontakta je prišlo do napake.Pri sprejemanju kontakta je prišlo do napake.Konfiguracijski obrazec vsebuje napako. Verjetno ste pozabili nastaviti zahtevano polje.Prišlo je do napake pri procesiranju izbranega imenika. Prosimo poskusite znovanekoliko kasnejePrišlo je do napake pri shranjevanju povezave: %sPrišlo je do napake pri shranjevanju kategorije: %sPri sprejemanju kontakta je prišlo do napake. Prosimo poskusite znova kasneje.Pri sprejemanju kontakta je prišlo do napake. Prosimo poskusite kasneje.Vaš brskalnik ne podpira te poteze.To ni veljaven RAR arhiv.To ni veljavna zip datoteka.Številka kartice ni veljavna.Ta gonilnik omogoča pošiljane sporočil preko SMPP vrat.Ta gonilnik omogoča prenos elektronskih sporočil v SMS-je za le za operaterje, ki to omogočajo.Gonilnik omogoče pošiljanje sporočil preko operaterja Clickatell.Gonilnik omogoče pošiljanje sporočil preko operaterja WIN.Gonilnik omogoče pošiljanje sporočil preko operaterja sms2email.Gonilnik omogoče pošiljanje sporočil preko italjanskega operaterja Vodoafone.Za pošiljanje morete imeti registrirani na http://www.190.itPotrebujem to polje.To polje lahko vsebuje le cela števila.To polje lahko vsebuje le števila in stolpec.To polje lahko vsebuje le števila.Polje mora vsebovati seznam števil, ločenih z vejico ali presledkom.Ta vrednost mora biti številka.To polje mora vsebovati barvno kodo v RGB Hex formatu, na primer '#1234af'.Ta oblika je bila že obdelana.To je %s.To je podatek skupinska upravljanje Kolab. Za pregled tega podatka potrebujetepregledlovalnik, ki podpira način zapisa Kolab Groupware. Za seznam odjemalcevki to podpirajo obiščite %sTo je nova možnost namestitve.Sporočilo je bilo napisano v kodni tabeli drugačne od vaše (%s).To število mora biti vsaj ena.Ta strežnik ne more odpreti zip in gzip datotek.Sistem je trenutno neakitiven.Ta vrednost mora biti številka.To okno morate pognati z okna Možnosti.BliskPrijaveČasSlednje časaOblika časaIzbira časa.Čas ali neznanoNaslovSamo naslovNaslov in OpisNaslov, URL in opisZaDa lahko hitro doda zaznamke iz svojega brskalnika:Če želite izbrati več predmetov, pritisnite Control/CTRL (PC) ali Command/Cmd(Mac) tipko, medtem ko klikate nanje.danesTogoTokelauJutriTongaPreveč neuspelih prijav zadnjih minutah.10 najbolj točkovanih10 najbolj klikanihSkupajPrevodiDrevesni pregledTrinidad in TobagoPravilno ali napačnoToTunizijaTureijaTurški (ISO-8859-9)TurkmenistanTurški in Caicos otokiTuvaluVtipkajte vašo izbiro: U znakiU.V. indeks:URLURL vaše skripte za poročanje statusa dostaveUgandaUkrajinaNimam dostopa do VFS imenika.Ne morem se pvoezati z LDAP strežnikom %s!Ne morem spremeniti pravice za VFS datoteko "%s".Dovoljenja za VFS %s/%s ne morem spremeniti.Ne morem spremeniti na %s.Ne morem spremeniti na "%s".Ne morem preimenovati VFS datoteke %s/%s.Ne morem se povezati s SSL.VFS datoteke ne morem kopirati.Ne morem ustavriti imenika "%s".VFS imenika ne morem ustavriti.VFS datoteke ne morem ustvariti.Ne mroem ustvariti imenika "%s".VFS datoteke ne morem ustvariti.Podatkov ne morem sprostiti.Ne morem izbrisati %s, imenik ni prazen.Ne morem izbrisati '%s': %s.Ne morem izbrisati %s, imenik ni prazen.Ne morem izbrisati rekurzivno imenika.Ne morem izbrisati imenika.Ne morem izbrisati VFS imenika: %s Ne morem izbrisati datoteke."%s".Ne morem izbrisati VFS datoteke.Ne morem izbrisati datoteke "%s".Ne morem izbrisati VFS: %s Ne morem določiti trenutnega imenika.ne moremo zagnati smbclient.Ne morem izpisati potrjenih podrobnosti.Ne morem spremeniti na %s.Ne morem premakniti VFS datoteke.Ne morem odpreti datoteke"%s".Ne morem odpreti VFS datoteke namenjene pisanju.Ne morem odpreti VFS datoteke.Ne morem odpreti zgoščenega arhiva.Ne morem preimenovati VFS datoteke %s/%s.Ne mroem prebrati VFS datoteke (size() failed).Ne morem preimenovati VFS datoteke.Ne morem prebrati VFS osnovnega imenika.Ne morem preimenovati VFS imenika.Ne morem preimenovati VFS imenika: %s.Ne morem preimenovati VFS datoteke "%s".Ne morem preimenovati VFS datoteke %s/%s.Ne morem preimenovati VFS datoteke.Ne morem spremeniti na %s.Ne morem prevesti tega Wordovega dokumenta.Ne morem sprožiti prosto/zasedeno posodobite za %sNe morem napisati VFS datoteke "%s".Ne morem napisati VFS podatkovnih datotek.Ne morem napisati VFS podatkovnih datotek.Ne morem napisati VFS datoteke, kvota bo presežena.NeavtorizianRazveljavi spremembeNepričakovan odgovor s strežnika v povezovanju:Nepričakovan nepričakovan odgovor strežnika za:NeizpolnjenoUnikod (UTF-8)Združeni arabski emiratiZdruženo kraljestvoZdružene državeZdružene države Otoki Minor OutlyingEnoteNeznanoNeznan apimsgid (ID API sporočila).Neznan climsgid (ID uporabniškega sporočila)Mesto ni nastavljeno.Neznano uporabniško ime ali geslo.Brez imenaNepodprta razširitevNepodprt Media TypePosodobiPosodobi %sPosodobi uporabnikaPosodobljen '%s'.Ažuriran %s.Izbrisana skripta za nadgradnjo.NalagamNaloži na strežnik vse namestitvene datoteke aplikacij.UrugvajUporabi sedanji: %sUporabi posrednikaUporabi SSLUporabi, če je uporabniško ime/geslo drugačno od IMSP strežnika.UporabnikUporabnik %s nima dostopa do %sUprava za uporabnikeUporabniške nastavitveRegistracija uporabnikaRegistriranje uporabnikov je na tej strani onemogočeno.Ne najdem uporabnikov račun.Uporabnik %s nu porabnik kolab strežnika!Izberite uporabnika, ki ga želite dodati:Uporabniško imeUporabniško ime "%s" je že v uporabi.Uporabniško ime: Uporabniško ime: UporabnikiUporabniki, ki so v sistemu:UzbekistanVFS imenik ne obstaja.OdsotnostNajdena veljavna lokacija zajema:VeljavnostVrednost v minutah od sedaj dalje.Vrednost presega maksimalno dolžino %s.VrednostiVrednosti od koder izbiratiVanuatuVariabilnoVenezuelaPreverjanje neuspešno - mogoče je bilo sporočilo spremenjeno.RazličicaRazličicaZelo visokoVietnamVietnamski (VISCII)Poglej %sPoglej %s [%s]Preglej poročiloPogled na zunanjo spletno stranDeviški otoki (britanski)Deviški otoki (ZDA)VidljivostVidljivost:Vodafon Italija preko SMTPOPOZORILOOPOZORILO!!! ROČNO ODSTRANI SKRIPTO IZ %s.WIN preko HTTPWallis in FutunaOpozoriloSrVremenska napovedVremenski podatki s spletaweather.comSpletSpletno mestoTedenskoDobrodošliDobrodošli na %sDobrodošli, %sZahodni (ISO-8859-1)Zahodni (ISO-8859-15)Zahodna SaharaKatero aplikacijo naj prikaže %s po prijavi?Katero je ločilo?Kakšen je navedeni znak?Zemljevid Whereis AustraliaRazvojna stopnjaKatere dodatke naj omogočim pri urejanju besedil.Med brskanjem, bo lahko dodal zaznamke s klikom na povezavo "Dodaj k zaznamkom".Celotno poljeŠirina v enotah CSSŠirina %s menija na levi (odrazila se bo ob naslednji prijavi):WikiVeterJutranji veterHitrost vetra v vozlihVeter:Veter: OknaModrostLista željaSlužbaSlužbeni naslovSlužbeni telefonNapačno število polj v %d vrsti. Pričakovanih %d, najdenih %d.Napačno število polj. Pričakovanih %d, najdenih %d.Napačen odmik %d med branjem datoteke VFS.X-RefX509v3 osnovna omejitevX509v3 Razširjena uporaba ključaX509v3 Zadeva alternativno imeX509v3 Kjue za doloeiti zadevoX509v3 razširitevLLLLLLYahoo! zemljevidLetnoJemenDaDa, se strinjam.Ustvarja kategorijsko mapoNimate dovoljenja ustvariti več kot %d blokov.Nimate pravice tvorjenje več kot %d povezav.Nimate pravice tvorjenja več kot %d kategorij.Niste prijavljeni.Preimenuje trenutno kategorijsko mapo.V imenu ne morete imeti znakov '\'Niste se prijaviliNiste vstavili veljavnega elektronskega naslova.Med sprejetimi datotekami niste označili nobenega polja, ki se ujema s polji v%s.Nimate pravice ogleda te kategorijeOdjavili ste se.Želeli ste dodati naslov "%s" v spisek vaših osebnih naslovov. Preko spodnje povezave lahko potrdite da je vaš naslov delujoč: %s Če ne veste kaj pomeni to sporočilo ga lahko mirno izbrišete.Oblikovati morate Signup backend, šele nato se lahko prijavljate.Oblikovati morate VFS backend.Najprej opišite težave, šele nato lahko pošljete poročilo o težavah.Vnesti morate veljavno gsm številko. Dvoljeni znaki so le številke in '+' kot predpona mednarodnim šteivlkam.Vstaviti morate dovoljeno vrednost.Vnesti morate elektronski naslov.Vnesti morate vsej en elektronski naslov.Najprej morete izbrati cljano kategoijoIzbrati morate strežnik, ki bo izbrisan.Natančneje navedite uporabniško ime, ki ga želite izbrisati.Natančneje navedite uporabniško ime, ki ga želite odstraniti.Natančneje navedite uporabniško ime, ki ga želite dodati.Natančneje navedite uporabniško ime, ki ga želite posodobiti.Natančneje navedite kaj želite narediti.Vtipkajte ime nove kategorije.Vnesti morate italijansko telefonsko številkoVaša prijavitvena seja %s je potekla. Prosimo, da se ponovno prijavite.Vaš elektronski naslovVaš naslov:Vaši podatkiOd začetka %s seje, se je vaš spletni naslov spremenil. Iz varnostnihrazlogov, se morate ponovno prijaviti.Vaše imeVaše ozadje za overjene ne podpira dodajanja uporabnikov. če želite uporabitiHorde za administriranje uporabniških računov, morate uporabiti drugo ozadje zaoverjanje.Vaše ozadje za overjanje ne podpira navajanja uporabnikov ali pa je bila možnost onemogočena iz drugih razlogov.Kaže, da se je od začetka % seje, vaš brskalnik spremenil. Izvarnostnih razlogov, se morate ponovno prijaviti.Vaš brskalnik ne podpira te funkcije.Vaš brskalnik ne podpira določenih možnosti pri printanju. Za printanje pritisnite Control/Možnosti + P.Vaš trenutni časovni pas:Vaša privzeta identiteta je bila spremenjena.Privzeta identiteta:Vaše ime:Vaša prijava je potekla.Vaše nove geslo za %s je: %sVaše nastavitve so bile posodobljene za čas te seje.Vaše nastavitve so bile posodobljene.Vaše geslo je bilo ponastavljeno.Vaše geslo je bilo ponastavljeno. Na vaš e-naslov smo vam poslali novo geslo s katerim se prijavite.Vaše geslo je potekloVaše geslo je poteklo.Vaši posredni strežniki:JugoslavijaZairZambijaZimbabve[Skrij citirano besedilo][poročilo o napaki][Pokaži citirano besedilo -[Pokaži citirano besedilo - %s vrstic][%s vrstica od %s]Brskaj_CLI_Drevesna struktura_Skupine_NamizjeUvoz/Izvoz_Prijava_OdjavaNova povezava_Možnosti_DovoljenjaPoročilaNajdi_Nastavitve_Uporabnikiimenikneznan naslovnikkoledarMirnone morem ustvariti izhodne datotekene morem odpreti vhodaklikklikni tuklikovnapaka v uporabi ukazne vrsticenapaka v konfiguracijine najdem zahtevane sistemske datotekenapačna oblika datumane najdem vnesenih podatkovPadavinedatotekaiz %s (%s) k %s %sh:hhneznano ime gostiteljatakojmed vrsticamivhodna/izhodna napakaInterna napaka v programuvrstic]mkisofs napaka kode %d, med pripravljanjem ISO.mmimeše ni podprtabeležkadovoljenje je zavrnjenonapaka v oddaljenem protokoluvzhajajočeservis ni na voljo.pokaži razlikesms2email preko HTTPssstabilnosistemska napaka.seznam opravilzačasna odpovedza potrditev vtipkajte geslo dvakratenotenneznana napakabrez imenaIzbira uporabnika vCardw:weather.comtrean-1.0.3/locale/sl/LC_MESSAGES/trean.po0000664000175000017500000005266412171337643016067 0ustar janjan# Slovenian translations for Trean packaga # Slovenski prevod Trean paketa # Copyright 2006-2013 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: trean\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" #: edit.php:248 #, php-format msgid "\"%s\" was not renamed: %s." msgstr "\"%s\" ni bil preimenovan: %s." #: data.php:153 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "Uvoženih je bilo %d map in %d priljebljenih." #: templates/reports/http-status.inc:127 #, php-format msgid "%s Bookmarks" msgstr "%s priljubljene" #: templates/reports/clicks.inc:49 #, php-format msgid "%s Clicks" msgstr "%s Klikov" #: reports.php:30 #, php-format msgid "%s Response Codes" msgstr "%s Šifre odgovorov" #: scripts/upgrades/2005-03-15_move_to_horde_share.php:123 lib/base.php:69 #, php-format msgid "%s's Bookmarks" msgstr "Priljublje %s" #: templates/reports/clicks.inc:47 msgid "1 Click" msgstr "1 Klik" #: lib/Block/bookmarks.php:56 msgid "1 Line" msgstr "1. vrstica" #: templates/reports/http-status.inc:59 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx Šifra odgovora (%s)" #: lib/Block/bookmarks.php:55 msgid "2 Line" msgstr "2. vrstica" #: templates/reports/http-status.inc:65 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx Šifra odgovoa (%s)" #: lib/Block/bookmarks.php:54 msgid "3 Line" msgstr "3. vrstica" #: templates/reports/http-status.inc:76 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx Šifra odgovoa (%s)" #: templates/reports/http-status.inc:87 #, php-format msgid "4xx Response Codes (%s)" msgstr "5xx Šifra odgovoa (%s)" #: templates/reports/http-status.inc:109 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx Šifra odgovoa (%s)" #: lib/Trean.php:262 msgid "Accepted" msgstr "Sprejeta" #: lib/Block/tree_menu.php:24 msgid "Add" msgstr "Dodaj" #: add.php:111 msgid "Add Bookmark" msgstr "Dodaj Priljubljeno povezavo" #: templates/add/add.inc:31 msgid "Add a new bookmark" msgstr "Dodaj novo povezavo" #: templates/add/add.inc:86 msgid "Add to Bookmarks" msgstr "Dodaj v Priljubljene" #: templates/search/results_header.inc:12 templates/browse/bookmarks.inc:30 msgid "All" msgstr "Vse" #: lib/Block/bookmarks.php:48 msgid "All Bookmarks" msgstr "Vsi Zaznamki" #: lib/Trean.php:32 #, php-format msgid "An error occured listing categories: %s" msgstr "Prišlo je do napake pri prikazovanjzu kategorije: %s" #: lib/Trean.php:61 #, php-format msgid "An error occurred counting categories: %s" msgstr "Prišlo je do napake pri štetju kategorije: %s" #: templates/search/search.inc:30 msgid "And" msgstr "in" #: templates/search/search.inc:39 msgid "Any Part of field" msgstr "Katerikoli del polja" #: templates/search/javascript.inc:29 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "Resnično želite izbrissatni izbrane povezave?" #: templates/browse/javascript.inc:114 msgid "Are you sure you want to delete the selected items?" msgstr "Resnično želite izbrissatni izbrane povezave?" #: perms.php:50 msgid "Attempt to edit a non-existent share." msgstr "Poskušali ste urediti neobstoječe deljene povezave." #: lib/Trean.php:294 msgid "Bad Gateway" msgstr "Slab prehod" #: lib/Trean.php:274 msgid "Bad Request" msgstr "Slab zahtevek" #: lib/Bookmarks.php:53 msgid "Bookmark names must be non-empty" msgstr "Imena ne morejo biti prazna" #: data.php:17 templates/browse/bookmarks.inc:33 lib/Block/bookmarks.php:3 #: lib/Block/bookmarks.php:45 lib/Block/bookmarks.php:74 msgid "Bookmarks" msgstr "Priljubljene" #: browse.php:89 msgid "Browse" msgstr "Prebrskaj" #: templates/edit/footer.inc:2 msgid "Cancel" msgstr "Prekliči" #: templates/browse/bookmarks.inc:32 msgid "Categories" msgstr "Kategorije" #: templates/edit/bookmark.inc:79 templates/add/add.inc:51 #: lib/Block/bookmarks.php:41 msgid "Category" msgstr "Kategorija" #: lib/Trean.php:83 msgid "Category does not exist." msgstr "Kategorija ne obstaja" #: lib/Bookmarks.php:32 msgid "Category names must be non-empty" msgstr "Imena kategorij ne morejo biti prazna" #: templates/data/import.inc:11 msgid "Category to import into:" msgstr "Kategorija v katero bomo uvozili:" #: config/prefs.php.dist:11 msgid "Change the number of columns to display in browse and search results." msgstr "Spremeni tevilo kolon, ki se bodo prikazale v brskanju in iskanju." #: templates/search/search.inc:26 msgid "Combine" msgstr "Združi" #: config/prefs.php.dist:44 msgid "Completely collapsed" msgstr "Popolnoma združeno" #: config/prefs.php.dist:46 msgid "Completely expanded" msgstr "Popolnoma razširjeno" #: lib/Trean.php:283 msgid "Conflict" msgstr "Nasprotje" #: lib/Trean.php:258 msgid "Continue" msgstr "Nadaljuj" #: edit.php:222 msgid "Copied bookmark: " msgstr "Podvojen zaznamek: " #: templates/search/results_header.inc:19 templates/browse/bookmarks.inc:52 msgid "Copy" msgstr "Podvoji" #: edit.php:231 #, php-format msgid "Copying categories is not supported." msgstr "Podvojevanje kategorij ni podpirto." #: lib/Trean.php:261 msgid "Created" msgstr "Ustvarjeno" #: templates/reports/http-status.inc:119 #, php-format msgid "DNS Failure or Other Error (%s)" msgstr "DNS pregled ali druga napaka (%s)" #: templates/search/results_header.inc:17 templates/browse/bookmarks.inc:43 msgid "Delete" msgstr "Izbriši" #: templates/edit/bookmark.inc:72 msgid "Delete Bookmark" msgstr "Izbriši zaznamek" #: templates/browse/javascript.inc:32 msgid "Delete current category?" msgstr "Pobriem trenutno kategorijo?" #: templates/browse/bookmarks.inc:70 templates/browse/bookmarks.inc:174 msgid "Delete this Category" msgstr "Pobriši to kategorijo" #: edit.php:34 edit.php:109 msgid "Deleted bookmark: " msgstr "Izbrise povezave: " #: edit.php:123 msgid "Deleted category: " msgstr "Izbrsana kategorija: " #: templates/search/search.inc:21 templates/edit/bookmark.inc:18 #: templates/add/add.inc:46 msgid "Description" msgstr "Opis" #: config/prefs.php.dist:10 msgid "Display Options" msgstr "Nastavitve prikazovanja" #: config/prefs.php.dist:74 msgid "Display bookmark rating in browse/search view?" msgstr "Prkažem ptetje med brskanjem in iskanjem?" #: config/prefs.php.dist:56 msgid "Display edit buttons when displaying Bookmarks?" msgstr "Prikaži gumbe za urejanje v zaznamkih?" #: templates/data/export.inc:11 msgid "Download Category" msgstr "Shrani Kategorijo" #: templates/add/add.inc:77 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" "Povleci povezavo \"Dodaj v zaznamke\" v vrstico brskalnika, kjer piše " "\"Osebne povezave\"" #: templates/add/add.inc:75 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "Povleci povezavo \"Dodaj v zaznamke\" v vrstico brskalnika, kjer piše " "\"Osebni zaznamki\"" #: templates/search/results_header.inc:16 templates/browse/bookmarks.inc:37 msgid "Edit" msgstr "Uredi" #: edit.php:282 msgid "Edit Bookmark" msgstr "Uredi zaznamek" #: perms.php:241 msgid "Edit Permissions" msgstr "Uredi privilegije" #: perms.php:244 #, php-format msgid "Edit Permissions for %s" msgstr "Uredi pravice za %s" #: lib/Trean.php:291 msgid "Expectation Failed" msgstr "Neuspešno pričakovanje" #: templates/data/export.inc:4 msgid "Export Bookmarks" msgstr "Izvozi priljubljene" #: templates/data/import.inc:9 msgid "File to import:" msgstr "Datoteka za uvoz:" #: config/prefs.php.dist:45 msgid "First level shown" msgstr "Prikazan prvi nivo" #: lib/Trean.php:277 msgid "Forbidden" msgstr "Nedovoljeno" #: lib/Trean.php:269 msgid "Found" msgstr "Najdeno" #: lib/Trean.php:296 msgid "Gateway Time-out" msgstr "Vrata pretekla" #: lib/Trean.php:284 msgid "Gone" msgstr "Šlo" #: reports.php:30 templates/reports/list.inc:7 #: templates/reports/http-status.inc:56 templates/edit/bookmark.inc:60 msgid "HTTP Status" msgstr "HTTP status" #: lib/Trean.php:297 msgid "HTTP Version not supported" msgstr "HTTP verzija ni podporta" #: templates/data/import.inc:16 msgid "Import" msgstr "Uvoz" #: data.php:181 templates/data/import.inc:4 msgid "Import Bookmarks" msgstr "Uvozi priljubljene" #: templates/data/export.inc:9 msgid "Include Subcategories" msgstr "Vključi podkategorije" #: lib/Trean.php:292 msgid "Internal Server Error" msgstr "Interna napaka oddaljenega strežnika" #: templates/add/add.inc:76 msgid "Internet Explorer" msgstr "Internet Exporer" #: templates/data/import.inc:7 msgid "" "Internet Explorer users will need to export their current Favorites by going " "to the \"File\" menu and selecting \"Import and Export\"." msgstr "" "Uporabniki Internet Explorerja bodo morali izvoziti svoje Priljbubljene " "tako, da kliknete na \"Datoteka\" in izberete \"Uvozi in izvozi\"" #: lib/Trean.php:285 msgid "Length Required" msgstr "Dolžina je zahtevana" #: templates/search/search.inc:36 msgid "Match" msgstr "Zadetek" #: lib/api.php:34 msgid "Maximum Number of Bookmarks" msgstr "Največje število zaznamkov" #: lib/api.php:31 msgid "Maximum Number of Categories" msgstr "Največje šteivlo kategorij" #: lib/Block/tree_menu.php:3 msgid "Menu List" msgstr "Meni" #: lib/Trean.php:279 msgid "Method Not Allowed" msgstr "Način ni dovoljen" #: templates/browse/bookmarks.inc:58 msgid "More Actions" msgstr "Več ukazov" #: templates/search/results_header.inc:18 templates/browse/bookmarks.inc:45 msgid "Move" msgstr "Premakni" #: lib/Trean.php:268 msgid "Moved Permanently" msgstr "Premaknjeno za vedno" #: edit.php:166 msgid "Moved bookmark: " msgstr "Premaknjene povezave: " #: edit.php:180 msgid "Moved category: " msgstr "Premaknjena kategorija" #: templates/add/add.inc:74 msgid "Mozilla" msgstr "Mozilla" #: templates/data/import.inc:6 msgid "" "Mozilla/Firefox users will need to export their current Bookmarks by going " "into \"Bookmark Manager\" and selecting \"Export\" from the \"Tools\" menu." msgstr "" "Uporabniki Firefox/Mozilla in bodo morali izvoziti svoje priljubljene tako, " "da bodo odprli \"Bookmark Manager\" in izbrali \"Export\" iz \"Tools\" " "menija." #: lib/Trean.php:267 msgid "Multiple Choices" msgstr "Več izbir" #: lib/Trean.php:87 msgid "My Bookmarks" msgstr "Moji zaznamki" #: templates/edit/category.inc:13 msgid "Name" msgstr "Ime" #: templates/browse/bookmarks.inc:60 templates/browse/bookmarks.inc:158 #: lib/Block/bookmarks.php:81 msgid "New Bookmark" msgstr "Nov zaznamek" #: lib/Trean.php:168 msgid "New Category" msgstr "Nova kategorija" #: templates/browse/bookmarks.inc:67 templates/browse/bookmarks.inc:167 msgid "New Subcategory" msgstr "Nova podkategorija" #: templates/search/results_none.inc:3 msgid "No Bookmarks found" msgstr "Ni najdenih priljubljenih" #: lib/Trean.php:264 msgid "No Content" msgstr "Ni vsebine" #: lib/Block/bookmarks.php:124 msgid "No bookmarks to display" msgstr "Ni zaznamkov za prikaz" #: lib/Trean.php:263 msgid "Non-Authoritative Information" msgstr "Ne-avtoritativna informacija" #: templates/search/results_header.inc:13 templates/browse/bookmarks.inc:31 #: templates/reports/rating.inc:48 msgid "None" msgstr "Noben" #: lib/Trean.php:280 msgid "Not Acceptable" msgstr "Nedpoustno" #: lib/Trean.php:278 msgid "Not Found" msgstr "Ne obstaja" #: lib/Trean.php:293 msgid "Not Implemented" msgstr "Ni podprto" #: lib/Trean.php:271 msgid "Not Modified" msgstr "Ni spremenjeno" #: templates/add/add.inc:80 msgid "Note:" msgstr "Opomba:" #: edit.php:276 msgid "Nothing to edit." msgstr "Nič za urediti." #: templates/reports/list.inc:13 templates/reports/clicks.inc:5 msgid "Number of Clicks" msgstr "Število klikov" #: config/prefs.php.dist:22 msgid "" "Number of columns to display in browse and search results (does not apply to " "tree view):" msgstr "" "Število kolon, ki jih prikažemo v izpisu (nima učinka na drevesno strukturo):" #: lib/Trean.php:260 msgid "OK" msgstr "Da" #: templates/add/add.inc:81 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "V novih verzijah Internet Explorerja, boste morali dodati %s://%s med Varne " "točke da vam bo naposredna povezava delovala." #: perms.php:62 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "Le lastnik ali sistemski administrator lahko spremeni lastništvo" #: templates/menu.inc:2 templates/menu.inc:5 lib/Trean.php:208 #: lib/Trean.php:213 msgid "Open Fo_lder" msgstr "Odpri mapo" #: config/prefs.php.dist:65 msgid "Open links in a new window?" msgstr "Odpri povezave v novih oknih" #: templates/search/search.inc:29 msgid "Or" msgstr "Ali" #: config/prefs.php.dist:9 msgid "Other Options" msgstr "Druge nastavitve" #: lib/Trean.php:266 msgid "Partial Content" msgstr "Delna vsebina" #: lib/Trean.php:276 msgid "Payment Required" msgstr "Zahtevano plačilo" #: templates/browse/javascript.inc:133 templates/browse/javascript.inc:168 #: templates/add/add.inc:5 msgid "Please enter a name for the new category:" msgstr "Prosim vnesite ime od nove kategorije:" #: templates/browse/javascript.inc:25 msgid "Please enter the name of the new category:" msgstr "Prosim vnesite ime od nove kategorije:" #: templates/browse/javascript.inc:39 msgid "Please modify the name accordingly" msgstr "Prosim popravite ime" #: templates/browse/javascript.inc:97 templates/browse/javascript.inc:112 #: templates/browse/javascript.inc:152 templates/browse/javascript.inc:187 msgid "Please select an item first" msgstr "Najprej izberite povezavo" #: lib/Trean.php:286 msgid "Precondition Failed" msgstr "Predpogoj neizpolnjen" #: lib/Trean.php:281 msgid "Proxy Authentication Required" msgstr "Zahtevna je avtentikacija pri posredniku" #: templates/edit/bookmark.inc:28 msgid "Rating" msgstr "Točkovanje" #: templates/reports/list.inc:19 templates/reports/rating.inc:5 msgid "Ratings" msgstr "Točkovanja" #: templates/edit/bookmark.inc:67 #, php-format msgid "Redirect to %s" msgstr "Preusmerjen na %s" #: templates/browse/bookmarks.inc:71 templates/browse/bookmarks.inc:175 msgid "Rename this Category" msgstr "Preimenuj to kategorijo" #: reports.php:18 msgid "Reports" msgstr "Poročila" #: lib/Trean.php:287 msgid "Request Entity Too Large" msgstr "Zahtevek predolg" #: lib/Trean.php:282 msgid "Request Time-out" msgstr "Čas čakanje se je iztekel" #: lib/Trean.php:288 msgid "Request-URI Too Large" msgstr "Zahtevan URI je predolg" #: lib/Trean.php:290 msgid "Requested range not satisfiable" msgstr "Zahtevana širina ni zadovoljujoča" #: templates/add/add.inc:64 msgid "Reset" msgstr "Ponastavi" #: lib/Trean.php:265 msgid "Reset Content" msgstr "Ponastavi vsebino" #: templates/edit/footer.inc:1 templates/add/add.inc:63 msgid "Save" msgstr "Shrani" #: search.php:14 templates/search/search.inc:47 lib/Block/tree_menu.php:33 msgid "Search" msgstr "Najdi" #: templates/search/search.inc:6 msgid "Search Bookmarks" msgstr "Najdi v zaznamkih" #: templates/search/results_none.inc:2 msgid "Search Results" msgstr "Rezultati iskanja" #: search.php:65 #, php-format msgid "Search Results (%s)" msgstr "Rezultati iskanja (%s)" #: lib/Trean.php:270 msgid "See Other" msgstr "Preglej ostale" #: templates/search/results_header.inc:12 templates/browse/bookmarks.inc:30 msgid "Select All" msgstr "Najdi vse" #: templates/browse/bookmarks.inc:33 msgid "Select All Bookmarks" msgstr "Najdi v vseh zaznamkih" #: templates/browse/bookmarks.inc:32 msgid "Select All Categories" msgstr "Izberi vse kategorije" #: templates/search/results_header.inc:13 templates/browse/bookmarks.inc:31 msgid "Select None" msgstr "Ne izberi nobene" #: templates/search/results_header.inc:11 #, php-format msgid "Select: %s, %s" msgstr "Izberi: %s, %s" #: templates/browse/bookmarks.inc:29 #, php-format msgid "Select: %s, %s, %s, %s" msgstr "Izberi: %s, %s, %s, %s" #: lib/Trean.php:295 msgid "Service Unavailable" msgstr "Servis nedostopen" #: templates/browse/bookmarks.inc:74 templates/browse/bookmarks.inc:182 msgid "Set Permissions" msgstr "Nastavi previce" #: config/prefs.php.dist:47 msgid "Should your list of bookmark categories be open when you log in?" msgstr "Odprem spisek proljubljenih pri prijavi?" #: lib/Trean.php:259 msgid "Switching Protocols" msgstr "Zamenjava protokolov" #: lib/Block/bookmarks.php:51 msgid "Template" msgstr "Šablona" #: config/prefs.php.dist:35 msgid "Template to use when displaying bookmarks:" msgstr "Šablono, ki jo bomo uporabili pri prikazu priljubljenih:" #: lib/Trean.php:273 msgid "Temporary Redirect" msgstr "Začasno preusmerjen" #: templates/browse/bookmarks.inc:186 msgid "There are no bookmarks in this category" msgstr "Ni priljubljenih v tej kategoriji" #: edit.php:224 #, php-format msgid "There was a problem copying the bookmark: %s" msgstr "Prišlo je do napake pri podvajanju povezave: %s" #: edit.php:36 edit.php:111 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Prišlo je do napake pri brisanju povezave: %s" #: edit.php:125 #, php-format msgid "There was a problem deleting the category: %s" msgstr "Prišlo je do napake pri brisanju povezave: %s" #: edit.php:168 #, php-format msgid "There was a problem moving the bookmark: %s" msgstr "Prišlo je do napake pri premikanju povezave: %s" #: edit.php:182 #, php-format msgid "There was a problem moving the category: %s" msgstr "Prišlo je do napake pri premiku kategorije: %s" #: add.php:64 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Prišlo je do napake pri dodajanju povezave: %s" #: edit.php:152 edit.php:208 add.php:43 add.php:100 #, php-format msgid "There was an error adding the category: %s" msgstr "Prišlo je do napake pri dodajanju kategorije: %s" #: edit.php:65 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Prišlo je do napake pri shranjevanju povezave: %s" #: edit.php:78 #, php-format msgid "There was an error saving the category: %s" msgstr "Prišlo je do napake pri shranjevanju kategorije: %s" #: templates/search/search.inc:16 templates/edit/bookmark.inc:13 #: templates/add/add.inc:41 msgid "Title" msgstr "Naslov" #: config/prefs.php.dist:33 msgid "Title Only" msgstr "Samo naslov" #: config/prefs.php.dist:32 msgid "Title and Description" msgstr "Naslov in Opis" #: config/prefs.php.dist:31 msgid "Title, URL, and Description" msgstr "Naslov, URL in opis" #: templates/add/add.inc:73 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Da lahko hitro doda zaznamke iz svojega brskalnika:" #: lib/Block/bookmarks.php:49 msgid "Top 10 Highest Rated" msgstr "10 najbolj točkovanih" #: lib/Block/bookmarks.php:50 msgid "Top 10 Most Clicked" msgstr "10 najbolj klikanih" #: templates/reports/http-status.inc:126 msgid "Total" msgstr "Skupaj" #: config/prefs.php.dist:34 msgid "Tree View" msgstr "Drevesni pregled" #: templates/search/search.inc:11 templates/edit/bookmark.inc:23 #: templates/add/add.inc:36 msgid "URL" msgstr "URL" #: lib/Trean.php:275 msgid "Unauthorized" msgstr "Neavtorizian" #: templates/reports/http-status.inc:123 #, fuzzy, php-format msgid "Unknown (%s)" msgstr "Nezanan (%d)" #: lib/Trean.php:289 msgid "Unsupported Media Type" msgstr "Nepodprt Media Type" #: perms.php:234 #, php-format msgid "Updated %s." msgstr "Ažuriran %s." #: lib/Trean.php:272 msgid "Use Proxy" msgstr "Uporabi posrednika" #: templates/reports/list.inc:1 msgid "View Report" msgstr "Preglej poročilo" #: templates/add/add.inc:78 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Med brskanjem, bo lahko dodal zaznamke s klikom na povezavo \"Dodaj k " "zaznamkom\"." #: templates/search/search.inc:40 msgid "Whole Field" msgstr "Celotno polje" #: templates/browse/javascript.inc:25 msgid "You are creating a category folder." msgstr "Ustvarja kategorijsko mapo" #: data.php:61 data.php:128 add.php:21 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Nimate pravice tvorjenje več kot %d povezav." #: data.php:52 data.php:103 add.php:84 #, php-format msgid "You are not allowed to create more than %d categories." msgstr "Nimate pravice tvorjenja več kot %d kategorij." #: templates/browse/javascript.inc:39 msgid "You are renaming the current category folder." msgstr "Preimenuje trenutno kategorijsko mapo." #: browse.php:26 msgid "You do not have permission to view this category." msgstr "Nimate pravice ogleda te kategorije" #: templates/browse/javascript.inc:143 templates/browse/javascript.inc:178 #: templates/add/add.inc:13 msgid "You must select a target category first" msgstr "Najprej morete izbrati cljano kategoijo" #: lib/Trean.php:230 msgid "_Browse" msgstr "Brskaj" #: lib/Trean.php:241 msgid "_Import/Export" msgstr "Uvoz/Izvoz" #: lib/Trean.php:234 msgid "_New Bookmark" msgstr "Nova povezava" #: lib/Trean.php:237 msgid "_Reports" msgstr "Poročila" #: lib/Trean.php:236 msgid "_Search" msgstr "Najdi" #: templates/bookmark/1line.inc:33 templates/bookmark/standard.inc:33 #: templates/bookmark/2line.inc:37 templates/search/results.inc:57 #: templates/block/1line.inc:28 templates/block/standard.inc:29 #: templates/block/2line.inc:31 msgid "click" msgstr "klik" #: templates/bookmark/1line.inc:33 templates/bookmark/standard.inc:33 #: templates/bookmark/2line.inc:37 templates/search/results.inc:57 #: templates/block/1line.inc:28 templates/block/standard.inc:29 #: templates/block/2line.inc:31 msgid "clicks" msgstr "klikov" trean-1.0.3/locale/sv/LC_MESSAGES/trean.mo0000664000175000017500000023661512171337643016076 0ustar janjanx#G__$_)__&_ `%+`$Q` v`)``` ` ` ` `` aa6a LaRXaaa aaabbb&b>bEbTb]blbbbbblbE@cXcVc66d mdVzddld [e eepe we ee eeee e eeeeff f %fFfYfsf wf f f f fff ffffNg-Uggg gg g g g g gghh h#-hlQh%hhhi)i'Ai)iiiiii iiijj2j:j%Pj7vj8j<j%$kJk_k ck)mk k'k,k*k%"lHl!Zl|lll lll l l lmm'mGm Vm amkm zm mmmmm mmmm mn n !n@-n nnynnn nnnoo%o5oEJo!odopp6p?p[p vp1p*ppp q q q*q:q IqQWqq q qq q qqq rrr"r *r 8rErZr nr xr r rr=rr's 9sFsWs`sispss s.s*s3sV twtu(:u5cu0uXu#v*vvvvw ww ,w:w KwXwhwzwwwwww xx"xBxGxPxaxjx ox}xxx x x,x4x0y KyWy ^yjyy yyyyy*yBz`z uz zz zz zzz"z {{ /{ 9{E{M{d{t{{/{{C{-| M|Y|/k|<|D|}%}+} 3}@}V} [} e}s}}}}} } }}"}{ ~O~'~(=Y`o   (D Ygl q ~  Āр   )28 =G|VӁ  %6G Wa ̂ .AGL al ǃ ̃ ׃?B G T"_  „DŽք ܄$2B K V ` kxDžڅ jdu Bχ4G]o). CQf ƉЉ !'7@ FP er NJΊ׊ۊ  0B Zev ً ) 4 ?L^n wG ތ0>\ae lx{ h 1Jb~$  $>QXq Ώӏ܏  /<ASdu} * AN ak|| - :HQa y  Ғݒ8 7BRf|E+ 6EMAՔ ! 0: JWgm:$*9@(R {\6GJ `kq  Ɨ Зۗ  ) 0 =I do  ՘ۘ 5A\qv }*"(P1 ǚ Қޚ B Nd~ ț ܛ $*0 5 @ J V dq 4G֜-L ao *֝ ݝ6 ,<QW_w%מ O pğ̟ܟ  ! +6 ;ERU,ՠ(7K S ] ht5ši eآ %ETh q#} ã֣ߣJ.:-i?;פ[/o1 ѥ-ߥ@ NS mOzʦ%ݦ4 < JWow ԧ  8LQip y ƨdCH&8*;:(v4Ԫ "* 9CJSgn ~ʫ ٫  ( E(S|*>>. A KU4dcϭ53ihf%T!z83-)2Weu 'ұ1A,,n--ɲ++#3O%**Գ?)?Ti)KI4*~1*۵(/7 ? MY1n:Vdʷ߷ '-AR jwE{ܸ  " (5PWn u ̹ ڹ; @2J} 2;- DQ Zdj  ɻ׻   + 6CKSd} /ż 3PFe n (!4V[ ` ku D;#"6"Y%|%5ȿ6%5%[-.#,,/-\5V1I*cus xE()&%F(lv 0:syP+:Rr\Q>Xs-   ' .;DL S^cipx " Y e k'! )#% I/T  ,t9    ,:@ Q[ lz qFJcV3 9]Fh *7 GTi ~     +K^ w2AVMl/' # 2 < G R ]hns!(Ox#""6TX ] jv(22PA( $9*@0k00$7K] z,. 7A'P x # I bm  ->C"\  )6Tr*{, ';OUa     (29 BO_p  O"7?w  )2>9Wx$-C) [J-Iw|  +>W&t"!'6IMV e?s:: )6 =Ia r5EV h t      &1H_v+? -7.JAyG   )7>M^q !%W89>$x   / 4>S h t   'GNUdt  {I ` jt  $ =GL\ {   '/ BNh p~D  .: Y gu z &7   !/>NU hrz[s *B&EWi!  6E[s  #6= BO ft  )7L_q "!'&I'p OV2o>  )&Ppw#'#CK R \ i s #'-5;N T^ fp    7 -K!Z| ;!1GbwK!,ILfF4 E Sa r } ! 7#: =Kkr-_^~  % 5BW l x       %  : E  c n         "  ( 4 P *p  ! ` 4 O  h  s      <    > D Z b k  ~              )  3 ? D =S P   *A _ k x) 8'E J'T|)" -oC%5Oipu  Q.HW j t   $GDd,?Zq  *0G ]g]{,+@2As]');e$y@ Ug+|   ";AF Vdkt   !' 0:CW#^!tP qx=<>%[       ' 9DV fq      ),V,[PI#< EQ.`X2 F b^ s 5!S!n!G!>!. ":;"v""###/#2 $E<$($*$)$'%&(%-O%#}%3%2%A&,J&cw&&X&NJ'-'2''(7(=(F( V(a(2{((9((a))))*!* (*5*F*\*d*w** **Q*++ 4+>+P+a+q+ y++++ + +++,#,8,J,Y, w,;, ,8, --'- 8-F-8\-C--- . . /.:.Q. h. t. ... .. ...../ //9/ A/L/[/p/2// /%/08+0 d0lp0 0"0 11 1 1)1>1D1K1R1d1k1 r111811,122+H2-t24282(3.932h343(323+,4'X4?4F425:5(K5vt5t5`6Bp6+626378F76777j7 B8L8^8f[9199 :$:'A:"i:&:d:[;&t;';;>;<<-< 6<B<I<P< U< c<m<v<{<<< << <<<<<<<== ==$=4=0<= m=z= =qoQ> =D .Z1|>on;lPEw9/Z5%9vCqv_ `BO~mb_DQpI26<i 8JC>7RGk4tim;kQ%EY9 } +?xJfWp`oyA^4$KrSXIjz;<`:N#MM!$Q|zARCX/OOtFh"@#eUb)5;l~5F8H<?sh[|Zq>x%1uhtXV)VgY=tAoAG g2]`,sln 8 K$MJ/~3FO[_BH-T_E: GWRLM L]^G #,S^ (vd3Yv2(Igcril(W[7>  3iTS-9B&'{%=}y"vP@  bw? N.seT.up`4f'2KZlsqnT(<|[YWcUBG * ]Njj RVk*&Aahc01 PY 61h',#IT4,#Czog36d\6{c-p_ex-s7 J"H:u6I\/0"/!'UD^J8mnj+X7"S\L wf+gwUb}dE(@-3y;C= 7FZ&Eek:LzaPnqu\\m)S{!aO 0Q{a?f%V5m&K&td.w D]<!K5]i 8xuae+y' c+U*x0=BV@Nr?40:MHNP2,9R}rrdL)b*Xj*^k$$[WfF.H~)@D1p! at "%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d Folders and %d Bookmarks imported.%d days until your password expires.%d minutes%d person likes this%d persons like this%d to %d of %d%d-day forecast%s - Notice%s Bookmarks%s Categories%s Clicks%s Configuration%s Response Codes%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s is ready to perform the tasks below. Select each operation to run at this time.%s's Bookmarks'%s' was not renamed: %s., gusting , gusting %s %s, variable from %s to %s1 Click1 Line12 Hour Format1xx Response Codes (%s)2 Line24 Hour Format24 hours24-hour format2xx Response Codes (%s)3 Line3xx Response Codes (%s)4xx Response Codes (%s)5xx Response Codes (%s) can interact with your Facebook account, but you must login to Facebook manually each time. cannot read information about your Facebook friends. cannot read your stream messages and various other Facebook data items. cannot set your status messages or publish other content to Facebook. can interact with your Twitter accountA charactersA device wipe has been requested. Device will be wiped on next syncronization attempt.A newer version (%s) exists.A remote wipe for device id %s has been initiated. The device will be wiped during the next synchronisation.AM CloudsAM DrizzleAM FogAM Light RainAM Light SnowAM RainAM ShowersAM SnowAM Snow ShowersAM SunAM T-ShowersAM T-StormsAM/PMAcceptedAccount InformationAccount PasswordActionsActiveSyncActiveSync Device AdministrationActiveSync DevicesActiveSync not activated.AddAdd BookmarkAdd ContentAdd Here:Add MembersAdd a groupAdd a new bookmarkAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAll BookmarksAll policy keys successfully reset.All state removed for your ActiveSync devices. They will resynchronize next time they connect to the server.All synchronization sessions deleted.Alternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAn error occured listing categories: %sAn error occurred counting categories: %sAn unknown error has occured.AndAnswerAny Part of fieldApplicationApplication Context: Application ListApplication is ready.Application is up-to-date.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to delete the selected bookmarks?Are you sure you want to delete the selected categories?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscii ArtAt least one database schema is outdated.AttachmentAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated to:Authorize Access to Friends Data:Authorize PublishAuthorize Read:Authorize an infinite session:AutomaticAvailable fields:AzurBOFH ExcusesBad GatewayBad RequestBaltic (ISO-8859-13)BarbieBase graphics directory "%s" not found.Block SettingsBlock TypeBlue MoonBlue and WhiteBookmark names must be non-emptyBookmarksBothBrownBrowseBrowser:Burnt OrangeCache init was not completed.CalendarCalmCamouflageCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.CategoriesCategories and LabelsCategoryCategory does not exist.Category names must be non-emptyCategory to import into:Celtic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange the number of columns to display in browse and search results.Change your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:ClearClear QueryClear out user: %sClear userClear user dataClearing EarlyClearing LateClick on one of your selected address books and then select all fields to search.Click to ContinueClient AnchorClose WindowCloudsClouds EarlyClouds LateCloudyCollapseColor PickerCombineComicsCommandCommand ShellComments: %dCompletely collapsedCompletely expandedComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm PasswordConflictContinueCookieCopied bookmark: CopyCornflowerCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not find authorization for to interact with your Twitter accountCould not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the backup configuration file %s.Could not save the configuration file %s. Use one of the options below to save the code.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCreatedCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCurrent condition: Cyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DB schema is out of date.DB schema is ready.DDDNS Failure or Other Error (%s)DataDataTreeDataTree BrowserDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.Define one or more categories for your bookmarksDefinitionsDeleteDelete "%s"Delete All SyncML DataDelete BookmarkDelete GroupDelete current category?Delete this CategoryDeleted bookmark: Deleted category: Deleted configuration upgrade script "%s".Deleted synchronization session for device "%s" and database "%s".Describe the ProblemDescriptionDevelopmentDeviceDevice IDDevice ManagementDevice id:Device is wipedDevice successfully removed.Device wipe successfully canceled.Dew PointDew Point for last hour: Dew pointDew point: DisableDisplay 24-hour times?Display OptionsDisplay PreferencesDisplay detailed forecastDisplay edit buttons when displaying Bookmarks?Display forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload CategoryDownload generated configuration as PHP script.Drag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrizzleDrugsDynamicE charactersEU VAT identificationEditEdit "%s"Edit BookmarkEdit PermissionsEdit Permissions for %sEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnter a name for the new category:Enter a security question which you will be asked if you need to reset your password, e.g. 'what is the name of your pet?':Error connecting to Twitter: %s Details have been logged for the administrator.Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExpectation FailedExport BookmarksExtra LargeFTP upload of configurationFacebook IntegrationFade to GreenFairFeedFeed AddressFeels LikeFeels like: Few ShowersFew Snow ShowersFields to searchFile ManagerFile to import:FilterFiltersFirst HalfFirst QuarterFirst level shownFogFog EarlyFog LateFoggyFoodForbiddenForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFoundFreezing DrizzleFriend Requests:Friends enabledFrom the From the %s (%s °) at %s %sFrom the %s at %s %sFull DescriptionFull MoonFull NameGateway Time-outGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoneGoogle SearchGreek (ISO-8859-7)GreenGreyGroup AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTTP StatusHTTP Version not supportedHazeHeavy RainHeavy T-StormHebrew (ISO-8859-8-I)HeightHeight of stream content (width automatically adjusts to block)HelpHelp _TopicsHemisphereHere is the beginning of the file:Hi-ContrastHide Advanced PreferencesHide ResultsHide SidebarHighHome DirectoryHordeHorde WebsiteHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumidity: HumoristsIcons OnlyIcons for %sIcons with textIdeasIdentity's name:ImportImport BookmarksImport, Step %dImported field: %sImported fields:In reply to:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Include SubcategoriesIncorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInfinite sessions enabled.InformationInformation no longer available.Inherited MembersInsert an email address to which you can receive the new password:Insert the required answer to the security question:Internal Server ErrorInternet ExplorerInternet Explorer users will need to export their current Favorites by going to the "File" menu and selecting "Import and Export".Invalid VAT identification number format.Invalid action %sInvalid application.Invalid hash.Invalid license key.Invalid location provided.Invalid parent permission.Invalid partner id.Invalid product code.InventoryIsolated T-StormsJapanese (ISO-2022-JP)Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLavenderLawLength RequiredLight BlueLight DrizzleLight RainLight Rain EarlyLight Rain LateLight Rain ShowerLight Rain with ThunderLight SnowLight Snow EarlyLight Snow LateLight Snow ShowerLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLoading...Local time: Local time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogin failed because your username or password was entered incorrectly.Login failed.Login to Facebook and authorize Login to Twitter and authorize the applicationLoveLowLoyolaLoyola BlueMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.MatchMatching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Number of BookmarksMaximum Number of CategoriesMaximum Number of Portal BlocksMaximum number of entries to displayMedicineMediumMembersMentionsMenu ListMenu mode:Metar WeatherMetarDB is not connected.Method Not AllowedMetricMin temp last 24 hours: Min temp last 6 hours: MiscellaneousMissing configuration.MistMobileMobile (Smartphone)ModeModerateMondayMoon PhasesMore ActionsMostly ClearMostly CloudyMostly Cloudy and WindyMostly SunnyMoveMoved PermanentlyMoved bookmark: Moved category: MozillaMozilla/Firefox users will need to export their current Bookmarks by going into "Bookmark Manager" and selecting "Export" from the "Tools" menu.Multiple ChoicesMy AccountMy Account InformationMy BookmarksMy Facebook StreamMy PortalMy Portal LayoutN/ANO, I Do NOT AgreeNOTE: WIPING A DEVICE MAY RESET IT TO FACTORY DEFAULTS. PLEASE MAKE SURE YOU REALLY WANT TO DO THIS BEFORE REQUESTING A WIPENameNeXTNeverNew BookmarkNew CategoryNew Messages:New MoonNew SubcategoryNew Username (optional)New passwordNew passwords don't match.NewsNextNext 4 PhasesNightNo Bookmarks foundNo ContentNo SoundNo available configuration data to show differences for.No bookmarks to displayNo change.No icons found.No location is set.No location provided.No offensive fortunesNo pending signups.No security question has been set. Please contact your administrator.No stable version exists yet.No temporary directory available for cache.No username specified.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.Non-Authoritative InformationNoneNordic (ISO-8859-10)Northern HemisphereNot AcceptableNot FoundNot ImplementedNot ModifiedNot ProvisionedNotesNothing to browse, go back.Number of ClicksNumber of articles to displayNumber of columns to display in browse and search results:Number of seconds to wait to refreshOKObject CreatorOffense filterOfficeOld Horde WebsiteOld and new passwords must be different.Old passwordOld password is not correct.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOrOr enter a user name:OrganizingOtherOther InformationOther OptionsOther charactersOwnerOwner:PHPPHP CodePHP ShellPM CloudsPM DrizzlePM FogPM Light RainPM Light SnowPM RainPM ShowersPM SnowPM Snow ShowersPM SunPM T-ShowersPM T-StormsPOSIX extension is missingP_HP ShellPartial ContentPartly CloudyPasswordPassword changed successfully.Password:Passwords must match.PastePayment RequiredPending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a password.Please enter a username.Please enter the name of the new category:Please modify the name accordinglyPlease provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.Please select a bookmark firstPlease select a category firstPokes:Policy KeyPolicy Key:PoliticsPosted %sPosted %s via %sPostnukePrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePrecipitation
chancePrecondition FailedPressurePressure at sea level: Pressure: PrincipalProblem DescriptionProvisionedProxy Authentication RequiredPublish enabled.Purple HordeQueryQuotaRainRain EarlyRain LateRain ShowerRain and SnowRain to SnowRandom FortuneRatingRatingsReadRead enabledReally delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Redirect to %sRefresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:Registered User DevicesRemarksRemote Host:Remote ServersRemote URL (http://www.example.com/horde):RemoveRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sRename this CategoryReplyReportsReprovision All DevicesRequest Entity Too LargeRequest Time-outRequest-URI Too LargeRequested range not satisfiableRequested service could not be found.ResetReset ContentReset PasswordReset all device state. This will cause your devices to resyncronize all items.Reset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetweetRetweeted by %sRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".Scattered ShowersScattered T-StormsScienceScopeSea_rchSearchSearch BookmarksSearch ResultsSearch Results (%s)Search:See OtherSelect AllSelect NoneSelect a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the characters you need from the boxes below. You can then copy and paste them from the text area.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Select: %s, %sSend Problem ReportSensor: Server TimeServer data wrong or not available.Service UnavailableSession AdminSession Timestamp:SessionsSet PermissionsSet preferences to allow you to reset your password if you ever forget it.Set up integration with your Facebook account.Set up integration with your Twitter account.Set up remote servers that you want to access from your portal.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Several locations possible with the parameter: Several locations possible with the parameter: %sShort SummaryShould access keys be defined for most links?Should your list of bookmark categories be open when you log in?ShowShow Advanced PreferencesShow SidebarShow differences between currently saved and the newly generated configuration.Show extra detail?Show last login time when logging in?Show notificationsShow the %s Menu on the left?ShowersShowers EarlyShowers LateShowers in the VicinitySimplexSkip Login TasksSmallSnowSnow EarlySnow LateSnow ShowerSnow ShowersSnow Showers EarlySnow Showers LateSnow depth: Snow equivalent in water: Songs & PoemsSouth European (ISO-8859-3)Southern HemisphereSpamSpecial Character InputSportsStandardStar TrekStart TimeState ManagementStatusStatus unable to be set.StreamSubdirectory "%s" not found.Submitted request to add "%s" to the system. You cannot log in until your request has been approved.Succesfully connected your Facebook account or updated permissions.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully saved the backup configuration file %s.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunnySunriseSunrise/SunsetSunrise: SunsetSunset: Switching ProtocolsSyncMLSyndicated FeedT-ShowersT-Showers EarlyT-Showers LateT-StormT-Storm and WindyT-StormsT-Storms EarlyT-Storms LateTag CloudTango BlueTasksTealTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)Temperature: Temperature
(%sHi%s/%sLo%s) °%sTemplateTemplate to use when displaying bookmarks:Temporarily unable to connect with Facebook, Please try again.Temporarily unable to contact Twitter. Please try again later.Temporary RedirectText AreaText OnlyThai (TIS-620)The Remote Wipe for device id %s has been cancelled.The alarm has been deleted.The alarm has been saved.The configuration for %s cannot be updated automatically. Please update the configuration manually.The default e-mail address to use with this identity:The lock has been removed.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The server "%s" has been deleted.The server "%s" has been saved.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The state for device id %s has been reset. It will resynchronize next time it connects to the server.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.Themes directory "%s" not found.There are no bookmarks in this categoryThere was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem copying the bookmark: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the category: %sThere was a problem moving the bookmark: %sThere was a problem moving the category: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error adding the category: %sThere was an error communicating with the ActiveSync server: %sThere was an error contacting Twitter: %sThere was an error in the configuration form. Perhaps you left out a required field.There was an error making the request: %sThere was an error obtaining your Facebook session. Please try again later.There was an error removing global data for %s. Details have been logged.There was an error saving the bookmark: %sThere was an error with the requested permissionsThis VAT identification number is invalid.This VAT identification number is valid.ThunderTicketsTime TrackingTime formatTimestamp or unknownTimestamps of successful synchronization sessionsTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTop 10 Highest RatedTop 10 Most ClickedTotalTraditionalTranslationsTurkish (ISO-8859-9)TweetTwitter IntegrationTwitter TimelineTwitter Timeline for %sU.V. index: URLUnable to contact Twitter. Please try again later. Error returned: %sUnable to delete "%s": %s.Unable to set like.UnauthorizedUndo ChangesUnfiledUnicode (UTF-8)UnitsUnknown (%s)Unknown location provided.UnlockUnsupported Media TypeUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated %s.Updated schema for %s.UploadUploaded all application configuration files to the server.Use ProxyUse if name/password is different for IMSP server.UserUser AdministrationUser Agent:User NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsername:UsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVariableVersion CheckVersion ControlVery HighVietnamese (VISCII)View ReportView an external web pageVisibilityVisibility: WarningWeatherWeather ForecastWeather data provided byWeb SiteWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?What's on your mind?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Whole FieldWidth of the %s menu on the left:WikiWindWind EarlyWind LateWind speed in knotsWind:Wind: WipeWipe is pendingWisdomWorkX-RefYYYes, I AgreeYou and %d other person likes thisYou and %d other people like thisYou are creating a category folder.You are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to create more than %d categories.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are renaming the current category folder.You can also check your Facebook settings in your %s.You did not agree to the Terms of Service agreement, so you were not allowed to login.You do not have permission to view this category.You have been logged out.You have denied the requested permissions.You have not properly connected your Facebook account with Horde. You should check your Facebook settings in your %s.You have not properly connected your Twitter account with Horde. You should check your Twitter settings in your %s.You like thisYou must describe the problem before you can send the problem report.You must select an server to be deleted.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has been locked.Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your remote servers:Your session has expired. Please login again.Zippy[Problem Report][Unknown]_Add_Alarms_Browse_CLI_Configuration_DataTree_Groups_Home_Import/Export_Locks_Permissions_Reports_Search_Usersattachmentcalmclickclicksfallingfrom the %s (%s) at %s %sgustinginlinepreferencesrisingshow differencessteadytype the password twice to confirmunifiedweatherweather.comProject-Id-Version: Trean 1.0-cvs Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2005-06-14 22:08+0200 PO-Revision-Date: 2005-06-16 08:48+0100 Last-Translator: Andreas Dahlén Language-Team: Swedish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit vid "%s" lades till i gruppsystemet."%s" lades till i behörighetssystemet."%s" skapades inte: %s.%.2fMB använt av %.2fMB (%2f%%)%d %s och %s%d mappar och %d bokmärken importerades.Ditt lösenord går ut om %d dagar.%d minuter%d person gillar detta%d personer gillar detta%d till %d av %d%d-dygnsprognos%s - För kännedom%s bokmärken%s kategorier%s klickKonfiguration för %s%s svar%s uppgifter - bekräftelseLicensavtal för %s%s vid %s %s%s kommer att utföra de underhållsaktiviteterna som kryssats i nedan. Kryssa i de aktiviteter som du vill utföra.%s bokmärkenNamnet byttes inte på '%s': %s., byar, byar %s %s, variabel mellan %s och %s1 klick1 rad12-timmarsformat1xx svar (%s)2 rad24-timmarsformat24 timmar24-timmarsformat2xx svar (%s)3 rad3xx svar (%s)4xx svar (%s)5xx svar (%s) can kopplas till ditt Facebook-konto, men du måste logga in till Facebook manuellt varje gång. kan inte hämta information om dina Facebook-vänner. kan inte hämta dina meddelanden och andra Facebook-data kan inte sätta din status eller posta annat innehåll till Facebook. kan kopplas till ditt Twitter-kontoAntal teckenEn fjärradering har begärts. Enheten kommer att raderas vid nästa synkroniseringsförsök.En nyare version (%s) finns.En fjärradering för enhetsid %s har påbörjats. Enheten kommer att raderas vid nästa synkronisering.Mulet på FMDuggregn på FMDimma på FMLättare regn på FMLättare snö på FMRegn på FMSkurar på FMSnö på FMSnöbyar på FMSoligt på FMÅskbyar på FMÅskskurar på FMFM/EMAccepteradKontoinformationKontolösenordÅtgärderActiveSyncActiveSync enhetsadministrationActiveSync-enheterActiveSync ej aktiverad.Lägg tillLägg till bokärkeLägg till innehållLägg till här:Lägg till medlemmarLägg till en gruppLägg till nytt bokmärkeLägg till en ny användare:Lägg till nytt alarmLägg till parLägg till bokärkenLägg till användare"%s" lades till i systemet, men kunde inte lägga till extra information: %s."%s" lades till i systemet. Du kan logga in nu.Upplägg av användare är inaktiverat.AdressAdressbokAdministrationAlarmslutAlarmmetodAlarmstartAlarmtext:AlarmtitelAlarmAllaAlla authentiserade användareAlla bokmärkenAlla policynycklar återställda.Alla enhettillstånd har raderats för dina ActiveSync-enheter. De kommer att omsynkroniseras nästa gång de kopplar upp sig mot servern.Alla synkroniseringssessioner borttagna.Alternativ IMSP-inloggningAlternativt lösenord för IMSPAlternativt användarnamn för IMSPAlternativ e-post adressFel vid listning av kategorier: %sFel vid räkning av kategorier: %sEtt okänt fel har inträffatochSvarDel av fältApplikationApplikationskontextApplikationslistaApplikationen är klar.Applikationen är den senaste.GodkännArabiska (Windows-1256)Är det säkert att du vill radera '%s'?Är du säker att du vill radera valda bokmärken?Är du säker att du vill radera valda kategorier?Är det säkert att du vill ta bort anmälningbegäran för "%s"?Är det säkert att du vill radera "%s"?Armenska (ARMSCII-8)KonstAsciikonstMinst ett databasschema är gammalt.BilagaFörsökte radera en grupp som inte finns.Försökte radera en behörighet som inte finns.Försökte ändra en behörighet som inte finns.Försök att ändra en utdelning som inte finns.Authentiserad till:Tillåt tillgång till vänner-data:Tillåt publiceringTillåt läsning:Tillåt en oändlig session:AutomatiskTillgängliga fält:AzurBOFH ursäkterFelaktig gatewayFelaktig requestBaltisk (ISO-8859-13)BarbieGrundkatalog "%s" för grafik hittades inte.BlockinställningarBlocktypBlue MoonBlue and WhiteNamn på bokmärken får inte vara tomtBokmärkenBådaBrunListaWebläsare:Burnt OrangeInitiering av cache slutfördes ej.KalenderLugntCamouflageAvbrytAvbryt problemrapportAvbryt raderingKan inte återställa lösenord automatiskt, kontakta din administratör.KategorierKategorier och etiketterKategoriKategori existerar inte.Kategorinamn måste vara angivetKategori att importera till:Celtic (ISO-8859-14)Centraleuropeisk (ISO-8859-2)ÄndraÄndra platsÄndra ditt lösenordÄndra antal kolumner som visas i listningen och sökresultat.Ändra din personliga information.Ändring av lösenord stöds inte med nuvarande konfiguration. Kontakta din administratör.KontrolleraLeta efter nyare versionerKontrollerarFörenklad kinesiska (GB2312)Traditionell kinesiska (Big5)Välj %sVälj hur datum skall visas (kort format):Välj hur datum skall visas (långt format):Välj hur tid skall visas:RensaRensa frågaRensa användare: %sRensa användareRensa användardataTidigt uppklarnandeSent uppklarnandeKlicka på en av dina adressböcker och ange sedan vilka fält som skall genomsökas.Klicka för att fortsättaKlientankareStäng fönsterMolnTidiga molnSena molnMuletSlå ihopFärgväljareKombineraSerierKommandoKommandoskalKommentarer: %dHelt förminskadHelt expanderadDatorerFörhållandeFörhållandenKonfigurationKonfigurationsskillnaderKonfiguration för synkronisering med handdatorer, smarta telefoner och OutlookKonfiguration behöver uppdateras.Uppdateringsskript för konfiguration är tillgängligaKonfigurera %sBekräfta lösenordKonfliktFortsättKakaKopierade bokmärken: KopieraCornflowerKan inte kontakta server "%s" via FTP: %sKunde inte kontakta servern. Försök igen senare.Kunde inte ta bort upgraderingsskript "%s" för konfiguration.Kunde inte hitta autorisering för för koppling med ditt Twitter-kontoKunde inte återställa lösenordet för den begärda användaren. Några eller alla detaljer är inte rätt. Försök igen eller kontakta din administratör om du behöver mer hjälp.Kunde inte återskapa konfiguration.Kunde inte spara en backup-konfiguration: %s.Kunde inte spara uppgraderingsscript för konfiguration till: "%s".Kunde inte spara backup-konfiguration %s.Kunde inte spara konfigurationfilen %s. Välj något alternativ nedan för att spara koden.Kunde inte spara konfigurationsfilen %s. Du kan antingen välja något alternativ för att spara koden tillbaka på %s eller manuellt kopiera koden nedan till %s.Kunde inta skriva konfiguration för "%s": %sLandSkapaSkapa ny identitetSkapadAktuella 4 faserAktuella alarmAktuella låsAktuella sessionerAktuell tidAktuellt väderAktuella förhållandenAktuella förhållanden: Krylliska (KOI8-R)Krylliska (Windows-1251)Krylliska/Ukrainska (KOI8-U)Databastillgång är inte konfigureradDatabasschema behöver uppdateras.Databasschema är klart.DDDNS-fel eller annat fel (%s)DataDataTreeDataTree-bläddrareDatabasDatumDatum mottagetDatum: %s; tid: %sDagFörvaltFörvald färgFörvalt skalFörvald teckenuppsättning vid sändning av e-postmeddelanden:Förvald plats att använda för platsmedvetna funktioner.Definiera en eller flera kategorierer för dina bokmärkenDefinitionerRaderaRadera "%s"Ta bort all SyncML-dataRadera bokmärkeRadera gruppRadera aktuell kategori?Radera aktuell kategorinRaderade bokmärken: Raderad kategori: Tog bort uppgraderingsskript för konfiguration "%s".Tog bort synkroniseringssession för enheten "%s" och databasen "%s".Beskriv problemetBeskrivningUtvecklingEnhetEnhets-IDEnhetshanteringEnhets-ID:Enheten är raderadEnheten borttagen.Enhetsraderingen avbruten.DaggpunktDaggpunkt senaste timmen: DaggpunktDaggpunkt:InaktiveraVisa 24-timmarsklocka?VisningsinställningarVisningsinställningarVisa detaljerad prognosVisa ändraknapp vid visning av bokmärken:Visa prognos (TAF)Innehåller första raden fältnamn? Om ja, markera denna ruta:Har du inget konto? Anmäl dig.Hämta %sLadda ner kategoriHämta genererad konfiguration som PHP-skript.Dra länken 'Lägg till bokmärken' nedan till din 'Länkar' menyDra länken 'Lägg till bokmärken' nedan till din 'Personliga ikonrad'DuggregnDrogerDynamiskAntal teckenEU momsnummerÄndraRedigera "%s".Ändra bokmärkeÖndra behörighetÄndra behörigheter för %sRedigera inställningar förRedigera behörigheterRedigera behörigheter för "%s"UtbildningE-postadressSluttidAnge namn för den nya kategorin:Skriv en säkerhetsfråga som kommer att ställas till dig om du behöver återställa ditt lösenord, t.ex. 'Vad heter ditt husdjur?':Fel uppstod vid anslutning till Twitter: %s Detaljer har loggats för administratören.Fel uppstod vid borttagning av synkroniseringssessionen:Fel uppstod vid borttagning av synkroniseringsessionerna:Fel vid uppdatering av lösenord: %sEtniskHändelseinbjudningar:Var 15:e minutVarannan minutVar 30:e sekundVar 5:e minutVarje halvtimmaVarje timmeVarje minutExempelvärden:KörExpanderaVäntan misslyckadesExportera bokmärkenExtra stor:FTP-uppladdning av konfigurationFacebook-integrationFade to GreenKlartFlödeFlödesadressKänns somKänns som:Några skurarNågra snöbyarFält att söka iFilhanterareVälj fil som skall importeras:FilterFilterFörsta halvanFörsta kvartenFörsta nivå som visasDimmaTidig dimmaSen dimmaDimmigtMatFörbjudenPrognos (TAF)Prognosdygn (observera att prognosen innehåller både dag och natt; ett högt värde här kan resultera i ett brett block)Glömt ditt lösenord?FormulärLyckokakaTyp av lyckokakaLyckokakorLyckokakor 2ForumHittadeUnderkylt duggregnVänförfrågningar:Vänner aktivaFrån den Från den %s (%s °) kl %s %sFrån den %s kl %s %sFullständig beskrivningFullmåneNamnGateway timeoutGenerera konfiguration för %sGenererad kodHämta merAllmänna inställningarGåGödelBortaGooglesökningGrekiska (ISO-8859-7)GreenGreyGruppadministrationGruppnamnGruppen skapades inte: %s.GrupperGästbehörigheterHTTP-statusHTTP-version stöds inte.TorrdisKraftigt regnKraftigt åskväderHebreiska (ISO-8859-I)HöjdHöjd på flödesinnehåll (bredden justeras automatiskt till rutan)HjälpHjälprubrikerHalvklotHär är början av filen:Hi-ContrastGöm avancerade inställningarGöm resultatGöm sidomenyHögHemkatalogHordeHorde websidaHur många fält (kolumner) finns det?Hur många sekunder mellan vi letar efter nya artiklar?LuftfuktighetLuftfuktighet: HumoristerEnbart ikonerIkoner för %sIkoner med textIdéerIdentitetens namn:ImporteraImportera bokmärkenImportera, steg %dImporterat fält: %sImporterade fält:Som svar till:I listan nedan välj både ett importerat fält från källfilen till vänster och det motsvarande fältet tillgängligt i din adressbok till höger. Tryck sedan "Lägg till par" för att markera dem för import. När du är klar tryck "Nästa".Inkludera underkategorirOgiltigt användarnamn eller alternativ adress. Försök igen eller kontakta din administratör om du behöver mer hjälp.Individuella användareOändliga sessioner aktiverade.InformationInformation är inte längre tillgänglig.Ärvda medlemmarSkriv in en e-postadress som det nya lösenordet kan skickas till:Skriv in svaret på säkerhetsfrågan:Internt serverfelInternet ExplorerAnvändare av Internet Explorer måste exportera sina favoriter genom att gå till 'Arkiv' och välja 'Importera och Exportera'Felaktigt format på VAT-nummret.Felaktig åtgärd %sFelaktig applikation.Felaktig hash.Ogiltig licensnyckel.Felaktig plats angiven.Felaktig huvudbehörighet.Felaktigt partner-ID.Ogiltig produktkod.InventarieEnskilda åskväderJapanska (ISO-2022-JP)Alldeles nyss...Kernel NewbiesNyckelordBarnKolabKoreanska (EUC-KR)SpråkStorSista halvanSenaste lösenordsbyteSista kvartenSenaste synktidSenast uppdaterad:Senaste inloggning: %sSenaste inloggning: %s från %sSenaste inloggning: AldrigSenasteLavenderLagLängs krävsLight BlueLättare duggregnLättare regnTidigt lättare regnSent lättare regnLättare regnskurLättare regn med åskaLättare snöfallTidigt lättare snöfallSent lättare snöfallLättare snöbyGillaLimerickLinux CookieListtabellerListning av alarm misslyckades: %sListning av lås misslyckades: %sListning av sessioner misslyckades: %sListning av användare är avaktiverad.LitteraturLaddar...Lokal tid: Lokal tid: %s %sSpråk och tidPlatsLås användareLåsLogga inLogga utInloggning misslyckades p.g.a. att användarnamn eller lösenord var felaktigt.Inloggning misslyckades.Logga in på Facebook och tillåt Logga in på Twitter och tillåt applikationen KärlekLågLoyolaLoyoa BlueMMMagiskE-postE-postadministrationHantera dina kategorier och dess färger Hantera dina ActiveSync-enheterMatchaMatchande fält:Högsta temperatur senaste dygnet: Högsta temperatur senaste 6 timmarna: Maximalt antal bokmärkenMaximalt antal kategorierMaximalt antal portalblockMaximalt antal inlägg att visaMedicinMediumMedlemmarOmnämningarMenylistaMenyutseende:METAR-väderMetarDB är inte ansluten.Metod stöds inteMetriskLägsta temperatur senaste dygnet: Lägsta temperatur senaste 6 timmarna: DiverseKonfiguration saknas.FuktdisMobilMobil (Smartphone)LägeMåttligtMåndagMånfaserFler åtgärderMestadels klartMestadels muletMestadels mulet och blåsigtMestadels soligtFlyttaFlyttat permanentFlyttade bokmärken: Flyttade kategorier: MozillaAnvändare av Mozilla/Firefox måste exportera sina bokmärken genom att gå till 'Bookmark Manager' och välja 'Export' från 'Tools'Flera valMitt kontoMin kontoinformationMina bokmärkenMitt Facebook-flödeMin portalMin portallayoutEj tillgängligtNEJ, Jag accepterar INTEOBS: ATT RADERA EN ENHET KAN ÅTERSTÄLLA DEN TILL FABRIKSINSTÄLLNINGAR. VÄNLIGEN BESTÄM DIG FÖR ATT DU VERKLIGEN VILL GÖRA DETTA INNAN DU BEGÄR RADERINGNamnNeXTAldrigNytt bokmärkeNy kategoriNya meddelanden:NymåneNy underkategoriNytt användarnamn (valfritt)Nytt lösenordDe nya lösenorden är inte lika.NyheterNästaNästa 4 faserNattBokmärken saknasInget innehållInget ljudDet finns inget konfigurationdata att visa skillnader för.Inga bokmärken att visaIngen ändring.Inga ikoner hittades.Ingen plats är inställd.Ingen plats angiven.Inga stötande lyckokakorInga väntande anmälningar.Ingen säkerhetsfråga har angivits. Vänligen kontakta din administratör.Ingen stabil version finns ännu.Temporärkatalog ej tillgänglig för cache.Inget användarnamn angivet.Ingen version funnen i originalkonfigurationen. Återgenerera konfiguration.Ingen version funnen i din konfiguration. Återgenerera konfiguration.Non-Authoritative informationIngenNordisk (ISO-8859-10)Norra halvklotetEj accepteradHittades inteEj implementeradEj ändradEj förbereddAnteckningarInget att bläddra, gå tillbaka.Antal klickAntal artiklar att visaAntal kolumner som visas i listningen och sökresultat:Antal sekunder mellan uppdateringarOKObjektskapareFilter för stötande innehållKontorGammal Horde websidaGammalt och nytt lösenord måste vara olika.Gammalt lösenordGammalt lösenord felaktigt.Bara stötande lyckokakorEndast ägare eller systemadministratör kan ändra ägare eller behörigheter på en utdelningÖppna länkar i nytt fönster?OperativsystemellerEller skriv ett användarnamn:KontorAnnanÖvrig informationAndra inställningarAndra teckenÄgareÄgare:PHPPHP-kodPHP-skalMulet på EMDuggregn på EMDimma på EMLättare regn på EMLättare snö på EMRegn på EMSkurar på EMSnö på EMSnöbyar på EMSoligt på EMÅskskurar på EMÅskväder på EMPOSIX-extension fattasP_HP-skalOfullständigt innehållDelvis muletLösenordLösenord ändrades.Lösenord:Lösenorden måste vara lika.Klistra inBetalning krävsVäntande anmälningar:FolkUtför inloggningsaktiviteterBehörighet "%s" raderades inte.BehörigheterBehörighetsadministrationPersonlig informationHusdjurFotonPlattityderVar god ange ett lösenord.Var god ange ett användarnamn.Var god ange namnet på den nya kategorin.Var god ändra namnetVar god sammanfatta ditt problem.Var god läs igenom följande text. Du MÅSTE samtycka med villkoren för att använda systemet.Völj ett bokmärke förstVälj en kategori förstPetningar:PolicynyckelPolicynyckelPolitikPostade %sPostade %s via %sPostnukeNederbörd senaste timmen: Nederbörd senaste %d timmarna: Nederbörds%sriskNederbörd
riskFörutsättningar misslyckadesTryckTryck vid havsnivå: Tryck: HuvudmanProblembeskrivningFörbereddProxy-authentisering krävsPublicering aktiverad.Purple HordeFrågaKvotRegnTidigt regnSent regnSkurRegn och snöRegn till snöSlumpmässig lyckokakaKlassningKlassningarLäsLäs aktiveradSäkert att du vill radera "%s"? Raderingen kan inte ångras.Säkert att du vill radera användardata för "%s"? Raderingen kan inte ångras.Eftersänd till %sUppdatera dynamiska menyelement:Uppdatera portalvy:Uppdateringsintervall:Registrerade användarenheterKommentarerFjärrvärd:FjärrservrarFjärr-URL (http://www.exempel.se/horde):Ta bortTa bort parTa bort sparat skript från serverns temporära katalog.Ta bort användareTa bort användare: %sByt namn på aktuell kategoriSvarRapporterGör om förberedelse för alla enheterBegärt begrepp för stortBegäran timeoutBegärd URI för storBegärt begräsning är inte tillräckligBegärd tjänst kunde inte hittas.ÅterställÅterställ innehållÅterställ lösenordÅterställ alla enhetstillstånd. Detta innebär att att dina enhter kommer att omsynkronisera allt innehåll.Återställ ditt lösenordÅterställ senaste frågaResultatResultat för %sÅtervänd till huvudmenyRetweetRetweetad av %sSkriv nytt lösenord igenÅterställ konfigurationGåtorKörKör inloggningsaktiviteterSQL-skalS_QL-skalSparaSpara "%s"Spara och avslutaSpare genererad konfiguration som ett PHP-skript i din servers temporär katalog.Kan inte spara uppgraderingsscript till: "%s".Spridda skurarSpridda åskväderVetenskapOmfattningSökSökSök bokmärkenSökresultatSökresultat (%s)Sök:Se annanVälj allaVälj ingenVälj grupp att lägga till:Välj en ny ägare:Välj en serverVälj en användare att lägga till:Välj alla fält som ska genomsökas vid autokomplettering av adresser.Ange de tecken du behöver i rutorna nedan. Du kan sedan kopiera och klistra in dem från textrutan.Välj datum- och tidsformat:Välj avgränsare för datum:Välj datumformat:Välj dag och tidsordning:Välj tidsavgränsare:Välj tidsformat:Välj ditt färgschema.Ange ditt förvalda språk:Välj: %s, %sSänd problemrapportGivare: ServertidServerdata felaktig eller ej tillgänglig.Service ej tillgängligSessionsadministrationSessionstidsstämpel:SessionerSätt behörigheterVälj inställningar för att låta dig återställa ditt lösenord om du skulle glömma det.Ställ in koppling till ditt Facebook-konto.Ställ in koppling till ditt Twitter-konto.Inställningar för fjärrservrar som du vill visa i din portal.Ställ in ditt förvalda språk, tidszon och datuminställningar.Ställ in din startapplikation, färgschema, siduppdatering och andra visningsinställningar.Flera platser möjliga med parametern: Flera möjliga platser med parametern: %sKort sammanfattningAnvänd snabbtangenter för länkar?Skall din lista med bokmärkeskategorier öppnas vid inloggning?VisaVisa avancerade inställningarVisa sidomenyVisa skillnader mellan innevarande sparad och den nyligen genererade konfigurationen.Visa extra detaljer?Visa senaste inloggningstid vid inloggning?Visa notifieringarVisa meny för %s till vänster?SkurarTidiga skurarSena skurarSkurar i närhetenSimplexHoppa över inloggningsaktiviteterLitenSnöTidigt snöfallSent snöfallSnöbySnöbyarTidiga snöbyarSena snöbyarSnödjup: Snö motsvarande i vatten: Sånger och dikterSydeuropeisk (ISO-8859-3)Södra halvklotetSkräppostInmatning av speciella teckenSportStandardStar TrekStarttidTillståndhanteringStatusDet går inte att uppdatera status.FlödeKan inte hitta underkatalog "%s".Begäran att lägga till "%s" till systemet skickad. Du kan inte logga in förrän din begärad har blivit godkänd.Kopplingen till ditt Facebook-konto eller uppdateringen av behörighet lyckades.Lyckat"%s" lades till i systemet.Användar-data för användaren "%s" rensades från systemet."%s" raderades."%s" togs bort från systemet.Återkallade konfiguration. Ladda om för att se ändringar.Sparade backupkonfiguration.Sparade backupkonfigurationsfilen %s."%s" uppdaterades.Skrev %sSoluppgångSolnedgångSöndagSoligtSoluppgångSoluppgång/solnedgångSoluppgång: SolnedgångSolnedgång: Byter protokollSyncMLSyndikerat flödeÅskskurarTidiga åskskurarSena åskskurarÅskväderÅskväder och blåsigtÅskväderTidigt åskväderSent åskväderTagg-molnTango BlueUppgifterTealTemperatur senaste timmen: TemperaturTemperatur%s(%sHö%s/%sLå%s)Temperatur: Temperatur
(%sHö%s/%sLå%s) °%sMallMall att använda vid visning av bokmärken:För närvarande ej möjligt att koppla upp mot Facebook. Var god försök igen.För närvarande ej möjligt att kontakta Twitter. Var god försök igen.Temporär eftersändningTextrutaEnbart textThai (TIS-620)Fjärradering för enhets-id %s har avbrutits.Alarmet har raderats.Alarmet har sparats.Konfigurationen för %s kan inte uppdateras automatiskt. Var vänlig uppdatera manuellt.Den förvalda e-postadressen för denna identitet:Låset har tagits bort.Medlemsstatens tjänst kunde inte nås i tid. Försök igen senare eller med en annan medlemsstat.Medlemsstatens tjänst är för närvarande inte tillgänglig. Försök igen senare eller med en annan medlemsstat.Angiven landskod är ogiltig.Servern "%s" har raderats.Servern "%s" sparades.Tjänsten är för närvarande inte tillgänglig. Försök igen senare.Tjänsten är för närvarande upptagen. Försök igen senare.Anmälningsbegäran för "%s" has tagits bort.Anmälningsbegäran för användaren "%s" har tagits bort.Tillståndet för för enhets-id %s har återställts. Enheten kommer att omsynkronisera nästa gång den kopplar upp sig mot servern.Testskriptet är för närvarande aktiverat. Avaktivera testskript av säkerhetsskäl när du testa klart (läs horde/docs/INSTALL).Användaren "%s" finns redan.Användaren "%s" finns inte.Temakatalog "%s" ej funnen.Det finns inga bokmärken i den här kategorin.Problem med att lägga till "%s" till systemet: %sProblem med att rensa information om användare "%s" från systemet: Fel uppstod vid kopiering bokmärket: %sFel uppstod vid radering av bokmärket: %sFel uppstod vid radering av kategorin: %sFel uppstod vid flytt av bokmärket: %sFel uppstod vid flytt av kategorin: %sProblem med att ta bort "%s" från systemet: Problem vid uppdatering av "%s": %sFel uppstod när bokmärket skulle läggas till: %sFel uppstod när kategorin skulle läggas till: %sDet uppstod ett fel vid kommunikation med ActiveSync-servern: %s.Det uppstod ett vid kontakt med Twitter: %s.Det var ett fel i konfigurationsformuläret. Du kanske glömde att fylla i ett obligatoriskt fält.Fel vid begäran: %s.Det uppstod ett fel vid hämtning av din Facebook-session. Var god försök igen senare.Det uppstod ett fel vid radering av global data för %s. Detaljer har loggats.Fel uppstod när bokmärket skulle sparas: %sDet uppstod ett fel med de begärda rättigheternaDetta VAT-nummer är ogiltigt.Detta VAT-nummer är giltigt.ÅskaÄrendenTidsredovisningTidsformatTidsstämpel eller okäntTidstämplar för lyckade synkroniseringssessionerTitelFör att snabbt lägga till bokmärken från din browser:För att exkludera ett specifikt fält från importen eller för att korrigera en felaktig matchning, välj ett fält i listorna nedan och tryck "Ta bort par".För att välja flera fält, håll ned Control (på PC) eller Command (på Mac) medan du klickar.IdagImorgon10 högst klassade10 mest klickadeTotaltTraditionellÖversättningarTurkiska (ISO-8859-9)KvitterTwitterintegrationTwitter tidslinjeTwitter tidslinje för %sUV-index: URLEj möjligt att kontakta Twitter. Var god försök igen senare. Felmeddelande: %sKan inte radera "%s": %sEj möjligt att gilla.ObehörigÅngra ändringarEj kategoriseradUnicode (UTF-8)EnheterOkänd (%s)Okänd plats angiven.Lås uppMediatyp stöds inte.UppdateraUppdatera %sUppdatera schema %sUppdatera alla databas-schemanUppdatera alla konfigurationerUppdatera användareUppdaterade "%s".Uppdaterad %s.Uppdaterade schema för "%s".Ladda uppAlla applikationskonfigurationer laddades upp till servern.Använd proxyAnvänd om namn/lösenord ej är lika för IMSP servern.AnvändareAnvändaradministrationAnvändarklient:AnvändarnamnAnvändarregistreringAnvändarregistrering har avaktiverats för denna plats.Användarregistrering är ej korrekt konfigurerad för denna plats.Användarkonto hittades inteAnvändare att lägga till:AnvändarnamnAnvändarnamn:AnvändareAnvändare i systemet:VAT-nummerverifikationVAT-nummer:VAT-nummerVarierandeVersionkontrollVersionhanteringMycket högVietnamesiska (VISCII)Visa rapportVisa en extern hemsidaSiktSikt: VarningVäderVäderprognosVäderdata tillhandahålls avHemsidaVälkommenVälkommen, %sWestern (ISO-8859-1)Western (ISO-8859-15)Vilken applikation skall %s visa efter inloggning?Vad arbetar du med nu?Vilket är avgränsningstecknet?Vilket är tecknet för citerad text?Vad tänker du på?Vilken dag vill du ska visas som första dagen i veckan?Vilka faserVid surfning kan du lägga till bokmärken genom att klicka på din nya genväg till 'Lägg till bokmärken'Hela fältBredd för menyn %s till vänster?WikiVindTidig vindSen vindVindhastighet i knopVind:Vind: RaderaAvvaktar raderingVisdomArbeteKorsreferensYYJa, jag samtyckerDu och %d till gillar dettaDu och %d andra gillar dettaDu skapar en kategorimapp.Du har inte behörighet lägga till grupper.Du har inte behörighet att lägga till delningar.Du har inte behörighet att ändra grupper.Du har inte behörighet att ändra delningar.Du har inte behörighet skapa mer än %d bokmärken.Du har inte behörighet att skapa mer än %d kategorier.Du har inte behörighet ta bort grupper.Du har inte behörighet att ta bort delningar.Du har inte behörighet att lista delningsgrupper.Du har inte behörighet lista delningsbehörigheter.Du har inte behörighet lista delningar.Du har inte behörighet att lista gruppanvändare.Du har inte behörighet delningsanvändare.Du byter namn på aktuell kategorimapp.Du kan även kontrollera dina Facebook-inställningar i din %s.Eftersom du inte godkänt användningsvillkoren får du inte logga in.Du har inte behörighet att visa aktuell kategori.Du är utloggad.Du har nekat de begärda rättigheterna.Du har inte kopplat ditt Facebook-konto till Horde korrekt. Du bör kontrollera dina Facebook-inställningar i din %s.Du har inte kopplat ditt Twitter-konto till Horde korrekt. Du bör kontrollera dina Twitter-inställningar i din %s.Du gillar dettaDu måste beskriva problemet innan du kan skicka problemrapporten.Du måste ange en server som skall raderas.Du måste ange ett användarnamn som skall rensas.Du måste ange ett användarnamn som skall raderas.Du måste ange ett användarnamn som skall läggas till.Du måste ange ett användarnamn som skall uppdateras.Din e-postadressDin informationDin Internetadress har ändrats sedan du startade din session. För din säkerhet måste du logga in igen.Ditt namnDin användardatabas stödjer inte upplägg av användare, Om du önskar använda Horde för att administrera användarkonton så måste du använda en annan användardatabas.Din användardatabas stödjer inte listning av användare, eller så är funktionen avstängd.Du verkar ha bytt webläsare sedan början av din session. För din säkerhet måste du logga in igen.Din webläsare stödjer inte den här funktionen.Din nuvarande tidszon:Ditt fullständiga namn:Ditt konto har blivit låst.Din inloggning har upphört att gälla.Ditt nya lösenord för %s är: %sDitt lösenord har blivit återställtDitt lösnord har återställts, men kunde inte skickas till dig. Var god kontakta administratören.Ditt lösnord har återställts, kontrollera din epost och logga in med ditt nya lösenord.Ditt lösenord har upphört att gällaDitt lösenord har upphört att gälla.Dina fjärrservrar:Din %s session har upphört att gälla. Var god logga in igen.Zippy[Problemrapport][Okänd]Lägg _till_Alarm_Lista_CLIKonfiguration_DataTree_Grupper_Hem_Importera/Exportera_Lås_Behörigheter_Rapporter_Sök_Användarebilagalugntklickaklickfallandefrån den %s (%s) kl %s %sbyarinlineinställningarstigandevisa skillnaderstadigtange lösenordet två gånger för att bekräftasammanslagenväderweather.comtrean-1.0.3/locale/sv/LC_MESSAGES/trean.po0000644000175000017500000004747712171337643016105 0ustar janjan# Trean Swedish translation # Copyright 2004 Andreas Dahlen. # Andreas Dahlén , 2004. # msgid "" msgstr "" "Project-Id-Version: Trean 1.0-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" #: data.php:153 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "%d mappar och %d bokmärken importerades." #: templates/reports/http-status.inc:127 #, php-format msgid "%s Bookmarks" msgstr "%s bokmärken" #: templates/browse/subcategories.inc:10 #, php-format msgid "%s Categories" msgstr "%s kategorier" #: templates/reports/clicks.inc:49 #, php-format msgid "%s Clicks" msgstr "%s klick" #: reports.php:30 #, php-format msgid "%s Response Codes" msgstr "%s svar" #: lib/base.php:61 scripts/upgrades/2005-03-15_move_to_horde_share.php:123 #, php-format msgid "%s's Bookmarks" msgstr "%s bokmärken" #: edit.php:186 #, php-format msgid "'%s' was not renamed: %s." msgstr "Namnet byttes inte på '%s': %s." #: templates/reports/clicks.inc:47 msgid "1 Click" msgstr "1 klick" #: lib/Block/bookmarks.php:56 config/prefs.php.dist:33 msgid "1 Line" msgstr "1 rad" #: templates/reports/http-status.inc:59 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx svar (%s)" #: lib/Block/bookmarks.php:55 config/prefs.php.dist:32 msgid "2 Line" msgstr "2 rad" #: templates/reports/http-status.inc:65 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx svar (%s)" #: lib/Block/bookmarks.php:54 config/prefs.php.dist:31 msgid "3 Line" msgstr "3 rad" #: templates/reports/http-status.inc:76 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx svar (%s)" #: templates/reports/http-status.inc:87 #, php-format msgid "4xx Response Codes (%s)" msgstr "4xx svar (%s)" #: templates/reports/http-status.inc:109 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx svar (%s)" #: lib/Trean.php:247 msgid "Accepted" msgstr "Accepterad" #: lib/Block/tree_menu.php:24 msgid "Add" msgstr "Lägg till" #: add.php:111 msgid "Add Bookmark" msgstr "Lägg till bokärke" #: templates/add/add.inc:31 msgid "Add a new bookmark" msgstr "Lägg till nytt bokmärke" #: templates/add/add.inc:82 msgid "Add to Bookmarks" msgstr "Lägg till bokärken" #: templates/browse/bookmarks.inc:28 templates/browse/subcategories.inc:17 #: templates/search/results_header.inc:11 msgid "All" msgstr "Alla" #: lib/Block/bookmarks.php:48 msgid "All Bookmarks" msgstr "Alla bokmärken" #: lib/Trean.php:32 #, php-format msgid "An error occured listing categories: %s" msgstr "Fel vid listning av kategorier: %s" #: lib/Trean.php:61 #, php-format msgid "An error occurred counting categories: %s" msgstr "Fel vid räkning av kategorier: %s" #: templates/search/search.inc:30 msgid "And" msgstr "och" #: templates/search/search.inc:39 msgid "Any Part of field" msgstr "Del av fält" #: templates/browse/javascript.inc:107 templates/search/javascript.inc:31 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "Är du säker att du vill radera valda bokmärken?" #: templates/browse/javascript.inc:210 msgid "Are you sure you want to delete the selected categories?" msgstr "Är du säker att du vill radera valda kategorier?" #: perms.php:50 msgid "Attempt to edit a non-existent share." msgstr "Försök att ändra en utdelning som inte finns." #: lib/Trean.php:279 msgid "Bad Gateway" msgstr "Felaktig gateway" #: lib/Trean.php:259 msgid "Bad Request" msgstr "Felaktig request" #: lib/Bookmarks.php:52 msgid "Bookmark names must be non-empty" msgstr "Namn på bokmärken får inte vara tomt" #: data.php:17 lib/Block/bookmarks.php:3 lib/Block/bookmarks.php:45 #: lib/Block/bookmarks.php:74 msgid "Bookmarks" msgstr "Bokmärken" #: browse.php:83 msgid "Browse" msgstr "Lista" #: templates/edit/footer.inc:4 msgid "Cancel" msgstr "Avbryt" #: templates/browse/subcategories.inc:10 templates/browse/browse.html:4 msgid "Categories" msgstr "Kategorier" #: lib/Block/bookmarks.php:41 templates/edit/edit.inc:75 #: templates/add/add.inc:51 msgid "Category" msgstr "Kategori" #: lib/Trean.php:83 msgid "Category does not exist." msgstr "Kategori existerar inte." #: lib/Bookmarks.php:32 msgid "Category names must be non-empty" msgstr "Kategorinamn måste vara angivet" #: templates/data/import.inc:11 msgid "Category to import into:" msgstr "Kategori att importera till:" #: config/prefs.php.dist:11 msgid "Change the number of columns to display in browse and search results." msgstr "Ändra antal kolumner som visas i listningen och sökresultat." #: templates/search/search.inc:26 msgid "Combine" msgstr "Kombinera" #: config/prefs.php.dist:43 msgid "Completely collapsed" msgstr "Helt förminskad" #: config/prefs.php.dist:45 msgid "Completely expanded" msgstr "Helt expanderad" #: lib/Trean.php:268 msgid "Conflict" msgstr "Konflikt" #: lib/Trean.php:243 msgid "Continue" msgstr "Fortsätt" #: edit.php:164 msgid "Copied bookmark: " msgstr "Kopierade bokmärken: " #: templates/browse/bookmarks.inc:48 templates/search/results_header.inc:18 msgid "Copy" msgstr "Kopiera" #: lib/Trean.php:246 msgid "Created" msgstr "Skapad" #: templates/reports/http-status.inc:119 #, php-format msgid "DNS Failure or Other Error (%s)" msgstr "DNS-fel eller annat fel (%s)" #: templates/add/nocategories.inc:9 msgid "Define one or more categories for your bookmarks" msgstr "Definiera en eller flera kategorierer för dina bokmärken" #: templates/browse/bookmarks.inc:39 templates/browse/subcategories.inc:21 #: templates/search/results_header.inc:16 msgid "Delete" msgstr "Radera" #: templates/edit/edit.inc:68 msgid "Delete Bookmark" msgstr "Radera bokmärke" #: templates/browse/javascript.inc:34 msgid "Delete current category?" msgstr "Radera aktuell kategori?" #: templates/browse/bookmarks.inc:66 msgid "Delete this Category" msgstr "Radera aktuell kategorin" #: edit.php:37 edit.php:79 msgid "Deleted bookmark: " msgstr "Raderade bokmärken: " #: edit.php:212 msgid "Deleted category: " msgstr "Raderad kategori: " #: templates/edit/edit.inc:17 templates/search/search.inc:21 #: templates/add/add.inc:46 msgid "Description" msgstr "Beskrivning" #: config/prefs.php.dist:10 msgid "Display Options" msgstr "Visningsinställningar" #: config/prefs.php.dist:55 msgid "Display edit buttons when displaying Bookmarks?" msgstr "Visa ändraknapp vid visning av bokmärken:" #: templates/data/export.inc:11 msgid "Download Category" msgstr "Ladda ner kategori" #: templates/add/add.inc:77 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "Dra länken 'Lägg till bokmärken' nedan till din 'Länkar' meny" #: templates/add/add.inc:75 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "Dra länken 'Lägg till bokmärken' nedan till din 'Personliga ikonrad'" #: templates/browse/bookmarks.inc:33 templates/search/results_header.inc:15 msgid "Edit" msgstr "Ändra" #: edit.php:271 msgid "Edit Bookmark" msgstr "Ändra bokmärke" #: perms.php:241 msgid "Edit Permissions" msgstr "Öndra behörighet" #: perms.php:244 #, php-format msgid "Edit Permissions for %s" msgstr "Ändra behörigheter för %s" #: lib/Trean.php:276 msgid "Expectation Failed" msgstr "Väntan misslyckades" #: templates/data/export.inc:4 msgid "Export Bookmarks" msgstr "Exportera bokmärken" #: templates/data/import.inc:9 msgid "File to import:" msgstr "Välj fil som skall importeras:" #: config/prefs.php.dist:44 msgid "First level shown" msgstr "Första nivå som visas" #: lib/Trean.php:262 msgid "Forbidden" msgstr "Förbjuden" #: lib/Trean.php:254 msgid "Found" msgstr "Hittade" #: lib/Trean.php:281 msgid "Gateway Time-out" msgstr "Gateway timeout" #: lib/Trean.php:269 msgid "Gone" msgstr "Borta" #: reports.php:30 templates/edit/edit.inc:56 #: templates/reports/http-status.inc:56 templates/reports/list.inc:7 msgid "HTTP Status" msgstr "HTTP-status" #: lib/Trean.php:282 msgid "HTTP Version not supported" msgstr "HTTP-version stöds inte." #: templates/data/import.inc:16 msgid "Import" msgstr "Importera" #: data.php:181 templates/data/import.inc:4 msgid "Import Bookmarks" msgstr "Importera bokmärken" #: templates/data/export.inc:9 msgid "Include Subcategories" msgstr "Inkludera underkategorir" #: lib/Trean.php:277 msgid "Internal Server Error" msgstr "Internt serverfel" #: templates/add/add.inc:76 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/data/import.inc:7 msgid "" "Internet Explorer users will need to export their current Favorites by going " "to the \"File\" menu and selecting \"Import and Export\"." msgstr "" "Användare av Internet Explorer måste exportera sina favoriter genom att gå " "till 'Arkiv' och välja 'Importera och Exportera'" #: lib/Trean.php:270 msgid "Length Required" msgstr "Längs krävs" #: templates/search/search.inc:36 msgid "Match" msgstr "Matcha" #: lib/api.php:34 msgid "Maximum Number of Bookmarks" msgstr "Maximalt antal bokmärken" #: lib/api.php:31 msgid "Maximum Number of Categories" msgstr "Maximalt antal kategorier" #: lib/Block/tree_menu.php:3 msgid "Menu List" msgstr "Menylista" #: lib/Trean.php:264 msgid "Method Not Allowed" msgstr "Metod stöds inte" #: templates/browse/bookmarks.inc:54 msgid "More Actions" msgstr "Fler åtgärder" #: templates/browse/bookmarks.inc:41 templates/browse/subcategories.inc:22 #: templates/search/results_header.inc:17 msgid "Move" msgstr "Flytta" #: lib/Trean.php:253 msgid "Moved Permanently" msgstr "Flyttat permanent" #: edit.php:122 msgid "Moved bookmark: " msgstr "Flyttade bokmärken: " #: edit.php:254 msgid "Moved category: " msgstr "Flyttade kategorier: " #: templates/add/add.inc:74 msgid "Mozilla" msgstr "Mozilla" #: templates/data/import.inc:6 msgid "" "Mozilla/Firefox users will need to export their current Bookmarks by going " "into \"Bookmark Manager\" and selecting \"Export\" from the \"Tools\" menu." msgstr "" "Användare av Mozilla/Firefox måste exportera sina bokmärken genom att gå " "till 'Bookmark Manager' och välja 'Export' från 'Tools'" #: lib/Trean.php:252 msgid "Multiple Choices" msgstr "Flera val" #: lib/Trean.php:87 msgid "My Bookmarks" msgstr "Mina bokmärken" #: lib/Block/bookmarks.php:79 templates/browse/bookmarks.inc:56 msgid "New Bookmark" msgstr "Nytt bokmärke" #: lib/Trean.php:168 msgid "New Category" msgstr "Ny kategori" #: templates/browse/bookmarks.inc:63 templates/add/nocategories.inc:4 msgid "New Subcategory" msgstr "Ny underkategori" #: templates/search/results_none.inc:3 msgid "No Bookmarks found" msgstr "Bokmärken saknas" #: lib/Trean.php:249 msgid "No Content" msgstr "Inget innehåll" #: lib/Block/bookmarks.php:121 msgid "No bookmarks to display" msgstr "Inga bokmärken att visa" #: lib/Trean.php:248 msgid "Non-Authoritative Information" msgstr "Non-Authoritative information" #: templates/browse/bookmarks.inc:29 templates/browse/subcategories.inc:18 #: templates/reports/rating.inc:48 templates/search/results_header.inc:12 msgid "None" msgstr "Ingen" #: lib/Trean.php:265 msgid "Not Acceptable" msgstr "Ej accepterad" #: lib/Trean.php:263 msgid "Not Found" msgstr "Hittades inte" #: lib/Trean.php:278 msgid "Not Implemented" msgstr "Ej implementerad" #: lib/Trean.php:256 msgid "Not Modified" msgstr "Ej ändrad" #: templates/reports/clicks.inc:5 templates/reports/list.inc:13 msgid "Number of Clicks" msgstr "Antal klick" #: config/prefs.php.dist:22 msgid "Number of columns to display in browse and search results:" msgstr "Antal kolumner som visas i listningen och sökresultat:" #: lib/Trean.php:245 msgid "OK" msgstr "OK" #: perms.php:62 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "" "Endast ägare eller systemadministratör kan ändra ägare eller behörigheter på " "en utdelning" #: config/prefs.php.dist:64 msgid "Open links in a new window?" msgstr "Öppna länkar i nytt fönster?" #: templates/search/search.inc:29 msgid "Or" msgstr "eller" #: config/prefs.php.dist:9 msgid "Other Options" msgstr "Andra inställningar" #: lib/Trean.php:251 msgid "Partial Content" msgstr "Ofullständigt innehåll" #: lib/Trean.php:261 msgid "Payment Required" msgstr "Betalning krävs" #: templates/browse/javascript.inc:26 msgid "Please enter the name of the new category:" msgstr "Var god ange namnet på den nya kategorin." #: templates/browse/javascript.inc:42 msgid "Please modify the name accordingly" msgstr "Var god ändra namnet" #: templates/browse/javascript.inc:93 templates/browse/javascript.inc:112 #: templates/browse/javascript.inc:147 templates/browse/javascript.inc:182 msgid "Please select a bookmark first" msgstr "Völj ett bokmärke först" #: templates/browse/javascript.inc:215 templates/browse/javascript.inc:250 msgid "Please select a category first" msgstr "Välj en kategori först" #: lib/Trean.php:271 msgid "Precondition Failed" msgstr "Förutsättningar misslyckades" #: lib/Trean.php:266 msgid "Proxy Authentication Required" msgstr "Proxy-authentisering krävs" #: templates/edit/edit.inc:27 msgid "Rating" msgstr "Klassning" #: templates/reports/list.inc:19 templates/reports/rating.inc:5 msgid "Ratings" msgstr "Klassningar" #: templates/edit/edit.inc:63 #, php-format msgid "Redirect to %s" msgstr "Eftersänd till %s" #: templates/browse/bookmarks.inc:67 msgid "Rename this Category" msgstr "Byt namn på aktuell kategori" #: reports.php:18 msgid "Reports" msgstr "Rapporter" #: lib/Trean.php:272 msgid "Request Entity Too Large" msgstr "Begärt begrepp för stort" #: lib/Trean.php:267 msgid "Request Time-out" msgstr "Begäran timeout" #: lib/Trean.php:273 msgid "Request-URI Too Large" msgstr "Begärd URI för stor" #: lib/Trean.php:275 msgid "Requested range not satisfiable" msgstr "Begärt begräsning är inte tillräcklig" #: templates/add/add.inc:64 msgid "Reset" msgstr "Återställ" #: lib/Trean.php:250 msgid "Reset Content" msgstr "Återställ innehåll" #: templates/edit/footer.inc:3 templates/add/add.inc:63 msgid "Save" msgstr "Spara" #: search.php:14 lib/Block/tree_menu.php:33 templates/search/search.inc:47 msgid "Search" msgstr "Sök" #: templates/search/search.inc:6 msgid "Search Bookmarks" msgstr "Sök bokmärken" #: templates/search/results_none.inc:2 msgid "Search Results" msgstr "Sökresultat" #: search.php:65 #, php-format msgid "Search Results (%s)" msgstr "Sökresultat (%s)" #: lib/Trean.php:255 msgid "See Other" msgstr "Se annan" #: templates/browse/bookmarks.inc:28 templates/browse/subcategories.inc:17 #: templates/search/results_header.inc:11 msgid "Select All" msgstr "Välj alla" #: templates/browse/bookmarks.inc:29 templates/browse/subcategories.inc:18 #: templates/search/results_header.inc:12 msgid "Select None" msgstr "Välj ingen" #: templates/browse/bookmarks.inc:27 templates/browse/subcategories.inc:16 #: templates/search/results_header.inc:10 #, php-format msgid "Select: %s, %s" msgstr "Välj: %s, %s" #: lib/Trean.php:280 msgid "Service Unavailable" msgstr "Service ej tillgänglig" #: templates/browse/bookmarks.inc:70 msgid "Set Permissions" msgstr "Sätt behörigheter" #: config/prefs.php.dist:46 msgid "Should your list of bookmark categories be open when you log in?" msgstr "Skall din lista med bokmärkeskategorier öppnas vid inloggning?" #: lib/Trean.php:244 msgid "Switching Protocols" msgstr "Byter protokoll" #: lib/Block/bookmarks.php:51 msgid "Template" msgstr "Mall" #: config/prefs.php.dist:34 msgid "Template to use when displaying bookmarks:" msgstr "Mall att använda vid visning av bokmärken:" #: lib/Trean.php:258 msgid "Temporary Redirect" msgstr "Temporär eftersändning" #: templates/browse/bookmarks.inc:101 msgid "There are no bookmarks in this category" msgstr "Det finns inga bokmärken i den här kategorin." #: edit.php:166 #, php-format msgid "There was a problem copying the bookmark: %s" msgstr "Fel uppstod vid kopiering bokmärket: %s" #: edit.php:39 edit.php:81 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Fel uppstod vid radering av bokmärket: %s" #: edit.php:214 #, php-format msgid "There was a problem deleting the category: %s" msgstr "Fel uppstod vid radering av kategorin: %s" #: edit.php:124 #, php-format msgid "There was a problem moving the bookmark: %s" msgstr "Fel uppstod vid flytt av bokmärket: %s" #: edit.php:256 #, php-format msgid "There was a problem moving the category: %s" msgstr "Fel uppstod vid flytt av kategorin: %s" #: add.php:64 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Fel uppstod när bokmärket skulle läggas till: %s" #: edit.php:108 edit.php:150 edit.php:240 add.php:43 add.php:100 #, php-format msgid "There was an error adding the category: %s" msgstr "Fel uppstod när kategorin skulle läggas till: %s" #: edit.php:62 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Fel uppstod när bokmärket skulle sparas: %s" #: templates/edit/edit.inc:12 templates/search/search.inc:16 #: templates/add/add.inc:41 msgid "Title" msgstr "Titel" #: templates/add/add.inc:73 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "För att snabbt lägga till bokmärken från din browser:" #: lib/Block/bookmarks.php:49 msgid "Top 10 Highest Rated" msgstr "10 högst klassade" #: lib/Block/bookmarks.php:50 msgid "Top 10 Most Clicked" msgstr "10 mest klickade" #: templates/reports/http-status.inc:126 msgid "Total" msgstr "Totalt" #: templates/edit/edit.inc:22 templates/search/search.inc:11 #: templates/add/add.inc:36 msgid "URL" msgstr "URL" #: lib/Trean.php:260 msgid "Unauthorized" msgstr "Obehörig" #: templates/reports/http-status.inc:123 #, php-format msgid "Unknown (%s)" msgstr "Okänd (%s)" #: lib/Trean.php:274 msgid "Unsupported Media Type" msgstr "Mediatyp stöds inte." #: perms.php:234 #, php-format msgid "Updated %s." msgstr "Uppdaterad %s." #: lib/Trean.php:257 msgid "Use Proxy" msgstr "Använd proxy" #: templates/reports/list.inc:1 msgid "View Report" msgstr "Visa rapport" #: templates/add/add.inc:78 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Vid surfning kan du lägga till bokmärken genom att klicka på din nya genväg " "till 'Lägg till bokmärken'" #: templates/search/search.inc:40 msgid "Whole Field" msgstr "Hela fält" #: templates/browse/javascript.inc:26 msgid "You are creating a category folder." msgstr "Du skapar en kategorimapp." #: data.php:61 data.php:128 add.php:21 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "Du har inte behörighet skapa mer än %d bokmärken." #: data.php:52 data.php:103 add.php:84 #, php-format msgid "You are not allowed to create more than %d categories." msgstr "Du har inte behörighet att skapa mer än %d kategorier." #: templates/browse/javascript.inc:42 msgid "You are renaming the current category folder." msgstr "Du byter namn på aktuell kategorimapp." #: browse.php:25 msgid "You do not have permission to view this category." msgstr "Du har inte behörighet att visa aktuell kategori." #: lib/Trean.php:219 msgid "_Add" msgstr "Lägg _till" #: lib/Trean.php:215 msgid "_Browse" msgstr "_Lista" #: lib/Trean.php:226 msgid "_Import/Export" msgstr "_Importera/Exportera" #: lib/Trean.php:222 msgid "_Reports" msgstr "_Rapporter" #: lib/Trean.php:221 msgid "_Search" msgstr "_Sök" #: templates/search/results.inc:57 templates/block/1line.inc:28 #: templates/block/2line.inc:31 templates/block/standard.inc:29 #: templates/bookmark/1line.inc:33 templates/bookmark/2line.inc:37 #: templates/bookmark/standard.inc:33 msgid "click" msgstr "klicka" #: templates/search/results.inc:57 templates/block/1line.inc:28 #: templates/block/2line.inc:31 templates/block/standard.inc:29 #: templates/bookmark/1line.inc:33 templates/bookmark/2line.inc:37 #: templates/bookmark/standard.inc:33 msgid "clicks" msgstr "klick" trean-1.0.3/locale/tr/LC_MESSAGES/trean.mo0000664000175000017500000017526312171337643016074 0ustar janjanL9hL$iL)LLL&L M% M$FM kMvMMM M MMMMM NRNpNNNNNNNNNNN OO$O,ODOKOcO{O OOOOOOOO O O P PP .PQ IQUQ\Q`QxQQQQ$Q&Q!R(R >RJR`RqRRRR%R7R<S%[SSSS S)S S'S,T*AT%lTTT T T TTT'TU !U ,U6UEU TU^UmUrUxUU UU UUU U@UV)V>V\VcVsV!VdVWW.W7WSW nW1xW*WW WW XXQ,X~XX XX XXX XXX X XYY )Y 3Y =Y HYVY=pYY'Y YZZ#Z,Z5ZSZZZlZ!qZ Z.Z*Z3Z,[[([5\0N\\*]=]E]L]`]h]y] ]] ]]]]]^^9^S^g^j^^^^^^ ^^^^ ^ ^,_4-_ b_n_ u___ ___*_`B`Z`r`` ` `````` ` a$aC;aa aa/a<aD(bmbsb {bbb b bbbbbcc 3c =cKc"Tc'wc(ccccc dd,dh Xh eh rhhhh h$h2hi i &i 3i >iKi[iairiyiiiiijjj'k 8kDkVklk~k)l+l=lRlml llllllll ll ll mm)m@mRmYmbmfm vmmm m mmmmm n n(n:nJn Sn]ncnjnGrn nnn nnnn nhnbooooooop$ pEpNpUp ]p gp rppppp pppp qq q #q0qGqLq^qoq~qqr (r3r JrTrerxr}rr r r r rrr r rrss s's*s =sHs8Qss ssssssEtA_tttttt tu u#u3u9u?u[uluu$u uuuuuuv(v >vKvjhvv\vHwdwuw www wwwwww ww xx'x0x OxYxoxuxxxxx xxx yy y'"yJycy(|yPyyyBzKzazuz~zzz zzzzzz z, {46{Gk{{{ {{ {* |5| <|6H| |||||||||} "}0}?}S}f}n}}}}}}}} } }} }}R ~,_~~~~~~~~ ~ ~~ %9I5_i  ;Sr߀  +9L;U;[́ )-7=e ‚Oς2%Ms ȃ  8LQip y d&8F*;Ņ(4*_yņن   %1NW j t~5Çhfb%Ɉ!813j-2̉ %1A9,{-+֋+).3X%*(݌*(1*Z( čЍ:&V  !. CPT o | ҏ ُ $ 0 >Ja h2r Ȑ2ڐ; I `m v ё ܑ (3;C\e my/Ԓ /FD n !5:?SY`ekn r""%Ŕ%53G%{%-Ǖ.#$,H,uV/)*CEn%(ڗ)&-%T(zvǘ >Hsy^+ؚ,H`\QLf-Ĝʜ ۜ %5=CR Y gt} Ý˝ ҝޝ"\"#ҟ3 *-62d ֠  *C \Ohʡߡ  3=V_t| ֢ !6X [f v ̣ܣ?,H!u  Τ  #4Ja'$$5FX_*v-;Ϧ) 5JP e.s&%̧+7Vgk %   #/ D OZ alM©)> Wbtn  :"Il3(-AW^ Ӭ߬  $/ 5 CMd } :í+IYh{ ͮծ4 9>3x&Q*x7/۰ *  1I^oŲ1ܲ$3P%Sy ~  ճ ڳ> BH  ĴӴܴ+(;7s Ƶ͵" 5N!lD Ӷ8SHS & /=Pcvڸ# -$N s ƹ Թ   $.D ^ kx غ  -3Ed~  9A H V `lu}   ȼ  " .;PW[ jt Ͻ  7Hfx ¾Ⱦؾ1! %2AQcؿ u%+{  .8>NR Yf |2*#+0 @LS bp%%&,%.=P_e| :  i(' '&&@Xx (' 8BV&j "   , :EU ] ~  IPj{ N RZ -GV[)b! 4LQ'f U z'0 (;NT[_ ht #!  .8Sir -% $0YU 5&I pz  $<n! .' +57m} $ 8B^q   ' B N[ bnT3 $5LQ fs9y: $!"4Wn  )_0Jn J<VKe (." 0IRc} ' 0:OU`p!C@)Za,8Lj     %/6 R]} 4aoy  !B;?~&5j.C *d&$)'@-&n&%'% 0Lg p ~6Q  3BFZc| ("8[tG !7H;[8*9Tm |#   *7H[5o8 JxU  (16<?DYr#)+0 <"Y.|,&/5/Ye>(R){855:J x%zb0 -%Kqf^ %l&C 0 ;EMR bo   4> NZ)l 0'kssOU5M I*H& LY4)6RG:Abzh C'i_\yF 5/Fgdr? @,Glh9C/ZZ^q]c:KrM? Vf(ZDmsy8 v[J%;$]+1i\g2 eb$O3<&7mpcPw*A"e7_zveoX(8aCWa1t9n{ENkx}Xp nR[m"<Qq.)+o=udd!i.T*GQ'x  Bu~ 8 ##9lIEQn> Hx^hjOHF|J_Yt46 ,;(}|'[t3{Y-w0TgeLyu"~z p],<J.B-3@Hb qN);wcL>UJr|MDmAb$`3.RAp{@a @/~T>g* N,r1v)(u\l`S\j1  PKd=x`Pk XIv>-/Wc#=I5=O6ZEYQ&zG5#XiowLT7y8!sW]S`K}^ R%?4|%MCf$D%Uk"SE:;VP{t:}9WDK_^oF-Vj4BfV0+UB~2+jS!27[Na!qf26hl?<&0 n"%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s."%s" was not renamed: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d Folders and %d Bookmarks imported.%d days until your password expires.%d minutes%d stars out of 5%d to %d of %d%d-day forecast%s - Notice%s Bookmarks%s Configuration%s Response Codes%s Tasks - Confirmation%s Terms of Agreement%s at %s %s%s is ready to perform the tasks below. Select each operation to run at this time.%s's Bookmarks, gusting %s %s, variable from %s to %s1 Line1 star out of 510 rows12 Hour Format15 rows1xx Response Codes (%s)2 Line24 Hour Format24 hours24-hour format25 rows2xx Response Codes (%s)3 Line3xx Response Codes (%s)4xx Response Codes (%s)5xx Response Codes (%s)A charactersA newer version (%s) exists.AM/PMANDAcceptedAccount InformationActionsAddAdd ContentAdd Here:Add MembersAdd a groupAdd a new user:Add new alarmAdd pairAdd to BookmarksAdd userAdded "%s" to the system, but could not add additional signup information: %s.Added "%s" to the system. You can log in now.Adding users is disabled.AddressAddress BookAdministrationAlarm endAlarm methodsAlarm startAlarm textAlarm titleAlarmsAllAll Authenticated UsersAlternate IMSP LoginAlternate IMSP PasswordAlternate IMSP UsernameAlternate email addressAn error occured listing folders: %sAn error occurred counting folders: %sAnswerAny Part of the fieldApplicationApplication Context: Application ListApplication is ready.Application is up-to-date.ApproveArabic (Windows-1256)Are you sure you want to delete '%s'?Are you sure you want to delete the selected bookmarks?Are you sure you want to remove the signup request for "%s"?Are you sure you wish to delete "%s"?Armenian (ARMSCII-8)ArtAscending (A to Z)Ascii ArtAt least one database schema is outdated.AttachmentAttempt to delete a non-existent group.Attempt to delete a non-existent permission.Attempt to edit a non-existent permission.Attempt to edit a non-existent share.Authenticated to:AzurBOFH ExcusesBad GatewayBad RequestBaltic (ISO-8859-13)BarbieBase graphics directory "%s" not found.Block SettingsBlock TypeBlue MoonBlue and WhiteBookmark AddedBookmarksBookmarks FeedBothBrownBrowseBrowser:Burnt OrangeCalendarCamouflageCancelCancel Problem ReportCancel WipeCannot reset password automatically, contact your administrator.Categories and LabelsCeltic (ISO-8859-14)Central European (ISO-8859-2)ChangeChange LocationChange Your PasswordChange your personal information.Changing your password is not supported with the current configuration. Contact your administrator.CheckCheck for newer versionsCheckingChinese Simplified (GB2312)Chinese Traditional (Big5)Choose %sChoose how to display dates (abbreviated format):Choose how to display dates (full format):Choose how to display times:Clear QueryClear out user: %sClear userClear user dataClick on one of your selected address books and then select all fields to search.Click to ContinueClicksClient AnchorCloseClose WindowCloudsCollapseColor PickerCombineCommandCommand ShellComments: %dCompletely collapsedCompletely expandedComputersConditionConditionsConfigurationConfiguration DifferencesConfiguration for syncing with PDAs, Smartphones and Outlook.Configuration is out of date.Configuration upgrade scripts availableConfigure %sConfirm DeletionConfirm PasswordConflictContinueControl access to this folderCookieCopied bookmark: CopyCopying folders is not supported.CornflowerCould not connect to server "%s" using FTP: %sCould not contact server. Try again later.Could not delete configuration upgrade script "%s".Could not reset the password for the requested user. Some or all of the details are not correct. Try again or contact your administrator if you need further help.Could not revert configuration.Could not save a backup configuation: %sCould not save configuration upgrade script to: "%s".Could not save the backup configuration file %s.Could not save the configuration file %s. You can either use one of the options to save the code back on %s or copy manually the code below to %s.Could not write configuration for "%s": %sCountryCreateCreate New IdentityCreatedCurrent 4 PhasesCurrent AlarmsCurrent LocksCurrent SessionsCurrent TimeCurrent WeatherCurrent conditionCyrillic (KOI8-R)Cyrillic (Windows-1251)Cyrillic/Ukrainian (KOI8-U)DB access is not configured.DB schema is out of date.DB schema is ready.DDDNS Failure or Other Error (%s)DataDataTreeDataTree BrowserDatabaseDateDate ReceivedDate: %s; time: %sDayDefaultDefault ColorDefault ShellDefault charset for sending e-mail messages:Default location to use for location-aware features.DefinitionsDeleteDelete "%s"Delete All SyncML DataDelete BookmarkDelete GroupDelete this folderDeleted bookmark: Deleted configuration upgrade script "%s".Deleted folder: Deleted synchronization session for device "%s" and database "%s".Deleted the folder "%s"Descending (9 to 1)Describe the ProblemDescriptionDevelopmentDeviceDisableDisplay 24-hour times?Display OptionsDisplay PreferencesDisplay RowsDisplay detailed forecastDisplay forecast (TAF)Does the first row contain the field names? If yes, check this box:Don't have an account? Sign up.Download %sDownload FolderDownload generated configuration as PHP script.Drag the "Add to Bookmarks" link below onto your "Links" BarDrag the "Add to Bookmarks" link below onto your "Personal Toolbar".DrugsDynamicE charactersEU VAT identificationEditEdit "%s"Edit BookmarkEdit BookmarksEdit PermissionsEdit Permissions for %sEdit Preferences forEdit permissionsEdit permissions for "%s"EducationEmail AddressEnd TimeEnter a name for the new category:Error deleting synchronization session:Error deleting synchronization sessions:Error updating password: %sEthnicEvent Invites:Every 15 minutesEvery 2 minutesEvery 30 secondsEvery 5 minutesEvery half hourEvery hourEvery minuteExample values:ExecuteExpandExpectation FailedExport BookmarksExtra LargeFade to GreenFeedFeed AddressFeels LikeFields to searchFile ManagerFile to import:FilterFiltersFirefox/MozillaFirst HalfFirst QuarterFirst level shownFolderFolder ActionsFolder names must be non-emptyFolder to import into:FoodForbiddenForecast (TAF)Forecast Days (note that the returned forecast returns both day and night; a large number here could result in a wide block)Forgot your password?FormsFortuneFortune typeFortunesFortunes 2ForumsFoundFrom the %s at %s %sFull DescriptionFull MoonFull NameGateway Time-outGenerate %s ConfigurationGenerated CodeGet MoreGlobal PreferencesGoGoedelGoneGoogle SearchGreek (ISO-8859-7)GreenGreyGroup AdministrationGroup nameGroup was not created: %s.GroupsGuest PermissionsHTTP StatusHTTP Version not supportedHebrew (ISO-8859-8-I)HeightHelpHelp _TopicsHemisphereHere is the beginning of the file:Hi-ContrastHide Advanced PreferencesHide ResultsHide SidebarHighest RatedHighest-rated BookmarksHome DirectoryHordeHorde WebsiteHow many fields (columns) are there?How many seconds before we check for new articles?HumidityHumoristsI charactersIcons OnlyIcons for %sIcons with textIdeasIdentity's name:ImportImport BookmarksImport, Step %dImported field: %sImported fields:In the lists below select both, a field imported from the source file at the left, and the matching field available in your address book at the right. Then hit "Add pair" to mark them for the import. Once your are finished hit "Next".Include SubfoldersIncorrect username or alternate address. Try again or contact your administrator if you need further help.Individual UsersInformationInherited MembersInternal Server ErrorInternet ExplorerInternet Explorer users will need to export their current Favorites by going to the "File" menu and selecting "Import and Export".Invalid VAT identification number format.Invalid action %sInvalid application.Invalid parent permission.Japanese (ISO-2022-JP)Just now...Kernel NewbiesKeywordKidsKolabKorean (EUC-KR)LanguageLargeLast HalfLast Password ChangeLast QuarterLast Sync TimeLast Updated:Last login: %sLast login: %s from %sLast login: NeverLatestLavenderLawLength RequiredLight BlueLikeLimerickLinux CookieList TablesListing alarms failed: %sListing locks failed: %sListing sessions failed: %sListing users is disabled.LiteratureLoading...Local time: %s %sLocale and TimeLocationLock UserLocksLog inLog outLogin failed because your username or password was entered incorrectly.Login failed.LoveLoyolaLoyola BlueMMMagicMailMail AdminManage the list of categories you have to label items with, and colors associated with those categories.Manage your ActiveSync devices.MatchMatching fields:Max temp last 24 hours: Max temp last 6 hours: Maximum Number of BookmarksMaximum Number of FoldersMaximum Number of Portal BlocksMaximum number of entries to displayMedicineMediumMembersMenu ListMenu mode:Metar WeatherMethod Not AllowedMetricMin temp last 24 hours: Min temp last 6 hours: MiscellaneousMissing configuration.MobileMobile (Smartphone)ModeMondayMoon PhasesMost ClickedMost-clicked BookmarksMoveMoved PermanentlyMoved bookmark: Moved folder: MozillaMozilla/Firefox users will need to export their current Bookmarks by going into "Bookmark Manager" and selecting "Export" from the "Tools" menu.Multiple ChoicesMy AccountMy Account InformationMy PortalMy Portal LayoutNO, I Do NOT AgreeNameNeXTNeverNew BookmarkNew CategoryNew FolderNew Messages:New MoonNew Username (optional)New folderNew passwordNew passwords don't match.NewsNextNext 4 PhasesNoNo Bookmarks foundNo ContentNo SoundNo available configuration data to show differences for.No bookmarks to displayNo change.No icons found.No location is set.No offensive fortunesNo pending signups.No stable version exists yet.No version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.Non-Authoritative InformationNoneNordic (ISO-8859-10)Northern HemisphereNot AcceptableNot FoundNot ImplementedNot ModifiedNot ProvisionedNote:NotesNothing to browse, go back.Nothing to edit.Number of articles to displayNumber of bookmarks to showNumber of seconds to wait to refreshO charactersOKORObject CreatorOffense filterOfficeOld Horde WebsiteOld and new passwords must be different.Old passwordOld password is not correct.On newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Only offensive fortunesOnly the owner or system administrator may change ownership or owner permissions for a shareOpen links in a new window?Operating SystemOr enter a user name:OrganizingOtherOther InformationOther OptionsOther charactersOwnerOwner:PHPPHP CodePHP ShellPOSIX extension is missingP_HP ShellPartial ContentPasswordPassword changed successfully.Password:Passwords must match.PastePayment RequiredPending Signups:PeoplePerform Login TasksPermission "%s" not deleted.PermissionsPermissions AdministrationPersonal InformationPetsPhotosPlatitudesPlease enter a name for the new folder:Please enter a password.Please enter a username.Please provide a summary of the problem.Please read the following text. You MUST agree with the terms to use the system.PoliticsPostnukePrecipitation for last %d hour: Precipitation for last %d hours: Precipitation%schancePrecondition FailedPressurePressure at sea level: Problem DescriptionProxy Authentication RequiredPurple HordeQueryQuotaRandom FortuneRatingReadRead enabledReally delete "%s" and all of its bookmarks?Really delete "%s"? This operation cannot be undone.Really remove user data for user "%s"? This operation cannot be undone.Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:RemarksRemote Host:Remote URL (http://www.example.com/horde):RemoveRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sRename this folderReplyReportsRequest Entity Too LargeRequest Time-outRequest-URI Too LargeRequested range not satisfiableResetReset ContentReset PasswordReset your passwordRestore Last QueryResultsResults for %sReturn to Main ScreenRetype new passwordRevert ConfigurationRiddlesRunRun Login TasksSQL ShellS_QL ShellSaveSave "%s"Save and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved configuration upgrade script to: "%s".ScienceScopeSea_rchSearchSearch BookmarksSearch Results (%s)Search:See OtherSelect AllSelect All/Select NoneSelect NoneSelect a group to add:Select a new owner:Select a serverSelect a user to add:Select all fields to search when expanding addresses.Select the characters you need from the boxes below. You can then copy and paste them from the text area.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Select: %s, %sSend Problem ReportSensor: Server TimeService UnavailableSession AdminSession Timestamp:SessionsSet how to display bookmark listings and how to open links.Set your preferred language, timezone and date preferences.Set your startup application, color scheme, page refreshing, and other display preferences.Short SummaryShould access keys be defined for most links?Should your list of bookmark folders be open when you log in?ShowShow Advanced PreferencesShow SidebarShow differences between currently saved and the newly generated configuration.Show extra detail?Show folder actions panel?Show last login time when logging in?Show notificationsShow the %s Menu on the left?Skip Login TasksSmallSnow depth: Snow equivalent in water: Songs & PoemsSort bookmarks by:Sort bySort direction:South European (ISO-8859-3)Southern HemisphereSpamSpecial Character InputSportsStandardStar TrekStart TimeStatusSubdirectory "%s" not found.Submitted request to add "%s" to the system. You cannot log in until your request has been approved.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully saved the backup configuration file %s.Successfully updated "%s"Successfully wrote %sSun RiseSun SetSundaySunriseSunrise/SunsetSunsetSwitching ProtocolsSyncMLSyndicated FeedTag CloudTango BlueTasksTealTemp for last hour: TemperatureTemperature%s(%sHi%s/%sLo%s)TemplateTemporary RedirectText AreaText OnlyThai (TIS-620)The alarm has been deleted.The alarm has been saved.The default e-mail address to use with this identity:The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The provided country code is invalid.The server "%s" has been deleted.The server "%s" has been saved.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The signup request for user "%s" has been removed.The test script is currently enabled. For security reasons, disable test scripts when you are done testing (see horde/docs/INSTALL).The user "%s" already exists.The user "%s" does not exist.Themes directory "%s" not found.There are no bookmarks in this folderThere was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem copying the bookmark: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the folder: %sThere was a problem moving the bookmark: %sThere was a problem moving the folder: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was an error adding the bookmark: %sThere was an error adding the folder: %sThere was an error saving the bookmark: %sThere was an error saving the folder: %sThis VAT identification number is invalid.This VAT identification number is valid.TicketsTime TrackingTime formatTimestamp or unknownTitleTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple fields, hold down the Control (PC) or Command (Mac) while clicking.TodayTomorrowTotalTraditionalTranslationsTurkish (ISO-8859-9)U charactersURLUnable to delete "%s": %s.UnauthorizedUndo ChangesUnfiledUnicode (UTF-8)UnitsUnknown (%s)UnlockUnsupported Media TypeUpdateUpdate %sUpdate %s schemaUpdate all DB schemasUpdate all configurationsUpdate userUpdated "%s".Updated %s.Updated schema for %s.UploadUse ProxyUse if name/password is different for IMSP server.UserUser AdministrationUser NameUser RegistrationUser Registration has been disabled for this site.User Registration is not properly configured for this site.User account not foundUser to add:UsernameUsername:UsersUsers in the system:VAT id number verificationVAT identification number:VAT numberVersion CheckVersion ControlVietnamese (VISCII)View an external web pageVisibilityWarningWeatherWeather data provided byWeb SiteWelcomeWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)What application should %s display after login?What are you working on now?What is the delimiter character?What is the quote character?What's on your mind?Which day would you like to be displayed as the first day of the week?Which phasesWhile browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Whole FieldWidth of the %s menu on the left:WikiWindWind speed in knotsWind:WisdomWorkX-RefYYYesYes, I AgreeYou are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d bookmarks.You are not allowed to create more than %d folders.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You did not agree to the Terms of Service agreement, so you were not allowed to login.You do not have permission to view this folder.You have been logged out.You have denied the requested permissions.You must describe the problem before you can send the problem report.You must select a target folder firstYou must select an server to be deleted.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.Your Email AddressYour InformationYour Internet Address has changed since the beginning of your session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your session. To protect your security, you must login again.Your browser does not support this feature.Your current time zone:Your full name:Your login has been locked.Your login has expired.Your new password for %s is: %sYour password has been resetYour password has been reset, but couldn't be sent to you. Please contact the administrator.Your password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your remote servers:Your session has expired. Please login again.Zippy[Problem Report][Unknown]_Alarms_Browse_CLI_Configuration_DataTree_Delete Bookmarks_Edit Bookmarks_Groups_Home_Import/Export_Locks_New Bookmark_Permissions_Reports_Search_Usersattachmentcalmclickclicksfrom the %s (%s) at %s %sgustinginlinepreferencesshow differencestype the password twice to confirmunifiedweatherProject-Id-Version: Trean 1.0-cvs Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2008-04-15 12:57+0300 PO-Revision-Date: 2008-04-15 12:57+0300 Last-Translator: Onur Koşar Language-Team: i18n@lists.horde.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0; "%s" grup sistemine eklendi."%s" izin sistemine eklendi."%s" yaratılamadı: %s."%s" tekrar adlandırılamadı: %s.%.2fMB kullanıyor. İzin verilen %.2fMB . (%.2f%%)%d %s ve %s%d Klasörleri %d Yerimleri içe aktarıldı.Şifrenizin son kullanım tarihine %d gün kaldı.%d dakikayıldızlar 5 üzerinden %d %d den %d e. toplam: %d%d-günlük hava tahmini%s - Uyarı%s Yer imleri%s Yapılandırma%s yanıt kodu/%s Görevler - Onaylama%s Kullanım Koşulları%s de %s %s%s aşağıdaki görevleri yapmaya hazır. Şimdi yapılacak işlemleri seçin.%s'ın yer imleri, fırtınalı %s %s, değişim %s -> %s1 çizgi5 üzerinden 1 yıldız10 satır12'lik Saat Biçimi15 satır1xx Yanıt Kodları (%s)2 Çizgi24'lük Saat Biçimi24 saat24'lük saat biçimi25 satır2xx Yanıt Kodları (%s)3 Çizgi3xx Yanıt Kodları (%s)4xx Yanıt Kodları (%s)5xx Yanıt Kodları (%s)Bir karakterDaha yeni bir sürüm (%s) var.Öğleden Önce / Öğleden SonraVEOnaylandıHesap BilgileriİşlemlerEkleİçerik EkleBuraya Ekle:Üye EkleGrup EkleYeni kullanıcı ekle:Yeni alarm ekleEş ekleYer imlerine ekleKullanıcı ekle"%s" sisteme eklendi, fakat ek giriş bilgileri eklenemedi: %s."%s" sisteme eklendi. Giriş yapabilirsiniz.Kullanıcı ekleme devre dışı.AdresAdres DefteriYönetimAlarm sonuAlarm yöntemiAlarm başlangıcıAlarm metniAlarm başlığıAlarmlarTümüOturum açmış tüm kullanıcılarİkincil IMSP Girişiİkincil IMSP Şifresiİkincil IMSP Kullanıcı Adıİkinci eposta adresiDosyaları listelerken hata oluştu: %sDosyaları sayarken hata oluştu: %sCevapAlanın herhangi bir kısmıUygulamaUygulama Bağlamı: Uygulama ListesiUygulama Hazır.Uygulama güncel.OnaylaArapça (Windows-1256)'%s'i silmek istediğinizden emin misiniz?Seçilen Yer imlerini silmekten emin misiniz?"%s" için kayıt olma talebi iptal edilecek. Emin misiniz?"%s" i silmek istediğinize emin misiniz?Ermenice (ARMSCII-8)SanatArtan (A' dan Z' ye)Ascii SanatıEn az bir veritabanı şeması güncel değil.EkVar olmayan bir grubu silme girişimi.Var olmayan bir izni silme girişimi.Var olmayan bir grubu düzenleme girişimi.Varolmayan bir paylaşımı silmeye çalışıyorsunuz.Yetkilendirilen:zurBOFH AçıklamalarıKötü Geçiş yoluKötü İstekBaltık (ISO-8859-13)BarbiTemel grafik dizini "%s" bulunamadı.Blok AyarlarıBlok TipiMavi AyMavi ve BeyazYer imi eklendiYer İmleriYer imleri kaynağıHer İkisiKahverengiGözatTarayıcıKırmızımsı SarıTakvimKamuflajİptalSorun Raporunu İptal EtSilmeyi iptal etOtomatik olarak şifre sıfırlanamadı, sistem yönetisi ile görüşünüz.Kategoriler ve EtiketlerKeltik (ISO-8859-14)Orta Avrupa (ISO-8859-2)DeğiştirKonumu DeğiştirŞifre DeğiştirmeKişisel bilgileri değiştirGeçerli yapılandırma, şifre değiştirmeyi desteklemiyor. Lütfen sistem yöneticiniz ile temasa geçiniz.İşaretleYeni sürümü kontrol etKontrol ediyorBasitleştirilmiş Çince (GB2312)Geleneksel Çince (Big5)%s seçTarih biçimini seçin (kısaltılmış gösterim):Tarih biçimini seçin (uzun gösterim):Zaman biçimini seçin:Sorguyu temizleKullanıcıyı temizle: %sKullanıcı temizleKullanıcı verisini temizleSeçili adres defterlerinizden birine tıklayın ve aramak için tüm alanları seçin.Devam etmek için tıklayınTıklamalarİstemci ÇapasıKapatPencereyi KapatBulutlarDaraltRenk SeçiciBirleştirKomutKomut KabuğuYorum: %dTamamıyla çakıştıTamamıyla genişletildiBilgisayarlarDurumKoşullarYapılandırmaYapılandırma FarklarıPDAs, Smartphones ve Outlook ile eşleme yapılandırmasıYapılandırma güncel değil.Yapılandırma yükseltme betikleri bulunduYapılandır:%sSilmeyi OnaylaParaloyı DoğrulaKarışıklıkDevamBu dosyaya erişimi kontrol edinÇerezKopyalanan Yer imi: KopyalaDosya kopyalama desteklenmiyor.Peygamber ÇiçeğiSunucu "%s"'e FTP kullanılarak bağlanılamadı: %sSunucuyla iletişime geçilemedi. Lütfen tekrar deneyin. "%s" yapılandırma yükseltme betiği silinemedi.İstenen kullancı için şifre sıfırlanamadı. Bazı ayrıntılar doğru değil. Yeniden deneyin yada daha fazla yardım için sistem yöneticinizle görüşün.Yapılandırma geri döndürülemedi..Yedek bir yapılandırma kaydedilemedi: %s "%s" yapılandırma yükseltme betiği kaydfedilemedi.Yedek yapılandırma dosyası %s kaydedilemedi.Yapılandırma dosyası %s kaydedilemedi. Bu durumda, kodu tekrar %s içine kaydetmek yada takip eden kodu el ile %s içine kopyalamak, seçeneklerini kullanabilirsiniz."%s" için yapılandırma yazılamadı: %sÜlkeYaratYeni Kimlik YaratOluşturulduŞu Andaki 4 EvreŞu Andaki AlarmlarŞu Andaki KilitlemelerŞu Andaki OturumlarŞu Andaki ZamanŞu Andaki Hava DurumuŞu Andaki Şartlar:Kiril (Windows-1251)Kiril (Windows-1251)Kiril/Ukrayna (KOI8-U)Veritabanı erişimi henüz yapılandırılmadı.Veritabanı şeması güncel değil.Veritabanı şeması hazır.GGDNS hatası ya da başka bir hata(%s)VeriVeri AğacıVeri Ağacı GezginiVeritabanıTarihGeliş TarihiTarih: %s; zaman: %sGünvarsayılanvarsayılan RenkVarsayılan KabukEposta gönderilirken kullanılacak varsayılan karakter seti:Konum-bildirim özellikleri için kullanılacak varsayılan konum.TanımlarSilSil: "%s"Tüm SyncML Eşleme Verisini SilYer imini sil Grup SilBu dosyayı silYer imini sil: Yapılandırma yükseltme betiği "%s" sil.Dosyayı sil: Aygıt "%s" ve veritabanı "%s" için oturum eşlemeyi sil. "%s" dosyasını silAzalan (9' dan 1' e)Sorunu TanımlayınAçıklamaGelişimAygıtDevredışı bırak24 saatlik zaman mı gösterilsin?Görüntüleme SeçenekleriSeçenekleri GösterSatırları görüntüleDetaylı tahmini görüntüleHava tahminini görüntüle (TAF)İlk satır alan adlarını içeriyor mu? Evet ise bu kutuyu seçin:Hesabınız yok mu? Kayıt olun.%s indirİnenler DosyasıOluşturulan yapılandırmayı PHP betiği olarak indir."Yer imlerine ekle" bağlantıyı "Yer imleri" Çubuğu altına sürükleyerek ekle"Yer imlerine ekle" Kişisel araç çubuğu "'na bağlantıyı sürükleyerek ekle İlaçlarDinamikE karakterleriAB KDV tanımlamasıDüzenleDüzenle "%s"Yer imini düzenleYer imini düzenleİzinleri Düzenle'%s' için izinleri düzenleSeçenekleri düzenle:İzin Değiştirme"%s" için izinleri düzenleEğitimElektronik Posta AdresiBitiş ZamanıYeni kategori için bir isim girin:Eşleme oturumu silinirken hata:Eşleme oturumları silinirken hata:Şifre güncellenirken hata : %sEtnikEtkinlik Daveti:Her 15 dakikaHer 2 dakikaHer 30 saniyeHer 5 dakikaHer yarım saatHer saatHer dakikaÖrnek değerler:ÇalıştırGenişletBeklenti BaşarısızYer imlerini dışa aktarÇok BüyükUçuk YeşilBeslemeBesleme AdresiHissediliyorArama AlanlarıDosya Yöneticisiİçe aktarılacak dosya:SüzgeçSüzgeçlerFirefox/Mozillaİlk Yarıİlk Çeyrekİlk seviye gösterildiDizinDosya İşlemleriDosya adları boş girilmemeliİçe aktarılacak dosya:YemekYasakTahmin (TAF)Tahmin Günleri (Not: Geri dönülecekler hem gün hem gece olarak dönülecek; )büyük bir sayı geniş bir öbekle sonuçlanacaktır)Şifrenizi mi unuttunuz?FormlarDeyişDeyiş türüDeyişlerDeyişler 2ForumlarBulundu%s'den %s %s deTam BetimlemeDolunayAçık AdGeçit yolu zaman aşımı%s Yapılandırmasını OluşturOluşturulan KodDaha FazlaGenel SeçeneklerGitGoedelGönderildiGoogle AramaYunanca (ISO-8859-7)YeşilGriGrup YönetimiGrup AdıGrup yaratılamadı: %s.GruplarKonuk İzinleriHTTP-DurumuHTTP-Versiyonu desteklenmiyorİbranice (ISO-8859-8-I)YükseklikYardımYardım _BaşlıklarıYarıküreDosyanın başlangıcı: Yüksek KontrastGelişmiş Seçenekleri GizleSonuçları GizleKenar Çubuğunu GizleEn çok oy alanEn çok oy alan Yer imi Ev DiziniHordeHorde WebsitesiKaç alan (kolon) var?Yeni makale kontrolleri arası kaç saniye olsun?NemMizahçılarI karakterleriSadece Simgeler%s için simgelerMetin ile birlikte simgelerFikirlerKimliğin adı:(İçeri) AktarYer imlerini içe aktarİçeri Aktar, Adım %dİçeri aktarılan alan: %sİçeri aktarılan alanlar:Aşağıdaki listeden, solda kaynak dosyadaki alanı ve sağda bununla eşleşen adres defteri alanını seçiniz. Daha sonra "İkili Ekle" butonuna tıklayarak, ikilileri içeri taşımak için işaretleyiniz. Bitirince "Devam" butonuna tıklayınız.Alt dosyaları da içerYanlış kullanıcı adı veya öteki adres.Yeniden deneyin veya daha fazla yardım için yöneticinizle görüşün.Bireysel KullanıcılarBilgiMiras ÜyeliklerYerel sunucu hatasıInternet ExplorerInternet Explorer kullanıcıları kendi favorileri yer imlerini aktarmaları için "Dosya" menusünden "Aktar" seçeneğini seçmeliler.Geçersiz KDV tanımlama numarası biçimi.geçersiz işlem %sGeçersiz uygulama.Geçersiz üst izin.Japonca (ISO-2022-JP)Sadece şimdi...Çekirdek AcemileriAnahtar KelimeÇocuklarKolabKorece (euc-KR)DilGenişSon DördünSon Şifre DeğişimiŞişkin AySon Eşleşme ZamanıSon Güncelleme:Son Giriş: %sSon Giriş: %s zamanında %s üzerinden yapıldı.Son giriş: Daha önce giriş yapılmadı.En sonLavantaYasaUzunluk gerekliAçık MaviBeğenNükteli ŞiirLinux ÇereziÇizelgeleri ListeleAlarm listeleme başarısız oldu: %sKilit listeleme başarısız oldu: %sOturum listeleme başarısız oldu: %sKullanıcı listeleme seçilemez kılındı.EdebiyatYükleniyor...Yerel zaman: %s %sKonum ve ZamanKunumKullanıcıyı KilitleKilitlerOturum AçOturumu KapatGiriş başarısız: Kullanıcı adı yada parola yanlışGiriş başarısız.AşkLoyolaLoyola MaviAABüyüPostaPosta YöneticisiÖğeleri etiketleyeceğiniz kategori listesini ve kategorileri ilişkilendireceğiniz renkleri yönetin.ActıceSync aygıtlarınızı yönetin.EşleşenEşleşen alanlar:Son 24 saatteki en yüksek sıcaklık: Son 6 saatteki en yüksek sıcaklık: Maksimum Yer imi sayısıEn Fazla Dizin SayısıEn Fazla Portal Bloğu SayısıEn Fazla Girdi SayısıTıpOrtaÜyelerMenü listesiMenü Modu:Hava RaporuMethod'a izin verilmediMetrikSon 24 saatteki en düşük sıcaklık: Son 6 saatteki en düşük sıcaklık: ÇeşitliYapılandırma yok.Taşınabilir cihazTaşınabilir cihaz (Akıllı Telefon)ModPazartesiAy EvreleriEn çok tıklananEn çok tıklanan Yer imleriTaşıTamamen TaşındıTaşınan Yer imi: Taşınan dosya: MozillaMozilla-Fİrefox kullanıcıları kendi yer imlerini aktarmaları için "Yer imi yöneticisi ile" "" Araçlar menüsünden "Export"-Menüsüseçilmelidir.Çoklu SeçimlerHesabımHesap BilgilerimPortalımPortal DüzenimKabul etmiyorumAdNeXTAslaYeni Yer imiYeni KategoriYeni DizinYeni İletiler:Yeni AyYeni Kullanıcı Adı (Seçimli)Yeni DosyaYeni şifreYeni şifre eşleşmedi.HaberlerSonrakiSonraki 4 EvreHayırHiçbir Yer imi bulunamadıİçerik YokSes YokFarkların gösterilebileceği kullanılabilir yapılandırma verisi yok.Gösterilecek Yer imi yokDeğişiklik YokHiçbir simge bulunamadı.Hiçbir yer belirtilmedi.Saldırgan deyiş kullanmaÜye olmak için bekleyen yok.Henüz kararlı bir sürüm yok.Özgün yapılandırmada sürüm bulunamadı.Yapılandırmayı tekrar üretin.Özgün yapılandırmanızda sürüm bulunamadı.Yapılandırmayı tekrar üretin.Yetkisiz BilgiHiçbiriKuzey Avrupalı (ISO-8859-10)Kuzey YarımküreKabul edilebilir DeğilBulunamadıYerine getirilemediDeğişiklik yapılamadıSağlanmamışNot:NotlarGöz atılacak birşey yok, geri dönün.Düzenlenecek birşey yok.Görüntülenecek makale sayısıGösterilecel Yer imi sayısıYenileme sıklığı (saniye)O karakterleriTamamVEYANesne YaratıcısıSaldırganlık süzgeciOfisEski Horde WebsitesiEski ve yeni şifreler farklı olmalı.Eski şifreEski şifre doğru değil.Internet Explorer'ın yeni versiyonlarında %s://%s, güvenilen alanlara eklemelidir.Sadece saldırgan deyişlerYalnızca paylaşımın sahibi ya da sistem yöneticisi, paylaşım için sahiplik hakları ve izinlerini değiştirebilirBağlantılar yeni bir pencerede açılsın mı?İşletim SistemiYada bir kullanıcı adı girin:DüzenlemeDiğerDiğer BilgilerDiğer SeçeneklerDiğer karakterlerSahipSahip:PHPPHP KoduPHP KabuğuPOSIX eklentisi yokP_HP KabuğuKısmi İçerikŞifreŞifre başarı ile değiştirildi.Şifre:Şifreler eşleşmek zorundadır.Yapıştırödeneme GerekiyorBekleyen Üyelikler:İnsanlarGiriş Görevlerini Uygula "%s" izni silinmedi.İzinlerİzin YönetimiKişisel BilgilerEvcil HayvanlarFotoğraflarBeylik SözlerLütfen yeni posta kutusu için bir ad girin:Lütfen bir parola giriniz.Lütfen bir kullanıcı adı giriniz.Lütfen sorunun bir özetini yapın.Lütfen aşağıdaki metni okuyunuz. Sistemi kullanma şartlarını KABUL ETMELİSİNİZ.PolitikaPostnukeSon %d saat için yağış: Yağış%solasılığıönkoşul BaşarısızBasınç:Deniz seviyesindeki basınç:Sorun TanımlamasıVekil Sunucu Yetkilendirmesi GerekiyorMor HordeSorguKotaRastgele DeyişBeğenilmeOkumaOkuma etkin"%s" ve tüm Yer imleri silinsin mi?"%s" gerçekten silinsin mi? Bu işlem geri döndürülemez.Gerçekten "%s" için kullanıcı verilerinin silinmesini istiyor musunuz? Bu işlemin geri dönüşü yoktur.Dinamik Menü Öğelerini Yenile:Portal Görünümünü Yenile:Yenileme sıklığıAçıklamalarUzaktaki Sunucu:Uzaktaki URL (http://www.example.com/webmail):SilIkiliyi SilKaydedilmiş betiği sunucunu geçici dizininden sil.Kullanıcı SilKullanıcıyı sil: %sDosyayı yeniden adlandırYanıtlaRaporlarİstek çok büyük.İstek zaman aşımına uğradıİstenilen URI çok büyükİstek sınırları tatminkar değilSıfırlaYeniden başlatma içeriğiŞifreyi SıfırlaŞifrenizi SıfırlayınSon Sorguyu Geri AlSonuçlar%s için sonuçlarAna Ekrana Geri DönYeni şifreyi tekrar yazınızYapılandırmayı Geri DöndürBilmecelerÇalıştırGiriş Görevlerini UygulaSQL KabuğuS_QL KabuğuKaydetSakla: "%s"Kaydet ve SonlandırOluşturulan yapılandırmayı PHP betiği olarak sunucunun geçici dizinine kaydet.Yapılandırma yükseltme betiği kaydedildi: "%s".BilimKapsamA_raAramaYer imlerini araArama Sonuçları (%s)Ara:Diğerlerini de görHepsini seçHepsini seç/Hiçbirini seçmeHiçbirini seçmeEklenecek grubu seçin:Bir sahip seçin:Bir sunucu seçinEklenecek kullanıcıyı seçinAdresleri genişletirken tüm alanları aramak için seçİstediğniz karakterleri aşağıdaki kutulardan seçin. Daha sonra metin alanından kopyalayıp yapıştırabilirsiniz.Tarih ve zaman biçimini seçin:Tarih sınırlayıcısını seçın:Tarih biçimini seçin:Gün ve zaman sırasını seçin:Saat sınırlayıcısını seçin:Saat biçimini seçin:Renk düzeninizi seçin.Tercih ettiğiniz dili seçin:Seç: %s, %sSorun Raporu GönderAlgılayıcı:Sunucu SaatiServis Erişilebilir DeğilOturum YöneticisiOturum Zaman Bilgisi:OturumYer imi listesininin nasıl gösterileceğini ve bağlantıların nasıl açılacağınıayarlaTercih ettiğiniz dili, zaman dilimini ve tarih özelliklerini ayarlayın.Başlangıç uygulamanızı, renk düzeninizi, sayfa tazeleme, ve diğer görüntü seçeneklerini belirleyin.Kısa ÖzetÇoğu bağlantı için erişim anahtarı tanımlansın mı?Sisteme giriş yapıldığında Yer imleri dosyalarınız açık olsun mu? GösterGelişmiş Seçenekleri GösterKenar Çubuğunu GösterHalen kayıtlı olan yapılandırma ile yeni yaratılan yapılandırma arasındaki farkları göster.Ek detay gösterilsin mi?Dosya işlemleri paneli gösterilsin mi?Girişte en son giriş tarihi gösterilsin mi?Bildirimleri Göster%s Menüsü solda gösterilsin mi?Giriş Görevlerini AtlaKüçükKar Derinliği: Yağan karın su eşiti: Şarkılar & ŞiirlerYer imlerini sırala:ile SıralaSıralama Yönü:Güney Avrupa (ISO-8859-3)Güney Yarımküreİstenmeyen İletiÖzel Karakter GirişiSporlarStandartUzay YoluBaşlangıç ZamanıDurumAltdizin "%s" bulunamadı."%s" yi sisteme ekleme talebiniz alındı. Talep onaylanana kadar sisteme giriş yapamazsınız.Başarı"%s" başarıyla sisteme eklendi."%s" kullanıcısının bilgileri başarıyla sistemden temizlendi."%s" başarıyla silindi."%s" başarıyla sistemden kaldırıldı.Yapılandırma başarıyla geri döndürüldü. Değişiklikleri görmek için yeniden yükleyin.Yedek yapılandırma başarıyla kaydedildi.Yedek yapılandırma dosyası %s başarıyla kaydedildi."%s" başarıyla güncellendi%s başarıyla yazıldı.Gün DoğumuGün batımıPazarGün doğumuGün doğumu/Gün batımıGün batımıYönlendirme ProtokolleriSyncMLOrtak BeslemeEtiket BulutuTango MavisiGörevlerÖrdekSon saat için sıcaklık: SıcaklıkSıcaklık%s(%sYük%s/%sAlç%s)TaslakGeçici YönlendirmeMetin AlanıSadece MetinTai (TIS-620)Alarm silindi.Alarm kaydedildi.Bu kimlikle kullanılacak varsayılan eposta adresi:Üye ülke hizmetine ulaşılamadı. Daha sonra ya da farklı bir üye seçerek tekrar deneyiniz.Üye ülke hizmeti şuanda kullanılabilir değil. Daha sonra ya da farklı bir üye seçerek tekrar deneyiniz.Belirtilen ülke kodu geçersiz."%s" sunucusu silindi."%s" sunucusu kaydedildi.Hizmet şu anda kullanılabilir değil. Daha sonra tekrar deneyin.Hizmet şu anda çok yoğun. Lütfen daha sonra tekrar deneyin."%s" için kayıt talebi iptal edildi."%s" kullanıcısı için kayıt talebi iptal edildi.Test betikleri aktif. Güvenlik nedenlerinden dolayı, test betiklerini kapatın (bkz: horde/docs/INSTALL)"%s" kullanıcısı zaten var."%s" bulunamadı.Tema dizini "%s" bulunamadı.Bu dosyada hiç yer imi yok"%s"'in sisteme eklenmesinde sorun oluştu: %s"%s" kullanıcının verilerinin sistemden silinmesinde sorun var: Yer imi kopyalanmasında sorun oluştu: %sYer imi silinmesinde sorun oluştu: %sDosya silinmesinde sorun oluştu: %sYer imi taşınmasında sorun oluştu: %sDosya taşınmasında sorun oluştu: %s"%s" kullanıcısını sistemden çıkartılmasında sorun var: "%s" güncellenirken sorun oluştu: %sYer imi eklenmesinde sorun oluştu: %sDosya eklenmesinde sorun oluştu: %s.Yer imi kaydedilirken sorun oluştu: %sDosya kaydedilirken sorun oluştu: %sBu KDV numarası geçersiz.Bu KDV numarası geçerli.BiletlerZaman İzlemeZaman BiçimiZaman bilgisi ya da bilinmiyorBaşlıkWeb tarayıcınıza kolaylıkla Yer imi eklemek için:Dışarıdan taşınan veridenki bir alanı tipini almamak için ya da hatalı bir eşlemeyi düzeltmek için, aşağıdaki listeden bir alan seçerek "İkili sil".a tıklayınız.Çoklu seçim yapmak için Ctrl (PC) yada Command (Mac) tuşuna basarak seçiniz.BugünYarınToplamGelenekselÇevirilerTürkçe (ISO-8859-9)U karakterleriURL"%s" silinemedi: %sYetkisizDeğişiklikleri Geri AlDoldurulmamışUnicode (UTF-8)BirimlerBilinmeyen (%s)Kilidi kaldırDesteklenmeyen Medya TürüGüncelleGüncelle: %sGüncelle: %s şemasıTüm veritabanı şemalarını güncelleTüm yapılandırmaları güncelleKullanıcıyı güncelle"%s" Güncellendi.%s Güncellendi.%s şeması güncellendi.YükleVekil sunucu kullanKullanıcı adınız/şifreniz IMSP sunucu için farklı ise kullanın.KullanıcıKullanıcı YönetimiKullanıcı AdıKullanıcı KaydıKullanıcı kaydı bu site için devredışı bırakıldı.Kullanıcı kaydı bu dite için yapılandırılmamış.Kullanıcı hesabı bulunamadıEklenecek kullanıcı:Kullanıcı AdıKullanıcı Adı:KullanıcılarSistemdeki kullanıcılar:KDV numarası doğrulamaKDV numarası:KDV numarasıSürüm KontrolSürüm KontrolVietnamca (VISCII)Bir dış web sayfası görüntüleGörünürlükUyarıHava DurumuHava verisi sağlayıcısıWeb SitesiHoşgeldinizHoşgeldiniz, %sBatı (ISO-8859-1)Batı (ISO-8859-15)%s girişten sonra hangi uygulamayı görüntülesin?Şu anda ne yapıyorsunuz?Sınırlayıcı karakter nedir?Aktarım karakteri nedir?Ne düşünüyorsunuz?Haftanın ilk günü olarak hangi gün görüntülensin?Hangi EvreInternet'de Gezinirken kullnılan sayfayı Yer imlerine eklemek için "Yeni Yer imi ekle" kısayolunu tıklayabilirsinizTüm AlanlarSoldaki %s menüsü genişliği:WikiRüzgarRüzgar Hızı (knot)Rüzgar:BilgelikİşX-RefYYEvetEvet, Kabul EdiyorumGrup ekleme izniniz yok.Paylaşım ekleme izniniz yok.Grupları değiştirme izniniz yok.Paylaşımları değiştirme izniniz yok.%d 'den fazla Yer imi yaratma izniniz yok .%d'den fazla dizin yaratmanıza izin verilmiyor.Grupları silme izniniz yok.Paylaşımları silme izniniz yok.Paylaşım gruplarını listeleme izniniz yok.Paylaşım izinlerini listeleme izniniz yok.Paylaşımları listeleme izniniz yok.Grup kullanıcılarını listeleme izniniz yok.Paylaşım kullanıcılarını listeleme izniniz yok.Kullanım Şartlarını kabul etmediğini için sisteme girişinize izin verilmemektedir.Bu dosyayı görme izniniz yok.Çıkış yaptınız.Talep edilen izin reddedildi.Problem raporu göndermeden önce sorunu açıklamalısınız.öncelikle bir hedef dosya seçmelisinizSilinmesi için bir sunucu seçmelisiniz.Temizlenmesi için bir kullanıcı adı belirtmelisiniz.Silinmesi için bir kullanıcı adı belirtmelisiniz.Eklenmesi için bir kullanıcı adı belirtmelisiniz.Güncellenmesi için bir kullanıcı adı belirtmelisiniz.Eposta AdresinizBilgilerinizIP adresiniz oturumun başlangıcından sonra değişti. Güvenliğinizi sağlamak için, tekrar giriş yapmalısınız.AdınızYetkilendirme arka aracınız, kullanıcı eklemeyi desteklemiyor. Horde'un kullanıcı hesaplarını yönetmesini istiyorsanız, farklı bir yetkilendirme arka aracı kullanmalısınız.Kimlik denetiminiz kullanıcı listelemeyi desteklememektedir veya bu özellik bir neden yüzünden seçilemez kılınmıştır.Tarayıcınız oturumun başlangıcından sonra değişti. Güvenliğinizi sağlamak için, tekrar giriş yapnalısınız.Tarayıcınız bu özelliği desteklememektedir.Zaman Diliminiz:Tam Adınız:Giriş işleminiz engellendi.Girişiniz zaman aşımına uğradı.%s için yeni şifreniz: %sŞifreniz sıfırlandı.Şifreniz sıfırlandı, fakat size gönderilemedi. Lütfen sistem yöneticinizle iletişime geçiniz.Şifreniz sıfırlandı, elektronik postanızı kontol edin ve yeni şifrenizle giriş yapın.Şifrenizin son kullanma tarihi dolduŞifrenizin son kullanma tarihi doldu.Uzaktaki sunucularınız:Oturumunuz zaman aşımına uğradı. Lütfen tekrar giriş yapın.Hızlı[Problem Raporu][Hiçbiri]_Alarmlar_Gözat_CLI_Yapılandırma_VeriAğacıYer imlerini _Sil Yer imlerini _Düzenle_Gruplar_Evİçeri/_Dışarı Aktar_Kilitler_Yeni Yer imi_İzinler_Raporlar_AramaK_ullanıcılarEkılımlıTıklaTıklama%s (%s) den %s %s defırtınaMetne gömülüseçeneklerfarkları gösterşifreyi doğrulamak için iki defa girinbirleştirilmişhava durumutrean-1.0.3/locale/tr/LC_MESSAGES/trean.po0000664000175000017500000004774112171337643016076 0ustar janjan# Turkish translations for Trean package # Yer İmleri paketi için Türkçe çeviriler. # Copyright 2008-2013 Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Trean package. # horde-tr at metu.edu.tr, 2008. # msgid "" msgstr "" "Project-Id-Version: Trean 1.0-cvs\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2008-04-15 12:57+0300\n" "PO-Revision-Date: 2008-04-15 12:57+0300\n" "Last-Translator: Onur Koşar\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=1; plural=0;\n" #: edit.php:237 #, php-format msgid "\"%s\" was not renamed: %s." msgstr "\"%s\" tekrar adlandırılamadı: %s." #: data.php:156 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "%d Klasörleri %d Yerimleri içe aktarıldı." #: templates/star_rating_helper.php:21 templates/star_rating_helper.php:22 #: templates/star_rating_helper.php:23 templates/star_rating_helper.php:24 #, php-format msgid "%d stars out of 5" msgstr "yıldızlar 5 üzerinden %d " #: templates/reports.php:104 #, php-format msgid "%s Bookmarks" msgstr "%s Yer imleri" #: reports.php:25 #, php-format msgid "%s Response Codes" msgstr "%s yanıt kodu" #: lib/base.php:78 #, php-format msgid "%s's Bookmarks" msgstr "%s'ın yer imleri" #: lib/Block/highestrated.php:38 lib/Block/mostclicked.php:38 #: lib/Block/bookmarks.php:63 msgid "1 Line" msgstr "1 çizgi" #: templates/star_rating_helper.php:20 msgid "1 star out of 5" msgstr "5 üzerinden 1 yıldız" #: lib/Block/highestrated.php:30 lib/Block/mostclicked.php:30 #: lib/Block/bookmarks.php:55 msgid "10 rows" msgstr "10 satır" #: lib/Block/highestrated.php:31 lib/Block/mostclicked.php:31 #: lib/Block/bookmarks.php:56 msgid "15 rows" msgstr "15 satır" #: templates/reports.php:36 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx Yanıt Kodları (%s)" #: lib/Block/highestrated.php:37 lib/Block/mostclicked.php:37 #: lib/Block/bookmarks.php:62 msgid "2 Line" msgstr "2 Çizgi" #: lib/Block/highestrated.php:32 lib/Block/mostclicked.php:32 #: lib/Block/bookmarks.php:57 msgid "25 rows" msgstr "25 satır" #: templates/reports.php:42 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx Yanıt Kodları (%s)" #: lib/Block/highestrated.php:36 lib/Block/mostclicked.php:36 #: lib/Block/bookmarks.php:61 msgid "3 Line" msgstr "3 Çizgi" #: templates/reports.php:53 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx Yanıt Kodları (%s)" #: templates/reports.php:64 #, php-format msgid "4xx Response Codes (%s)" msgstr "4xx Yanıt Kodları (%s)" #: templates/reports.php:86 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx Yanıt Kodları (%s)" #: lib/Forms/Search.php:24 msgid "AND" msgstr "VE" #: lib/Trean.php:176 msgid "Accepted" msgstr "Onaylandı" #: templates/add/add.inc:59 lib/Block/tree_menu.php:24 msgid "Add" msgstr "Ekle" #: templates/add/add.inc:87 msgid "Add to Bookmarks" msgstr "Yer imlerine ekle" #: templates/search.php:65 msgid "All" msgstr "Tümü" #: data.php:39 perms.php:239 lib/Block/bookmarks.php:32 #, php-format msgid "An error occured listing folders: %s" msgstr "Dosyaları listelerken hata oluştu: %s" #: lib/Trean.php:49 #, php-format msgid "An error occurred counting folders: %s" msgstr "Dosyaları sayarken hata oluştu: %s" #: lib/Forms/Search.php:25 msgid "Any Part of the field" msgstr "Alanın herhangi bir kısmı" #: templates/search.php:29 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "Seçilen Yer imlerini silmekten emin misiniz?" #: config/prefs.php.dist:33 msgid "Ascending (A to Z)" msgstr "Artan (A' dan Z' ye)" #: perms.php:44 msgid "Attempt to edit a non-existent share." msgstr "Varolmayan bir paylaşımı silmeye çalışıyorsunuz." #: lib/Trean.php:208 msgid "Bad Gateway" msgstr "Kötü Geçiş yolu" #: lib/Trean.php:188 msgid "Bad Request" msgstr "Kötü İstek" #: add.php:66 msgid "Bookmark Added" msgstr "Yer imi eklendi" #: data.php:18 lib/Block/bookmarks.php:3 lib/Block/bookmarks.php:81 msgid "Bookmarks" msgstr "Yer İmleri" #: templates/common-header.inc:27 msgid "Bookmarks Feed" msgstr "Yer imleri kaynağı" #: browse.php:37 msgid "Browse" msgstr "Gözat" #: templates/edit/footer.inc:2 templates/add/add.inc:60 msgid "Cancel" msgstr "İptal" #: templates/views/BookmarkList.php:28 msgid "Clicks" msgstr "Tıklamalar" #: templates/add/add.inc:82 msgid "Close" msgstr "Kapat" #: lib/Forms/Search.php:24 msgid "Combine" msgstr "Birleştir" #: config/prefs.php.dist:63 msgid "Completely collapsed" msgstr "Tamamıyla çakıştı" #: config/prefs.php.dist:65 msgid "Completely expanded" msgstr "Tamamıyla genişletildi" #: edit.php:247 msgid "Confirm Deletion" msgstr "Silmeyi Onayla" #: lib/Trean.php:197 msgid "Conflict" msgstr "Karışıklık" #: lib/Trean.php:172 msgid "Continue" msgstr "Devam" #: templates/browse.php:105 templates/browse.php:106 msgid "Control access to this folder" msgstr "Bu dosyaya erişimi kontrol edin" #: edit.php:214 msgid "Copied bookmark: " msgstr "Kopyalanan Yer imi: " #: templates/search.php:72 msgid "Copy" msgstr "Kopyala" #: edit.php:222 #, php-format msgid "Copying folders is not supported." msgstr "Dosya kopyalama desteklenmiyor." #: lib/Trean.php:175 msgid "Created" msgstr "Oluşturuldu" #: templates/reports.php:96 #, php-format msgid "DNS Failure or Other Error (%s)" msgstr "DNS hatası ya da başka bir hata(%s)" #: templates/browse.php:90 templates/search.php:70 msgid "Delete" msgstr "Sil" #: templates/browse.php:160 msgid "Delete Bookmark" msgstr "Yer imini sil " #: templates/browse.php:91 msgid "Delete this folder" msgstr "Bu dosyayı sil" #: edit.php:51 edit.php:110 msgid "Deleted bookmark: " msgstr "Yer imini sil: " #: edit.php:123 msgid "Deleted folder: " msgstr "Dosyayı sil: " #: edit.php:269 #, php-format msgid "Deleted the folder \"%s\"" msgstr " \"%s\" dosyasını sil" #: config/prefs.php.dist:34 msgid "Descending (9 to 1)" msgstr "Azalan (9' dan 1' e)" #: templates/edit/bookmark.inc:15 templates/add/add.inc:42 #: lib/Forms/Search.php:22 msgid "Description" msgstr "Açıklama" #: config/prefs.php.dist:10 msgid "Display Options" msgstr "Görüntüleme Seçenekleri" #: lib/Block/bookmarks.php:52 msgid "Display Rows" msgstr "Satırları görüntüle" #: templates/data/export.inc:11 msgid "Download Folder" msgstr "İnenler Dosyası" #: templates/add/add.inc:73 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" "\"Yer imlerine ekle\" bağlantıyı \"Yer imleri\" Çubuğu altına sürükleyerek " "ekle" #: templates/add/add.inc:71 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" "\"Yer imlerine ekle\" Kişisel araç çubuğu \"'na bağlantıyı sürükleyerek ekle " #: templates/search.php:69 msgid "Edit" msgstr "Düzenle" #: edit.php:287 msgid "Edit Bookmark" msgstr "Yer imini düzenle" #: templates/browse.php:155 msgid "Edit Bookmarks" msgstr "Yer imini düzenle" #: perms.php:235 msgid "Edit Permissions" msgstr "İzinleri Düzenle" #: perms.php:242 #, php-format msgid "Edit Permissions for %s" msgstr "'%s' için izinleri düzenle" #: lib/Trean.php:205 msgid "Expectation Failed" msgstr "Beklenti Başarısız" #: templates/data/export.inc:4 msgid "Export Bookmarks" msgstr "Yer imlerini dışa aktar" #: templates/data/import.inc:9 msgid "File to import:" msgstr "İçe aktarılacak dosya:" #: templates/add/add.inc:70 msgid "Firefox/Mozilla" msgstr "Firefox/Mozilla" #: config/prefs.php.dist:64 msgid "First level shown" msgstr "İlk seviye gösterildi" #: templates/edit/bookmark.inc:25 templates/add/add.inc:47 #: templates/views/BookmarkList.php:26 lib/Block/bookmarks.php:42 msgid "Folder" msgstr "Dizin" #: templates/browse.php:70 templates/browse.php:71 msgid "Folder Actions" msgstr "Dosya İşlemleri" #: lib/Bookmarks.php:354 msgid "Folder names must be non-empty" msgstr "Dosya adları boş girilmemeli" #: templates/data/import.inc:11 msgid "Folder to import into:" msgstr "İçe aktarılacak dosya:" #: lib/Trean.php:191 msgid "Forbidden" msgstr "Yasak" #: lib/Trean.php:183 msgid "Found" msgstr "Bulundu" #: lib/Trean.php:210 msgid "Gateway Time-out" msgstr "Geçit yolu zaman aşımı" #: lib/Trean.php:198 msgid "Gone" msgstr "Gönderildi" #: reports.php:25 templates/reports.php:33 msgid "HTTP Status" msgstr "HTTP-Durumu" #: lib/Trean.php:211 msgid "HTTP Version not supported" msgstr "HTTP-Versiyonu desteklenmiyor" #: lib/Block/bookmarks.php:50 config/prefs.php.dist:22 msgid "Highest Rated" msgstr "En çok oy alan" #: lib/Block/highestrated.php:3 lib/Block/highestrated.php:49 msgid "Highest-rated Bookmarks" msgstr "En çok oy alan Yer imi " #: templates/data/import.inc:16 msgid "Import" msgstr "(İçeri) Aktar" #: data.php:184 templates/data/import.inc:4 msgid "Import Bookmarks" msgstr "Yer imlerini içe aktar" #: templates/data/export.inc:9 msgid "Include Subfolders" msgstr "Alt dosyaları da içer" #: lib/Trean.php:206 msgid "Internal Server Error" msgstr "Yerel sunucu hatası" #: templates/add/add.inc:72 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/data/import.inc:7 msgid "" "Internet Explorer users will need to export their current Favorites by going " "to the \"File\" menu and selecting \"Import and Export\"." msgstr "" "Internet Explorer kullanıcıları kendi favorileri yer imlerini aktarmaları " "için \"Dosya\" menusünden \"Aktar\" seçeneğini seçmeliler." #: lib/Trean.php:199 msgid "Length Required" msgstr "Uzunluk gerekli" #: lib/Forms/Search.php:25 msgid "Match" msgstr "Eşleşen" #: lib/api.php:93 msgid "Maximum Number of Bookmarks" msgstr "Maksimum Yer imi sayısı" #: lib/api.php:90 msgid "Maximum Number of Folders" msgstr "En Fazla Dizin Sayısı" #: lib/Block/tree_menu.php:3 msgid "Menu List" msgstr "Menü listesi" #: lib/Trean.php:193 msgid "Method Not Allowed" msgstr "Method'a izin verilmedi" #: lib/Block/bookmarks.php:51 config/prefs.php.dist:23 msgid "Most Clicked" msgstr "En çok tıklanan" #: lib/Block/mostclicked.php:3 lib/Block/mostclicked.php:49 msgid "Most-clicked Bookmarks" msgstr "En çok tıklanan Yer imleri" #: templates/search.php:71 msgid "Move" msgstr "Taşı" #: lib/Trean.php:182 msgid "Moved Permanently" msgstr "Tamamen Taşındı" #: edit.php:161 msgid "Moved bookmark: " msgstr "Taşınan Yer imi: " #: edit.php:174 msgid "Moved folder: " msgstr "Taşınan dosya: " #: templates/data/import.inc:6 msgid "" "Mozilla/Firefox users will need to export their current Bookmarks by going " "into \"Bookmark Manager\" and selecting \"Export\" from the \"Tools\" menu." msgstr "" "Mozilla-Fİrefox kullanıcıları kendi yer imlerini aktarmaları için \"Yer imi " "yöneticisi ile\" \"\" Araçlar menüsünden \"Export\"-Menüsüseçilmelidir." #: lib/Trean.php:181 msgid "Multiple Choices" msgstr "Çoklu Seçimler" #: templates/edit/folder.inc:9 msgid "Name" msgstr "Ad" #: add.php:113 templates/browse.php:150 templates/add/add.inc:27 msgid "New Bookmark" msgstr "Yeni Yer imi" #: lib/Trean.php:90 msgid "New Folder" msgstr "Yeni Dizin" #: templates/browse.php:80 msgid "New folder" msgstr "Yeni Dosya" #: templates/edit/delete_folder_confirmation.inc:15 msgid "No" msgstr "Hayır" #: templates/search.php:76 msgid "No Bookmarks found" msgstr "Hiçbir Yer imi bulunamadı" #: lib/Trean.php:178 msgid "No Content" msgstr "İçerik Yok" #: lib/Block/highestrated.php:73 lib/Block/mostclicked.php:73 #: lib/Block/bookmarks.php:128 msgid "No bookmarks to display" msgstr "Gösterilecek Yer imi yok" #: lib/Trean.php:177 msgid "Non-Authoritative Information" msgstr "Yetkisiz\tBilgi" #: templates/search.php:66 msgid "None" msgstr "Hiçbiri" #: lib/Trean.php:194 msgid "Not Acceptable" msgstr "Kabul edilebilir Değil" #: lib/Trean.php:192 msgid "Not Found" msgstr "Bulunamadı" #: lib/Trean.php:207 msgid "Not Implemented" msgstr "Yerine getirilemedi" #: lib/Trean.php:185 msgid "Not Modified" msgstr "Değişiklik yapılamadı" #: templates/add/add.inc:76 msgid "Note:" msgstr "Not:" #: edit.php:281 msgid "Nothing to edit." msgstr "Düzenlenecek birşey yok." #: lib/Block/highestrated.php:27 lib/Block/mostclicked.php:27 msgid "Number of bookmarks to show" msgstr "Gösterilecel Yer imi sayısı" #: lib/Trean.php:174 msgid "OK" msgstr "Tamam" #: lib/Forms/Search.php:24 msgid "OR" msgstr "VEYA" #: templates/add/add.inc:77 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "Internet Explorer'ın yeni versiyonlarında %s://%s, güvenilen alanlara " "eklemelidir." #: perms.php:56 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "" "Yalnızca paylaşımın sahibi ya da sistem yöneticisi, paylaşım için sahiplik " "hakları ve izinlerini değiştirebilir" #: config/prefs.php.dist:54 msgid "Open links in a new window?" msgstr "Bağlantılar yeni bir pencerede açılsın mı?" #: config/prefs.php.dist:9 msgid "Other Options" msgstr "Diğer Seçenekler" #: lib/Trean.php:180 msgid "Partial Content" msgstr "Kısmi İçerik" #: lib/Trean.php:190 msgid "Payment Required" msgstr "ödeneme Gerekiyor" #: templates/add/add.inc:4 msgid "Please enter a name for the new folder:" msgstr "Lütfen yeni posta kutusu için bir ad girin:" #: lib/Trean.php:200 msgid "Precondition Failed" msgstr "önkoşul Başarısız" #: lib/Trean.php:195 msgid "Proxy Authentication Required" msgstr "Vekil Sunucu Yetkilendirmesi Gerekiyor" #: templates/views/BookmarkList.php:27 msgid "Rating" msgstr "Beğenilme" #: templates/edit/delete_folder_confirmation.inc:3 #, php-format msgid "Really delete \"%s\" and all of its bookmarks?" msgstr "\"%s\" ve tüm Yer imleri silinsin mi?" #: templates/browse.php:98 msgid "Rename this folder" msgstr "Dosyayı yeniden adlandır" #: reports.php:18 msgid "Reports" msgstr "Raporlar" #: lib/Trean.php:201 msgid "Request Entity Too Large" msgstr "İstek çok büyük." #: lib/Trean.php:196 msgid "Request Time-out" msgstr "İstek zaman aşımına uğradı" #: lib/Trean.php:202 msgid "Request-URI Too Large" msgstr "İstenilen URI çok büyük" #: lib/Trean.php:204 msgid "Requested range not satisfiable" msgstr "İstek sınırları tatminkar değil" #: lib/Trean.php:179 msgid "Reset Content" msgstr "Yeniden başlatma içeriği" #: templates/edit/footer.inc:1 msgid "Save" msgstr "Kaydet" #: search.php:23 lib/Block/tree_menu.php:33 lib/Forms/Search.php:20 msgid "Search" msgstr "Arama" #: lib/Forms/Search.php:18 msgid "Search Bookmarks" msgstr "Yer imlerini ara" #: search.php:59 #, php-format msgid "Search Results (%s)" msgstr "Arama Sonuçları (%s)" #: lib/Trean.php:184 msgid "See Other" msgstr "Diğerlerini de gör" #: templates/search.php:65 msgid "Select All" msgstr "Hepsini seç" #: templates/views/BookmarkList.php:29 msgid "Select All/Select None" msgstr "Hepsini seç/Hiçbirini seçme" #: templates/search.php:66 msgid "Select None" msgstr "Hiçbirini seçme" #: templates/search.php:64 #, php-format msgid "Select: %s, %s" msgstr "Seç: %s, %s" #: lib/Trean.php:209 msgid "Service Unavailable" msgstr "Servis Erişilebilir Değil" #: config/prefs.php.dist:11 msgid "Set how to display bookmark listings and how to open links." msgstr "" "Yer imi listesininin nasıl gösterileceğini ve bağlantıların nasıl " "açılacağınıayarla" #: config/prefs.php.dist:66 msgid "Should your list of bookmark folders be open when you log in?" msgstr "Sisteme giriş yapıldığında Yer imleri dosyalarınız açık olsun mu? " #: config/prefs.php.dist:45 msgid "Show folder actions panel?" msgstr "Dosya işlemleri paneli gösterilsin mi?" #: config/prefs.php.dist:24 msgid "Sort bookmarks by:" msgstr "Yer imlerini sırala:" #: lib/Block/bookmarks.php:46 msgid "Sort by" msgstr "ile Sırala" #: config/prefs.php.dist:35 msgid "Sort direction:" msgstr "Sıralama Yönü:" #: lib/Trean.php:173 msgid "Switching Protocols" msgstr "Yönlendirme Protokolleri" #: lib/Block/highestrated.php:33 lib/Block/mostclicked.php:33 #: lib/Block/bookmarks.php:58 msgid "Template" msgstr "Taslak" #: lib/Trean.php:187 msgid "Temporary Redirect" msgstr "Geçici Yönlendirme" #: templates/browse.php:169 msgid "There are no bookmarks in this folder" msgstr "Bu dosyada hiç yer imi yok" #: edit.php:216 #, php-format msgid "There was a problem copying the bookmark: %s" msgstr "Yer imi kopyalanmasında sorun oluştu: %s" #: edit.php:53 edit.php:112 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "Yer imi silinmesinde sorun oluştu: %s" #: edit.php:125 #, php-format msgid "There was a problem deleting the folder: %s" msgstr "Dosya silinmesinde sorun oluştu: %s" #: edit.php:163 #, php-format msgid "There was a problem moving the bookmark: %s" msgstr "Yer imi taşınmasında sorun oluştu: %s" #: edit.php:176 #, php-format msgid "There was a problem moving the folder: %s" msgstr "Dosya taşınmasında sorun oluştu: %s" #: add.php:61 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "Yer imi eklenmesinde sorun oluştu: %s" #: edit.php:147 edit.php:201 add.php:45 add.php:102 #, php-format msgid "There was an error adding the folder: %s" msgstr "Dosya eklenmesinde sorun oluştu: %s." #: edit.php:74 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "Yer imi kaydedilirken sorun oluştu: %s" #: edit.php:87 #, php-format msgid "There was an error saving the folder: %s" msgstr "Dosya kaydedilirken sorun oluştu: %s" #: templates/edit/bookmark.inc:10 templates/add/add.inc:37 #: templates/views/BookmarkList.php:25 lib/Block/bookmarks.php:49 #: lib/Forms/Search.php:21 config/prefs.php.dist:21 msgid "Title" msgstr "Başlık" #: templates/add/add.inc:69 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "Web tarayıcınıza kolaylıkla Yer imi eklemek için:" #: templates/reports.php:103 msgid "Total" msgstr "Toplam" #: templates/edit/bookmark.inc:20 templates/add/add.inc:32 #: lib/Forms/Search.php:23 msgid "URL" msgstr "URL" #: lib/Trean.php:189 msgid "Unauthorized" msgstr "Yetkisiz" #: templates/reports.php:100 #, php-format msgid "Unknown (%s)" msgstr "Bilinmeyen (%s)" #: lib/Trean.php:203 msgid "Unsupported Media Type" msgstr "Desteklenmeyen Medya Türü" #: perms.php:228 #, php-format msgid "Updated %s." msgstr "%s Güncellendi." #: lib/Trean.php:186 msgid "Use Proxy" msgstr "Vekil sunucu kullan" #: templates/add/add.inc:74 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" "Internet'de Gezinirken kullnılan sayfayı Yer imlerine eklemek için \"Yeni " "Yer imi ekle\" kısayolunu tıklayabilirsiniz" #: lib/Forms/Search.php:25 msgid "Whole Field" msgstr "Tüm Alanlar" #: templates/edit/delete_folder_confirmation.inc:9 msgid "Yes" msgstr "Evet" #: data.php:65 data.php:132 add.php:23 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "%d 'den fazla Yer imi yaratma izniniz yok ." #: data.php:56 data.php:107 add.php:86 #, php-format msgid "You are not allowed to create more than %d folders." msgstr "%d'den fazla dizin yaratmanıza izin verilmiyor." #: browse.php:24 msgid "You do not have permission to view this folder." msgstr "Bu dosyayı görme izniniz yok." #: templates/add/add.inc:11 msgid "You must select a target folder first" msgstr "öncelikle bir hedef dosya seçmelisiniz" #: lib/Trean.php:149 msgid "_Browse" msgstr "_Gözat" #: templates/browse.php:161 msgid "_Delete Bookmarks" msgstr "Yer imlerini _Sil " #: templates/browse.php:156 msgid "_Edit Bookmarks" msgstr "Yer imlerini _Düzenle" #: lib/Trean.php:155 msgid "_Import/Export" msgstr "İçeri/_Dışarı Aktar" #: templates/browse.php:151 msgid "_New Bookmark" msgstr "_Yeni Yer imi" #: lib/Trean.php:151 msgid "_Reports" msgstr "_Raporlar" #: lib/Trean.php:150 msgid "_Search" msgstr "_Arama" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "click" msgstr "Tıkla" #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "clicks" msgstr "Tıklama" trean-1.0.3/locale/zh_TW/LC_MESSAGES/trean.mo0000644000175000017500000045074012171337643016474 0ustar janjanvCQ |д  )B"^-̵$)9S&m %qǶH9$  ѷ ݷ(.@ ITj }ĸJ Ygv & ?LSY`px ʺٺ 2C [ev .ܻ.2׼8 QC5Z˽W& ~   Ⱦо  % 8Ym~  ȿԿ/? O]$fN- Nh p },     '3:BJPT lw%"/G$V&{  !,@ Vbx %7#3[<8 ,06 GQ9e ',*%= cn u/7.U-t-=?-NB|%%@ BL%%3%*Pf)$%( 0; @ M Ye| '$+)4^ m x   !3 < IV^bz 5,>!k:"#3(\.sA!T$@y)  *2HQ` cnTEkd*AG`iou{!: @L _jz    &7 @M ^lt{    =%c %+(;T !# '.@E!U w !!;Yx!&.&+Ro&+3&2+Y8/ "C)V##()(Cl %(-0@q!!&H_&|*AD Ubj '6 GTd(xI jp/u %)2 :H Y)g   &64R "B ]k s~ /   #AI` p.}/ 5 >&LCs /<?D|  $ ) 3 > LWgx   %,Rj  {Mfx1'(*!5L+/ &:BKRYhy   ) :F Z-h58!!' Ij%#" !8= Y gtx   (  +5D T`|    $%Ji |(>D LY bmt}    "(/@Ziqy     &+@^DyIIR Yd is|   ,18!@b }   "  '? ]j y  5?!$&2K~  !"!  9&Z)   @1fr  /@+>#[j   8J^Be405Ti q9~EI^p )>Od~('*?Zl3K ak|   %4(:c r  +7&T{ #   # 0>Mdv}        $ 4 F  ^ i {       ;     ' , K  Z  f  s }             + 8 H Q X `  f Gr          % ' + *1  \ g m  r }     h      * 6 /R          +Ga&   Qe v J3FMT t~( J8L` co     2G O\ s       #.6 4? V`qy $<Ur        -Mhm r   8,F)Y ,.3368j4"6L#g,b n   +! B ]EgA '6Jcj y    '.Lh}8 .>DL[(b$ j h)v"\ X e z >      ! !)!/! A!O!`!(f!!$!!!!!" "$" -"#7" [" e"o" v" "" """" "" """#%#,#=#F# V#d#m##,## # ##$$)$:$A$(`$ $$$ $$$$% %% %(%/%8%H% e%p% %)%'% %A&]&(x&"&(&)&P'h'"''''''''*'(B(Z(t(.(.((( ))) +)7)?) S)_)~) )))2) ) ** *-*3*9*?*W*g* l* w* * * **** *4*+G+g+n++ ++++ ++*+, !,6-, d,p,,,,,,2,--%7-0]-1----;-9. ?.M.\.p.........*///H/P/ i/ v/// / / //////% 0 00 =0 K0U0u0y0 00 00 00 00 0 1 1 31@1 E1 O1\1Rl11$112!2)21282I2X2l2 t2 ~222 2 2 22233 )343P3`3q3 3i3 3494Q4'p4444455+5?5S5\5o5w5 555 5 5#55 566.676;6RK6F6?67%7W]777/7 8818J8,f8(88 8-8=9?9OD99 9%99 9 :: /:<: D: R:_:w:9~: :: ::: ::;;;%; +;5; :; F;S;f; x;;;; ;;;;; <<,.<[< o<|<<<<<< << < <<<== =+=.=K=S=dZ==&=8='>*B>;m>(>4>?!?7?=?F?N?U?[?c? r?|?????? ??? ?@ @@0@8@J@S@ b@p@ y@@ @@@ @ @@@AAA ,A 8A(FAoAxA*AAA A AAAA#B'B8GB&B1B)BdC-hC0CCCUCJSD[D(DV#E8zE(E,E FD%FjF#Fd"GCGHGhHf}HH0kI9I%IAI[>JJI0K%zK1K+K!K L8@L3yL-L&L:M3=M%qMM'M M%M($NMN0mNN19OAkO,O-O+P+4P)`P3P%P=Pe"QMQ*Q(R/*R.ZR0RTRZS,jS*S(SHSJ4T2T*T(TU/$U,TU-U?UpUq`VfVo9WW]X%uX2X)X>X"7YRZY%Y YYEZ!Z0Z%*[P[m[u[}[ [ [[[ [[ [[[\:\M\Y\*]0]5]=]F]0L]}] ]] ]]]]] ]]]^ ^ &^!3^U^*Y^^^^3^(^._/?_o_"_%___$`*`J`!e`3` ``2`*a/Ea+uaa#aab! b%Bb&hbb%b$bbc$.cSc"lc,c(c%c< dJHdd#dd de3e%Le&re-e:ef)!fKf1jf f f/f$f1 g=gEgUgjg yg$ggg g"g%gh+hIh Qh]hshh h h h hhh3hii ,i6i2>iqivi ii2iii jj(j Fj Pj[jaj vjjj jjjjj' k5ky(gy"y+y0yz#z7zyHz zzsn{|{+_|T||'| }7}G}_}@}}}Q}O~i~~ ~~~~~~~~~:~ :DT\d is{    2 8CJcwÀ݀ !9'@hkpʁہ ": BP Xdj mya   " , 6@DS!k05")5_z0م);&O&vφ ކ   ' 1; K XeuW     ÈЈֈ܈   * 0 = JT[n t   ˉމ  +*Iъ)4@F_6]e|     & 3 @ M Z d q   %%č & 6 C Q ^ kxю  2KF[<(ߏ 0 QX_w  Ɛ ͐ڐ ") H Ub!ԑ#,:,gђ&9@4Z ē ד/?(X(+1֔5QXm ~( ˕ؕ%ߕ%%+%Qw~5.4L3З3D8D}3˜8%/%UD{8%%9E  ǚܚ$> CMOě '>SZ v՜+  % 2<Kbr7y ͝۝ :R q~   ˞՞ " -@G*Z""+˟'.Gv-$֠$G 8h%ǡ -4R Yf* ͢ ݢ (.;BjɣУ %9 MZvŤ ɤ֤  '=Td kx  ƥ ޥ   ,3:N U bov}F٦   <$K=p (˧8$-R r|Ѩب *2Ol"˩ <Xo#,ߪ2Li+"ԫ%6+O{!ˬ #4nK0"$?dxƮ"p$Я 9;<u ðٰ & 0:J/a   ± ϱ ܱ-)?U"q $^޲=D-K y  dz ݳ  &<#Y}  ´ ϴܴ ,-$Z ˵9 9FW ^k"r  ض  ' 4;>z( ̷ ٷ "<(e*} ĸθ'޸=>D    ǹչ   # 0 = JW k x ʺ׺"@S j w    U#%Icj@"ȼ"(77)o5  %BYqx    ɾ ־     ! . 8 BOV h&v,,ʿ7Vl%(' ;' c q     "  7 D Q^ u        (>,S  s \jq x   (> Zd hu| "; BO V*`  & +8Q6f88 0> Wd kx( ( 7EIPBW;   (/ I Ub fs    6>8w~  &#&:a}'+  / 9EU\bEy\ ,9 @M_ p~|'h=L\ov ( *1) [i p9z69;bM%!%=-T,+Ifz"+ 2"?bs   !18 ? JXg ~     ; %,DJ2g/ &;)Bl pz   $ 8 E.O~"     )6 = GQ Xe u  1 -* :G^r!8? Ubq A   6 :$Glp?  " :H/Z3"3PWk"! 1GZz%  DG Xex<!'.4A v! NAX o y # $7 >KR2e      ")0Layt)$@e.l   !05G)\#< R_ f"s   6J Q[n ~ %$+P'd ( %$)B&l) 3Par8b/Lbf "  ?)Bi 6, c mw'   # 6@GZ m w% 0 '. D"Nq*  129O: % ,9@ G T a n&x $ ( 6A an ~         ,7;s( ' +8@I]dk{    ) 0=D!Mo %"83l'DIb 5 +>Q4k   +"3 Vcv&    ,6 : DN U _ iv} 6H(0Pp  , :K[o !-!9!Su 1  &? F S`z   " /9@Wf}!(8O_f x6; F^0x!  Q ]r    *")< R_fy "5 NcX$DXr     & - 6C z  (          A ;` 1 3 U X _ )r     ' , E  L 1Y +  .    . > X  i t           '4<R Yf~   ! *4 EO bo,    "/6OV fsw ~  Z'".4Q!6"7Lbqx  1B Leu  % BL bov} +  %>E[{   ) 4$P"um148m89TZ[q(''F8`G_3_>QP$u-44i7FC%&F*f'!"+.*Yv!!1& : =T 0 4 & &!)F!&p!)!+!%!3"MG"C"&"*#"+#%N#-t#S#H#%?$&e$*$?$<$44%i%%%%*%*%(&7F&Z~&i&_C'h' ((%((((#)6L))S)) **I**>+"Q+t++ ++ + +++ ++ +,, -,47,=l,e,- -%---4-%C-i-p-w- - ---- -- .. 3.?.$Q.v.}..../.#/'*/(R/{//!///0 090R0-p0!00(01%1?1Y1r111112252N2g22222824 3U36r3A3!3 4'*4(R4!{4444"4F 5P5(n55,5 5 5,5'*60R6 66/666$6#7 *747,C7-p77"7 7 7788 %8/8?8 N8\8s84z8888 8K8 J9T9d9t9+99-99::>:O: a:k:::: ::: :#: ;>; B;O;f;m;.;4;; ; ;<< -<7<F<,Y<)< < <)<<$<=,=7>=v= }= ===== = ====2>N>e>|>> >.>N> 1?>?4Y? ?? ? ? ????? ???@!@U5@H@-@+A .A;AOAiAAAAAAAAAA%AB9BYByB&B,B,BC:C%ZCCC%C%C% D2D+OD.{DD1D6D%$EJE[EF9F\VF9F/FyG"G(G.G%H!8HZHzHHHHH"I3:I*nII"I IwI ZJgJCJt+K(KGKL%.LTL qLL L(LLLVMjMMMMMMMMNNN)N9N QN]NwNN NNNNNNNNNNNNO OO0O7O>OWOjOqOxOO OOOOOOOP PPP1P8PQPePxP'}PPP P PPPP P Q!Q%Q ,Q9Q'LQtQ{Q QQQQQQ*- vmz' Z"B!3% glR/g@5q qkVW!"`6L;2d]g{D)k/&3eX+&or]bi0 &pyjZRJJ`"O ~-K#&~A}@65 V];u(TD)o6JU *kKwn):h\hCe  /N.?esq<%Z5>,4Q\=q/:O>#/X?o]rh1+Ahw$ 3zN)+FkXCqY`bv@P1\TM,,[x`?8&@:NWU[g7jhGHVr 8uP5GEos:cVId>$7^^F4L28V p62UpPgmTT*FEFr49Z7 ,loW&[Y+[F)wldb*vt"K 96tbEfis9F,0;@m"M[2|b $S_MhWJs6jZ \I!Tyz3#F;S@nXQjv!Y{xf',AoxnjU@vdoG2i  +&kYPwSD^ e `B\g@ hIe'gP2#G%9_N0pxfK':,n](RLnet6 o 8b$0$:Y7Gm1T*QE"80FwV6LW?7YQO9qhk<.Ml(=`@G^H.1 W5"H ><r;^CUH.M9sBVBx^4~}'>'OuRX+E5:/fm[%vQ8PUSDVSJyT#H}$PHLpj?5A8O c<& LQ0 q(K\M$QeSmue21K!B_yAE;< J|# _.GK_ \>^;I  `v>{C}$;/9EXMqRMO7tacSk(tw-}t bhiv{f8MsX\z0l<N+a45'xJ(}~K-:!~5BCdzp)Y| `/7])<]6IiRA :xan Q s|Lj,.jOfH{llaUctTI7Y>(12aD2u-Ba7i?SzRc(d<IUyw4 3 )/>y1V=3N4y^`R]pbyP8 _uXQ#mGC%sebRO<F uci"'4Y^9D1[Em=p%Dc=}B Ua _ox\_3SETvfp ?C3a =cIfzZAlaZ1)JkBtuGW l[i_~|A{D0W!OgrZ}.r J=LNigq$Z{.%|L!H;fdc*-dItj-uH  ]N9!"['|z+4s%XwCd{?nr- n?-WA,C.Kk#%*~3*& nm =+*#0P(|D~r=N (%s days ago) (Accesskey %s) (in %s days) (today) (tomorrow) (yesterday) at "%s" already exists"%s" is not a directory."%s" is not a valid choice."%s" is not a valid email address."%s" is not configured in the Horde Registry."%s" share driver not found."%s" tree renderer not found."%s" was added to the groups system."%s" was added to the permissions system."%s" was not created: %s."%s" was not renamed: %s.%.2fMB used of %.2fMB allowed (%.2f%%)%d %s and %s%d Folders and %d Bookmarks imported.%d contact was successfully added to your address book.%d contacts were successfully added to your address book.%d day until your password expires.%d days until your password expires.%d days until your password expires.%d minutes%d to %d of %d%d-day forecast%s - Notice%s Bookmarks%s Fingerprint%s KB%s MB%s Maintenance Operations - Confirmation%s Response Codes%s Setup%s Sign Up%s Terms of Agreement%s already exists.%s at %s %s%s authentication credentials%s is not authorised for %s.%s is ready to perform the maintenance operations checked below. Check the box for any operation(s) you want to perform at this time.%s is required%s not found.%s's Bookmarks%s: This message may not be from whom it claims to be. Beware of following any links in it or of providing the sender with any personal information., gusting , gusting %s %s, variable from %s to %s-- select --1 Line1 day1 hour1 star out of 510 rows12 Hour Format15 minutes15 rows1xx Response Codes (%s)2 Line2 stars out of 524 Hour Format24 hours25 rows2xx Response Codes (%s)3 Line3 stars out of 53xx Response Codes (%s)4 stars out of 54xx Response Codes (%s)5 minutes5 stars out of 55xx Response Codes (%s)6 hoursNicaraguaNigerNigeriaNightNiueNoNo Bookmarks foundNo ContentNo SoundNo available configuration data to show differences for.No available strategy for making ISO images.No batch template.No block exists at the requested positionNo bookmarks to displayNo change.No children can be added to this permission.No configuration information specified for %s.No configuration information specified for FTP VFS.No configuration information specified for SQL VFS.No configuration information specified for SQL-File VFS.No configuration information specified for SSH2 VFS.No credit left.No destination supplied.No file uploadedNo icons found.No location is set.No location provided.No lock driver configured!No message corresponds to object %sNo message supplied.No name specified.No number specified.No offensive fortunesNo or unreadable content in Kolab XML objectNo path to the OpenSSL binary provided. The OpenSSL binary is necessary to work with PKCS 12 data.No pending signups.No quota set.No recurrenceNo separator specified.No stable version exists yet.No such fileNo such object %s!No temporary directory available for cache.No username and/or password sent.No valid XML data returnedNo valuesNo version found in original configuration. Regenerate configuration.No version found in your configuration. Regenerate configuration.Non-Authoritative InformationNoneNordic (ISO-8859-10)Norfolk IslandNorthern HemisphereNorthern Mariana IslandsNorwayNot AcceptableNot AfterNot BeforeNot FoundNot ImplementedNot ModifiedNot a directoryNot implemented.Not supported.Note:NotesNothing to browse, go back.Nothing to edit.NovemberNumberNumber of articles to displayNumber of bookmarks to showNumber of charactersNumber of columnsNumber of rowsNumbers not specified for updating in distribution list.O charactersOKObjectObject CreatorObject not found.Object type %s not allowed for folder type %s!OctalOctoberOffense filterOfficeOld and new passwords must be different.Old object %s does not exist.Old object %s does not map to a uid.Old passwordOld password is not correct.OmanOn newer versions of Internet Explorer, you may have to add %s://%s to your Trusted Zone for this to work.Onclick eventOnly IMAP servers support shared folders.Only offensive fortunesOnly one email address allowed.Only one email address is allowed.Only the owner or system administrator may change ownership or owner permissions for a shareOpen Fo_lderOpen in a new windowOpen links in a new window?OpenSSL error: Could not extract data from signed S/MIME part.Operating SystemOptionsOptions for %sOrganisationOrganisational UnitOrganizingOtherOther InformationOther OptionsOther charactersOwnerOwner of folder %s cannot be determined.Owner:PAM authentication is not available.PEAR::Mail backendPGP Digital SignaturePGP Encrypted DataPGP Public KeyPGP Signed/Encrypted DataPHPPHP CodePHP ShellPHP does not support imap_myrights.PM CloudsPM DizzlePM FogPM Light RainPM Light SnowPM RainPM ShowersPM SnowPM Snow ShowersPM SunPM T-StormsPOSIX extension is missingP_HP ShellPakistanPalauPalestinian Territory, OccupiedPanamaPapua New GuineaParaguayPartial ContentPartly CloudyPasswordPassword changed successfully.Password incorrectPassword required for RADIUS authentication.Password with confirmationPassword:Password: Passwords must match.PastePayment RequiredPending Signups:PeoplePerform Maintenance OperationsPerform maintenance operations on login?PermissionPermission "%s" not deleted.Permission DeniedPermissionsPermissions AdministrationPersonal InformationPeruPetsPhilippinesPhonePhone numberPhotosPitcairnPitcairn IslandPlaintext Version of MessagePlatitudesPlease choose a sound.Please enter a month and a year.Please enter a name for the new category:Please enter a name for the new folder:Please enter a valid IP address.Please enter a valid date, check the number of days in the month.Please enter a valid time.Please enter the name of the new folder:Please modify the name accordinglyPlease provide a summary of the problem.Please provide your username and passwordPlease read the following text. You MUST agree with the terms to use the system.Please select an item firstPlease type the new category name:PolandPoliticsPollsPopup NotificationPortPortugalPostPost to this folder (not enforced by IMAP)PostnukePrecipitation for last %d hour: Precipitation for last %d hours: Precipitation
chancePrecondition FailedPreference storage directory is not available.Prefs_ldap: Required LDAP extension not found.PressurePressure at sea level: Pressure: PreviewPrevious optionsPrivate KeyProblemProblem DescriptionPrompt textProtect address from spammers?Proxy Authentication RequiredPublic KeyPublic Key AlgorithmPublic Key InfoPublic/Private keypair not generated successfully.Puerto RicoPurgePurge messagesPurple HordeQatarQueryQuotaRSA Public Key (%d bit)Radio selectionRainRain EarlyRain LateRain ShowerRain and SnowRain to SnowRandom FortuneRatioReadRead messagesReally delete "%s"? This operation cannot be undone.Really delete this block?Really remove user data for user "%s"? This operation cannot be undone.Realm:Refresh Dynamic Menu Elements:Refresh Portal View:Refresh rate:RegexRelationship browserRemarksRemote Host:Remote ServersRemote URL (http://www.example.com/horde):RemoveRemove pairRemove saved script from server's temporary directory.Remove userRemove user: %sRename this FolderReply-ToReportsRequest Entity Too LargeRequest Time-outRequest couldn't be answered. Returned errorcode: Request-URI Too LargeRequested range not satisfiableRequested service could not be found.Required "%s" not specified in %s configuration.Required "%s" not specified in VFS configuration.Required "%s" not specified in configuration.Required FieldRequired secret is invalid - potentially malicious request.ResetReset ContentReset PasswordReset Your PasswordRestore Last QueryResultsResults for %sReturn to OptionsReturned error message:Retype new passwordReunionReunion IslandRevert ConfigurationRevocation key not generated successfully.Rich Text Editor OptionsRiddlesRight click context menuRight headerRight valuesRoleRomaniaRotate 180Rotate LeftRotate RightRunRussian FederationRwandaS/MIME Cryptographic SignatureS/MIME Encrypted MessageSASL authentication is not available.SMPP GatewaySMS MessagingSQL ShellSQL statement for value lookupsSSHSUCCESSS_QL ShellSaSaint HelenaSaint Kitts and NevisSaint LuciaSaint Pierre and MiquelonSaint Vincent and the GrenadinesSamoaSan MarinoSao Tome and PrincipeSatellite ProviderSaudi ArabiaSaveSave "%s"Save OptionsSave and FinishSave generated configuration as a PHP script to your server's temporary directory.Saved %s configuration.Saved setup upgrade script to: "%s".Scattered ShowersScattered T-StormsScienceSea_rchSearchSearch BookmarksSearch EnginesSearch Results (%s)Search:See OtherSelect AllSelect All BookmarksSelect All FoldersSelect FilesSelect NoneSelect a dateSelect a group to add:Select a new owner:Select a serverSelect a user to add:Select allSelect all date components.Select an imageSelect an objectSelect editor pluginsSelect noneSelect the characters you need from the boxes below. You can then copy and paste them from the text area.Select the date and time format:Select the date delimiter:Select the date format:Select the day and time order:Select the identity you want to change:Select the time delimiter:Select the time format:Select your color scheme.Select your preferred language:Select: %s, %sSelect: %s, %s, %s, %sSelf-destructing...Send Problem ReportSend SMSSending failed: %sSenegalSensor: SeptemberSerbiaSerbia and MontenegroSerial NumberServer TimeServer data wrong or not available.Service UnavailableSession AdminSession ID expired.Session Timestamp:SessionsSetSet PermissionsSet authentication credentials like user names and passwords for external servers.Set options to allow you to reset your password if you ever forget it.Set up remote servers that you want to access from your portal.Set your preferred language, timezone and date options.Set your startup application, color scheme, page refreshing, and other display options.SetupSetup upgrade scripts availableSeveral locations possible with the parameter: SeychellesShare "%s" does not exist.Share ID "%s" not found.Share ID %d does not exist.Share names are not supported in this driverShibboleth authentication not available.ShoppingShort SummaryShould access keys be defined for most links?Should your list of bookmark folders be open when you log in?ShowShow differences between currently saved and the newly generated configuration.Show extra detail?Show icon?Show last login time when logging in?Show option to keep original?Show picker?Show seconds?Show the %s Menu on the left?Show upload?ShowersShowers EarlyShowers LateShowers in the VicinityShrinkShrink or move neighbouring block(s) out of the way firstSierra LeoneSign upSignatureSignature AlgorithmSimplexSingaporeSizeSkip MaintenanceSlovakiaSloveniaSmallSnooze...SnowSnow ShowerSnow ShowersSnow Showers EarlySnow Showers LateSnow depth: Snow equivalent in water: Solomon IslandsSomaliaSongs & PoemsSort bookmarks by:Sort bySort order selectionSource addressSouth AfricaSouth European (ISO-8859-3)South Georgia and the South Sandwich IslandsSouthern HemisphereSoviet UnionSpacerSpainSpamSpecial Character InputSpecial charactersSportsSri LankaStandardStar TrekStart yearState or ProvinceStatusStorage formatStreet AddressString listSuSubdirectory "%s" not found.SubjectSubmitSubmitted request to add "%s" to the system. You cannot log in until your request has been approved.SuccessSuccessfully added "%s" to the system.Successfully cleared data for user "%s" from the system.Successfully deleted "%s".Successfully removed "%s" from the system.Successfully reverted configuration. Reload to see changes.Successfully saved backup configuration.Successfully saved the backup configuration file %s.Successfully updated "%s"Successfully wrote %sSudanSun RiseSun SetSundaySunnySunriseSunrise/SunsetSunrise: SunsetSunset: SurinameSurnameSvalbard and Jan MayenSvalbard and Jan Mayen IslandsSwazilandSwedenSwitching ProtocolsSwitzerlandSyncMLSyndicated FeedSyrian Arab RepublicT-StormT-Storm and WindyT-StormsT-Storms EarlyT-Storms LateTSV fileTable SetTable operations menu barTag CloudTaiwanTaiwan, Province of ChinaTajikistanTango BlueTanzania, United Republic ofTasksTealTelephone NumberTemp for last hour: TemperatureTemperature: Temperature
(%sHi%s/%sLo%s) °%sTemplateTemplate "%s" not found.Template to use when displaying bookmarks:Temporary RedirectTextText AreaText OnlyThThai (TIS-620)ThailandThe FTP extension is not available.The History system is disabled.The Horde/Kolab integration engine does not support "%s"The IMSP log could not be initialized.The Maintenance:: class did not load successfullyThe SSH2 PECL extension is not available.The administrator needs to configure a permanent Permissions backend if you want to use Permissions.The alarm backend is not currently available.The alarm backend is not currently available: %sThe alarm has been deleted.The alarm has been saved.The contact ID number was not specified, left blank or was not found in the database.The detached PGP signature block is required to verify the signed message.The distribution list ID was either not specified, left blank or not found in the database.The distribution list was not specified.The email address %s has been added to your identities. You can close this window now.The encryption features require a secure web connection.The file %s should contain a %s setting.The file %s should contain some %s settings.The file contained no data.The following applications encountered errors removing user data: %sThe full error message is logged in Horde's log file, and is shown below only to administators. Non-adminitrative users will not see error details.The identity "%s" has been deleted.The image file size could not be determined or it was 0 bytes. The upload may have been interrupted.The image file was larger than the maximum allowed size (%d bytes).The location of the GnuPG binary must be given to the Crypt_pgp:: class.The member state service could not be reached in time. Try again later or with a different member state.The member state service is currently not available. Try again later or with a different member state.The message sent on %s to %s with subject "%s" has been displayed. This is no guarantee that the message has been read or understood.The name to use when linking to the compose pageThe new from address can't be verified, try again later: The number of fields must be numeric.The openssl module is required for the Horde_Crypt_smime:: class.The preference "%s" could not be saved because its data exceeded the maximum allowable sizeThe preferences backend is currently unavailable and your preferences have not been loaded. You may continue to use the system with default settings.The program used to view this data type (%s) was not found on the system.The provided country code is invalid.The quote character must be one single character.The separator must be one single character.The server "%s" has been deleted.The server "%s" has been saved.The service is currently not available. Try again later.The service is currently too busy. Try again later.The signup request for "%s" has been removed.The specified row (%d) does not exist.The text you entered did not match the text on the screen.The uploaded data was lost since the previous step.The uploaded file could not be saved.The user "%s" already exists.The weather.com block is not available.Themes directory "%s" not found.There are no bookmarks in this folderThere are no email addresses to confirm.There are no options available.There are no parts that can be displayed inline.There are too many characters in this field. You have entered %d character; There are too many characters in this field. You have entered %d characters; There was a problem adding "%s" to the system: %sThere was a problem clearing data for user "%s" from the system: There was a problem copying the bookmark: %sThere was a problem deleting the bookmark: %sThere was a problem deleting the folder: %sThere was a problem moving the bookmark: %sThere was a problem moving the folder: %sThere was a problem removing "%s" from the system: There was a problem updating "%s": %sThere was a problem with the file upload: No %s was uploaded.There was a problem with the file upload: The %s was larger than the maximum allowed size (%d bytes).There was a problem with the file upload: The %s was only partially uploaded.There was an error adding the bookmark: %sThere was an error adding the folder: %sThere was an error displaying this message partThere was an error importing the contact data:There was an error importing the iCalendar data.There was an error in the configuration form. Perhaps you left out a required field.There was an error performing the specified address book function. Please try again later.There was an error reading the contact data.There was an error saving the bookmark: %sThere was an error saving the folder: %sThere was an error updating the contact details. Please try again later.There was an error updating the distribution list. Please try again later.This IMAP server does not support sharing folders.This VAT identification number is invalid.This VAT identification number is valid.This alarm cannot be snoozed.This does not appear to be a valid rar archive.This does not appear to be a valid zip file.This does not seem to be a valid card number.This driver allows sending of messages through an SMPP gateway.This driver allows sending of messages through an email-to-SMS gateway, for carriers which provide this service.This driver allows sending of messages through the Clickatell (http://clickatell.com) gateway, using the HTTP APIThis driver allows sending of messages through the WIN (http://winplc.com) gateway, using the HTTP APIThis driver allows sending of messages through the sms2email (http://sms2email.com) gateway, using the HTTP APIThis driver allows sending of messages via SMTP through the Vodafone Italy gateway, only to Vodafone numbers. It requires an email account with Vodafone Italy (http://www.190.it).This field is required.This field may only contain integers.This field may only contain numbers and the colon.This field may only contain octal values.This field must be a comma or space separated list of integersThis field must be a valid number.This field must contain a color code in the RGB Hex format, for example '#1234af'.This form has already been processed.This is %s.This is a Kolab Groupware object. To view this object you will need an email client that understands the Kolab Groupware format. For a list of such email clients please visit %sThis message was written in a character set (%s) other than your own.This number must be at least one.This server can't uncompress zip and gzip files.This system is currently deactivated.This value must be a number.ThunderTicketsTimeTime TrackingTime formatTime selectionTimestamp or unknownTimor-LesteTitleTitle OnlyTitle and DescriptionTitle, URL, and DescriptionToTo be able to quickly add bookmarks from your web browser:To exclude a particular field form the import or to correct a wrong match select a field in the lists below and hit "Remove pair".To select multiple items, hold down the Control (PC) or Command (Mac) key while clicking.TodayTogoTokelauTomorrowTongaToo many invalid logins during the last minutes.TotalTranslationsTrinidad and TobagoTrue or falseTuTunisiaTurkeyTurkish (ISO-8859-9)TurkmenistanTurks and Caicos IslandsTuvaluType your choice: U charactersU.V. index: UID not found in Kolab XML objectURLURL for your script delivery status reportUgandaUkraineUnable to access VFS directory.Unable to add %s: destination folder already existsUnable to bind to the LDAP server as %s!Unable to change permission for VFS file "%s".Unable to change permission for VFS file %s/%s.Unable to change to %s.Unable to check file size of "%s".Unable to check file size of "%s/%s".Unable to connect with SSL.Unable to copy VFS file.Unable to create VFS directory "%s".Unable to create VFS directory.Unable to create VFS file.Unable to create VFS folder "%s".Unable to create directory %s; must be [app]/[path]Unable to create empty VFS file.Unable to decompress data.Unable to delete "%s", the directory is not empty.Unable to delete "%s": %s.Unable to delete %s, the directory is not emptyUnable to delete VFS directory recursively.Unable to delete VFS directory.Unable to delete VFS directory: %s.Unable to delete VFS file "%s".Unable to delete VFS file.Unable to delete VFS folder "%s".Unable to delete VFS recursively: %s.Unable to determine current directory.Unable to execute smbclient.Unable to extract certificate detailsUnable to load the definition of %s.Unable to move VFS file.Unable to open VFS file "%s".Unable to open VFS file for writing.Unable to open VFS file.Unable to open compressed archive.Unable to read VFS file (filesize() failed).Unable to read VFS file (size() failed).Unable to read the vfsroot directory.Unable to rename %s to %s: destination folder already existsUnable to rename %s; must be [app]/[path] and within the same application.Unable to rename VFS directory.Unable to rename VFS directory: %s.Unable to rename VFS file "%s".Unable to rename VFS file %s/%s.Unable to rename VFS file.Unable to run 'mkisofs'.Unable to translate this RTF documentUnable to translate this Word documentUnable to translate this WordPerfect documentUnable to trigger free/busy update for folder %s on URL %sUnable to write VFS file "%s".Unable to write VFS file (copy() failed).Unable to write VFS file data.Unable to write VFS file, quota will be exceeded.UnauthorizedUndo ChangesUnexpected response from server on connection: Unexpected response from server to: Unexpected response from server, try again later.UnfiledUnicode (UTF-8)United Arab EmiratesUnited KingdomUnited StatesUnited States Minor Outlying IslandsUnitsUnknownUnknown (%s)Unknown apimsgid (API Message ID).Unknown climsgid (Client Message ID).Unknown location provided.Unknown username or password.UnnamedUnsupportedUnsupported ExtensionUnsupported Media TypeUpdateUpdate %sUpdate userUpdated "%s".Updated %s.Upgrade script deleted.UploadUploaded all application setup files to the server.UruguayUse Current: %sUse ProxyUse SSLUse if name/password is different for IMSP server.UserUser AdministrationUser OptionsUser RegistrationUser Registration has been disabled for this site.User account not foundUser name %s is no kolab user!User to add:UsernameUsername "%s" already exists.Username:Username: UsersUsers in the system:UzbekistanVAT id number verificationVAT identification number:VAT numberVFS directory does not exist.VacationValidityValue in minutes from now.Value is over the maximum length of %d.ValuesValues to select fromVanuatuVariableVenezuelaVerification failed - an unknown error has occurred.Verification failed - this message may have been tampered with.VersionVersion ControlVery HighViet NamVietnamese (VISCII)View %sView %s [%s]View an external web pageVirgin Islands, BritishVirgin Islands, U.S.VisibilityVisibility: Vodafone Italy via SMTPWARNWARNING!!! REMOVE SCRIPT MANUALLY FROM %s.WIN via HTTPWallis and FutunaWallis and Futuna IslandsWarningWeWeather ForecastWeather data provided byWeb SiteWeeklyWelcomeWelcome to %sWelcome, %sWestern (ISO-8859-1)Western (ISO-8859-15)Western SaharaWhat application should %s display after login?What is the delimiter character?What is the quote character?Whereis Australia mapWhich day would you like to be displayed as the first day of the week?Which phasesWhich plugins to enable for the Rich Text editor.While browsing you will be able to bookmark the current page by clicking your new "Add to Bookmarks" shortcut.Whole FieldWidth in CSS unitsWidth of the %s menu on the left (takes effect on next log-in):WikiWindWind EarlyWind LateWind speed in knotsWind:Wind: WindowsWisdomWishlistWorkWork AddressWork PhoneWrite of preferences to %s failedWrong number of fields in line %d. Expected %d, found %d.Wrong number of fields. Expected %d, found %d.Wrong offset %d while reading a VFS file.Wrong version number found: %s (should be %d)X-RefX509v3 Basic ConstraintsX509v3 Extended Key UsageX509v3 Subject Alternative NameX509v3 Subject Key IdentifierX509v3 extensionsYYYYYYYahoo! mapYearlyYemenYesYes, I AgreeYou are creating a new folder.You are not allowed to add groups.You are not allowed to add shares.You are not allowed to change groups.You are not allowed to change shares.You are not allowed to create more than %d block.You are not allowed to create more than %d blocks.You are not allowed to create more than %d bookmarks.You are not allowed to create more than %d folders.You are not allowed to delete groups.You are not allowed to delete shares.You are not allowed to list groups of shares.You are not allowed to list share permissions.You are not allowed to list shares.You are not allowed to list users of groups.You are not allowed to list users of shares.You are not allowed to remove user data.You are not authenticated.You are renaming the current folder.You cannot have the '\' character in your full name.You did not authenticate.You did not enter a valid email address.You didn't map any fields from the imported file to the corresponding fields in %s.You do not have permission to view this folder.You have been logged out.You have requested to add the email address "%s" to the list of your personal email addresses. Go to the following link to confirm that this is really your address: %s If you don't know what this message means, you can delete it.You must choose a date.You must choose a time.You must configure a DataTree backend to use Signups.You must configure a VFS backend.You must describe the problem before you can send the problem report.You must enter a valid phone number, digits only with an optional '+' for the international dialing prefix.You must enter a valid value.You must enter an email address.You must enter at least one email address.You must provide a setting for "%s".You must select a target folder firstYou must select an server to be deleted.You must specify a username to clear out.You must specify a username to remove.You must specify the username to add.You must specify the username to update.You must specify what action to perform.You must type a new category name.You need to provide an Italian phone numberYour %s session has expired. Please login again.Your Email AddressYour From: address:Your InformationYour Internet Address has changed since the beginning of your %s session. To protect your security, you must login again.Your NameYour authentication backend does not support adding users. If you wish to use Horde to administer user accounts, you must use a different authentication backend.Your authentication backend does not support listing users, or the feature has been disabled for some other reason.Your browser appears to have changed since the beginning of your %s session. To protect your security, you must login again.Your browser does not support this feature.Your browser does not support this print option. Press Control/Command + P to print.Your current time zone:Your default identity has been changed.Your default identity:Your full name:Your login has expired.Your new password for %s is: %sYour options have been updated for the duration of this session.Your options have been updated.Your password has been resetYour password has been reset, check your email and log in with your new password.Your password has expiredYour password has expired.Your remote servers:YugoslaviaZaireZambiaZimbabweZippy[Hide Quoted Text][None][Problem Report][Show Quoted Text -[Show Quoted Text - %d line][Show Quoted Text - %d lines][Unknown][line %d of %s]_Alarms_Browse_CLI_DataTree_Groups_Home_Import/Export_Log in_Log out_New Bookmark_Options_Permissions_Reports_Search_Setup_Usersaddressee unknownattachmentcalmcannot create output filecannot open inputclickclick hereclickscommand line usage errorconfiguration errorcritical system file missingdata format errorentry not foundfallingfilefrom the %s (%s) at %s %sgustingh:hhhost name unknownimmediateinlineinput/output errorinternal software errorlines]mkisofs error code %d while making ISO.mmnamenot yet implementedpermission deniedremote error in protocolrisingservice unavailableshow differencessms2email via HTTPsssteadysystem errortemporary failuretype the password twice to confirmunifiedunknown errorunnameduser selectvCardw:weather.comyou must enter less than %d.Project-Id-Version: Trean 1.0-cvs Report-Msgid-Bugs-To: dev@lists.horde.org POT-Creation-Date: 2007-01-25 15:09+0800 PO-Revision-Date: 2003-07-07 16:22+0800 Last-Translator: David Chang Language-Team: Traditional Chinese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (%s 天前) (快捷鍵 %s) (%s 天內) (今天) (明天) (昨天)於"%s" 已存在"%s" 不是一個目錄"%s" 不是一個有效的選擇."%s" 並不是一個有效的電子郵件位址."%s" 尚未在 HORDE 的註冊檔(Registry)中設定.找不到 "%s" 共享驅動程式.找不到 "%s" tree renderer."%s"已成功的加入到群組系統中."%s"已加入權限系統."%s"並未建立: %s.'"%s" 並未更名: %s.已使用 %.2fMB ,容量 %.2fMB ,剩餘 (%.2f%%)%d %s 以及 %s已匯入 %d 個資料夾和 %d 筆書籤已成功的將 %d 個聯絡人新增至你的通訊錄中.最近一次密碼變更於 %d 天前.最近一次密碼變更於 %d 天前.%d 分%d 到 %d 共 %d最近 %d 天氣象預報%s - 備忘錄%s 個書籤%s 指紋%s KB%s MB%s 維護操作 - 確認%s 回應碼%s 設定%s 註冊%s 同意項目%s 已存在%s 在 %s %s%s 驗證憑證%s 未通過 %s 的授權.%s 已就下列事項的維護操作就緒. 請於此時勾選你想要操作的項目.必需要 %s找不到 %s.%s的書籤%s: 這封信件不一定真由信中的寄件人所寄發. 請注意下列所有的網路點選有可能洩漏你的個人資料., 陣風 , 陣風 %s %s,變化量從 %s 到 %s-- 選擇 --1 行1 日1 小時一星評鑑10 行12 小時制15 分鐘15 行1xx 回應碼 (%s)2 行二星評鑑24 小時制24 小時25 行2xx 回應碼 (%s)3 行三星評鑑3xx 回應碼 (%s)四星評鑑4xx 回應碼 (%s)15 分鐘五星評鑑5xx 回應碼 (%s)6 小時<上一頁A 系字元此區塊必須要指定資料庫伺服端.發生了一個嚴重的錯誤系統已寄發一封信件給 "%s" 以便確認該郵件住址確實是你. 新的郵件住址將隨你確認此訊息時一並啟用.有較新版本 (%s).欲加密郵件,還需要有一組密碼.欲加密郵件,還需要有一個 PGP 公開金鑰.欲驗證已簽章的郵件,還需要有一個 PGP 公開金鑰.欲執行郵件簽章,還需要有一個公開 PGP 金鑰,私密 PGP 金鑰,以及通關口令.欲加密郵件,還需要有一個 SMIME 公開金鑰.欲解密郵件,還需要有一個公開 SMIME 金鑰,私密 SMIME 金鑰,以及通關口令.欲執行郵件簽章,還需要有一個公開 S/MIME 金鑰,私密 S/MIME 金鑰,以及通關口令.午前有雲午前毛毛雨午前有霧午前小雨午前小雪午前有雨午前陣雨午前有雪午前陣雪午前晴午前雷雨午前/午後API 編號關於...已接受權限不足,無法建立 VFS 目錄.權限不足,無法建立 VFS 檔案.帳號資訊帳號與密碼帳號已凍結.結帳新增新增子權限新增內容在此新增:新增成員新增權限新增權限新增次群組到 "%s"新增次權限至"%s"新增一個群組新增一個使用者:新增一個警示新增對新增 %s 為 Mozilla 的分頁加入書籤新增到的通訊錄:新增到我的通訊錄新增使用者已新增 "%s" 到系統中. 但無法新增額外的註冊資訊: %s.已新增 "%s" 到系統中. 你現在可以進行登入了.新增使用者的功能目前被關閉.地址通訊錄管理成為管理員 - 為其他使用者設定權限管理廣告Afghanistan (阿富汗)Aland Islands (奧蘭群島)警示截止日方式找不到警示啟始日內容警示標題警示Albania (阿爾巴尼亞)Algeria (阿爾及利亞)郵件別名所有所有通過驗證的使用者所有群組所有權限已刪除所有同步會期.允許多個電子郵件地址?允許變更項目編號的型態變更 IMSP 登入變更 IMSP 密碼變更 IMSP 使用者變更電子郵件住址American Samoa (美麗堅薩摩亞)在列出資料夾: %s 時發生一個錯誤在計算資料夾: %s 時發生一個錯誤一個無效的值被使用.發生了一個未知的錯誤.一個未知的人物Andorra (安道耳)Angola (安哥拉)Anguilla (安圭拉島)匿名代理存取答案Antarctica (南極大陸)Antigua and Barbuda (安提瓜島及巴爾布達島)欄位任一部份應用程式應用程式內容: 應用程式清單已就緒已是最新版本.批准四月阿拉伯文 (Windows-1256)壓縮檔大小壓縮檔名稱你確定要刪除 '%s'?你確定要刪除所選擇的書籤嗎?你確定要刪除所選擇的項目嗎?你確定要刪除 "%s" 的註冊申請嗎?你確定要刪除 "%s" 以及任何的次群組?Argentina (阿根廷)Armenia (亞美尼亞)亞美尼亞文 (ARMSCII-8)藝術Aruba (阿魯巴島)Ascension Island文字藝術亞洲/太平洋地區執行操作維護前顯示確認對話?分配欄位附件嚐試刪除一個不存在的群組.嚐試刪除一個不存在的權限.嚐試編輯一個不存在的群組.嚐試編輯一個不存在的共享.屬性八月Australia (澳大利亞)Austria (奧地利)Auth_crysql: 找不到所需要的 imap 延伸套件.Auth_cyrus: 伺服端並未提供該項支援.Auth_cryus: 找不到所需要的 imap 延伸套件.Auth_ftp: 找不到所需要的 FTP 延伸套件.請重新編譯 PHP 並且加入 --enable-ftp 選項,例如 configure --enable-ftpAuth_imap: 找不到所需要的 IMAP 延伸套件.Auth_krb5: 找不到所需要的 krb5 延伸套件.Auth_ldap: 新增使用者這項功能目前並不支援目錄服務Auth_ldap: 刪除使用者這項功能目前並不支援目錄服務Auth_ldap: 找不到所需要的 LDAP 延伸套件.Auth_ldap: 無法新增使用者 "%s". 伺服器回應: Auth_ldap: 無法移除使用者 "%s"Auth_ldap: 無法更新使用者 "%s"Auth_ldap: 更新使用者這項功能目前並不支援目錄服務Auth_msad: 無法新增使用者 "%s". 伺服器回應: Auth_msad: 無法移除使用者 "%s"Auth_msad: 無法更新使用者 "%s"Auth_smbauth: 找不到所需要的 smbauth 延伸套件.驗證憑證IMAP 伺服器驗證錯誤.驗證失敗.驗證失敗. %sRADIUS 驗證錯誤.FTP 驗證錯誤.SSH2 驗證錯誤.SMB 驗證錯誤.可用的欄位:Azerbaijan (亞塞拜然)AzurBOFH 藉口Web 伺服器在作為閘道或代理伺服器 Proxy 時收到無效的回應錯誤的要求kerberos 密碼錯誤.kerberos 使用者名稱錯誤.Bahamas (巴哈馬)Bahrain (巴林)波羅的海文 (ISO-8859-13)Bangladesh (孟加拉)Barbados (巴貝多)Barbie找不到圖示目錄 "%s".秘件副本BelarusBelgium (比利時)Belize (貝里斯)Benin (貝寧)Bermuda (百慕達)Bhutan (不丹)生日找不到應用程式"%2$s"的區塊"%1$s".區塊設定區塊型態Blue MoonBlue and WhiteBolivia (玻利維亞)書籤已增加書籤Bosnia and Herzegovina (波士尼亞及黑賽哥維那)全部Botswana (波札那)Bouvet IslandBrazil (巴西)British Indian Ocean TerritoryBrown瀏覽瀏覽:Brunei Darussalam (汶萊)Bulgaria (保加利亞)Burkina Faso (布幾納法索)Burnt OrangeBurundi (蒲隆地)CRCCRL 分部點快取初始化尚未完成.行事曆零級風Cambodia (柬埔寨)Cameroon (喀麥隆)Camouflage無法連線至 IMAP 伺服器: %sCanada (加拿大)取消取消問題回報無法新增此共享! 名稱尚未設定.無法管理外掛會期控制器.無法連線至 IMAP 伺服器: %s無法複製檔案 - 來源與目標相同.無法刪除檔案 "%s".找不到暫存目錄.無法修改共享的擁有者!無法搬移檔案 - 目標位於來源之中.無法開啟檔案 "%s".缺少 'targetFile' 參數無法繼續處理.無法移除目錄 "%s".無法移除, %d 個子集已存在.無法移除, %d 個子集已存在.無法重組,所提供的記錄數目與先前所儲存的資料不符.無法自動重設密碼,請聯絡你的系統管理員.無法傳送簡訊到指定的號碼.無法觸發共享目錄 %s.無法寫入檔案 "%s"Cape Verde (維德角)代理商分類與標籤分類Cayman Islands (開曼群島)副本行動電話塞爾特文 (ISO-8859-14)Central African Republic (中非共和國)中歐 (ISO-8859-20憑證細節憑證擁有者憑證政策Chad (查德)更改更改你的密碼更改你的的全名以及回郵地址.修改瀏覽或搜尋時呈現畫面的欄數.目前的設定並未支援密碼變更. 請聯絡你的管理員.電子郵件地址分隔字檢查檢查新版本查驗中...子Chile (智利)China (中國)簡體中文 (GB2312)正體中文 (Big5)選擇應用程式:選擇密碼選擇一個使用者名稱日期顯示方式:Christmas Island (聖誕島)找不到 %s 的類別定義.晴清除查詢清除使用者: %s清除使用者清除使用者的資料早轉晴晚轉晴按滑鼠鍵以繼續Clickatell 透過 HTTP客戶端錨點關閉關閉視窗雲量早多雲晚有雲陰Cocos (Keeling) Islands折疊折疊資料夾Colombia (哥倫比亞)調色盤16進位顏色代碼欄位標題邏輯卡通命令批次命令評論稱呼Comoros (科摩羅)公司完全折疊完全展開電腦環境條件設定差異與 PDA 掌上型電腦,智慧型手機以及 Outlook 的同步設定.設定資料過期.設定 %s確認密碼確認新電子郵件住址與其他請求發生衝突Congo (剛果)Congo, Republic of (剛果共和國)Congo, The Democratic Republic of the (剛果民主共和國)連結失敗.連結失敗: 連結至公開金鑰伺服器時遭拒.連結至公開金鑰伺服器時遭拒. 原因: %s (%s)連結至 FTP 檔案伺服器失敗.連結至 SSH2 伺服器失敗.連絡人壓縮檔案的內容型態: %s"%s" 檔案內容繼續Cook Islands (科克群島)Cookie書籤複製完成: 複製複製失敗: %s不支援資料夾複製.CornflowerCost IDCosta Rica (哥斯大黎加)Cote d'Ivoire (象牙海岸)無法以 PGP 加密郵件: 無法以 PGP 執行郵件簽章: 無法以 S/MIME 加密郵件.無法為 S/MIME 郵件簽章.無法新增連絡人. %s無法繫結 LDAP 伺服器無法繫結 LDAP 伺服器無法繫結 MSAD 伺服器無法檢查損益. %s無法連結至 LDAP 伺服器無法連結至 memcache 伺服器.無法連結至伺服器 "%s" 使用 FTP: %s無法建立配置群組. %s無法解密 PGP 資料: 無法解密 S/MIME 資料.無法刪除連絡人. %s無法刪除配置清單. %s無法刪除更新程式 "%s".無法決定收件人的電子郵件位址.無法獲取完整的通訊錄.無法獲取完整的配置清單.無法獲取配置清單中的群組.無法載入策略 "%s".無法建立目錄 "%s".無法自金鑰伺服器取得公開金鑰.無法開啟 "%s" 以寫入.無法開啟 %s.無法開啟維護工作模組 %s無法開啟目錄 "%s".無法連接 LDAP 伺服器.無法連接 LDAP 伺服器: %s無法讀取 %s.無法讀取回應 PDU無法重新設定使用者的密碼. 部分的細節不正確. 請聯絡你的系統管理員以協助處理.無法讀取存取控制表(Access Control List)無法讀取通訊錄. %s無法讀取配置清冊. %s無法讀取配置清冊. %s無法讀取伺服器的相關特性無法回復設定.無法刪除目錄 "%s".無法儲存 %s 的設定.無法儲存備份設定.無法儲存備份設定: %s.無法儲存更新程式到: "%s".無法儲存備份設定 %s.無法儲存設定檔 %s. 你可以使用 %s 中的其他功能儲存設定或手動複製下面程式碼到 %s.無法搜尋 LDAP 伺服器.無法搜尋 MSAD 伺服器.無法刪除 "%s".無法更新連絡人. %s無法更新配置清冊. %s無法覆寫 "%s": %s 的設定.找不到 Mozilla 的分頁. 請確認分頁是否開啟.無法賦予使用者 "%s" 下列權限到信件匣 "%s": %s技術句國家國家下拉功能表建立建立信件匣建立信件匣建立一個新的建立次信件匣已建立建立者信用卡號碼Croatia (克羅西亞)Croatia/Hrvatska (克羅西亞/赫爾瓦次卡)Cuba (古巴)目前的 4 個月相目前警示目前會期目前時間目前天氣目前的狀況: 自訂一些登入%s後所要執行的工作.Cyprus (賽普勒斯)西里爾文 (KOI8-R)西里爾文 (Windows-1251)西里爾文/烏克蘭文 (KOI8-U)Czech Republic (捷克共和國)日DNS 名稱解析或其他錯誤 (%s)資料來源名稱 (請參考 http://pear.php.net/manual/en/package.database.db.intro-dsn.php)每日資料Kolab XML 物件 %s 中的資料值是空的!樹狀資料樹狀資料瀏覽資料庫資料庫搜尋日期收到日期日期與時間選擇選擇日期日期: %s; 時間: %s白天十二月預設預設顏色預設的身份識別預設命令解析器(Shell)預設目錄的型態 %s 不存在!定義刪除刪除 "%s"刪除所有 SyncML 資料刪除信件匣刪除群組刪除權限刪除、清空郵件刪除目前的資料夾?刪除郵件刪除"%s"的權限確定要刪除"%s"的權限以及次權限?刪除所選擇的身份識別資料刪除次信件匣刪除這個資料夾刪除/清空書籤刪除完成: 資料夾刪除完成:更新程式 "%s" 已刪除.已刪除裝置 "%s" 的同步會期以及資料庫 "%s".遞送時間Denmark (丹麥)部門問題描述描述細節請參考系統管理登錄.細節研發裝置露點溫度最後一小時的露點溫度: 露點溫度: 撥打 %s目錄 %s 無法寫入關閉以 24 小時制顯示?顯示選項顯示行在瀏覽/搜尋的畫面中顯示書籤被點選的次數?顯示詳細的預報當顯示書籤時也顯示編輯圖示?顯示預報 (TAF)顯示格式傳送回條Djibouti (吉布地)不刪除不要直接存取 maintenance.php第一筆記錄是否包含欄位名稱? 如果是請勾選.Dominica (多明尼加)Dominican Republic (多明尼加共和國)還沒有帳號嗎? 註冊.下載 %s下載資料夾下載設定檔案另存為 PHP 程式.將下方的"加入書籤"連結拉到你的"連結"工具列將下方的"加入書籤"連結拉到你的"個人工具列".下拉功能表藥品動態郵件E 系字元電子郵件錯誤EU VAT 識別East Timor (東帝汶)Ecuador (厄瓜多爾)編輯編輯 "%s"編輯區塊編輯書籤編輯群組編輯權限編輯權限編輯 %s 的權限編輯選項編輯權限編輯"%s"的權限教育Egypt (埃及)El Salvador (薩爾瓦多)電子郵件電子郵件住址電子郵件通知電子郵件住址必須吻合.找不到電子郵件通知住址.電子郵件確認Email-to-SMS 閘道器表情符號空白信件.空白路徑.空白結果空白結果.結束年份如果你需要重設密碼,請輸入一個安全問句,例如 '你寵物的名稱?':輸入以下文字:Equatorial Guinea (赤道幾內亞)Eritrea (厄立特里安)錯誤轉換事項時發生錯誤.自目錄 %s 刪除資料時發生錯誤; 必須是 [app]/[path]刪除同步會期時發生錯誤:刪除同步會期時發生錯誤:搜尋使用者 ID "%s" 時發生錯誤!搜尋使用者電子郵件住址 "%s" 時發生錯誤!搜尋使用者 uid "%s" 時發生錯誤!傳送 PDU 時發生錯誤在伺服器 %s 設定 LDAP v3 協定時發生錯誤!更新密碼: %s 時發生錯誤電子郵件錯誤訊息.寫入 "%s" 時發生錯誤.Estonia (愛沙尼亞)Ethiopia (衣索比亞)種族Europe (歐洲)European Union (歐盟)每 15 分鐘每 2 分鐘每 30 秒鐘每 5 分鐘每次登入每 30 分鐘每小時每 1 分鐘範例值:執行展開執行失敗到期日解說員匯出書籤特大FTP 上傳設定.Fade to GreenIMAP 郵件 %s 讀取失敗. 錯誤 %sIMAP 郵件 %s 讀取本體失敗. 錯誤 %sIMAP 郵件 %s 讀取表頭失敗. 錯誤 %s無法連線至 LDAP 伺服器.無法連線至 MSAD 伺服器.無法連線至 SMB 伺服器.複製失敗自 "%s".複製失敗到 "%s".無法建立一個新的 SASL 連接.載入 Kolab IMAP 驅動程式 %s 失敗載入 Kolab XML 驅動程式 %s 失敗搬移失敗到 "%s".擷取失敗: %s普通Falkland Islands 法蘭克福群島 (馬爾維納斯群島)Faroe Islands嚴重錯誤:傳真二月資訊提供資訊位址感覺感覺: 毛毛雨短暫陣雪欄位陣列變形文驗證碼(Figlet CAPTCHA)變形文字體Fiji (斐濟)檔案數目: %d 個檔案檔案總管檔案名稱檔案選擇選擇檔案以匯入:檔案上傳檔案上傳功能未被支援.過濾器Finland (芬蘭)上半月上弦顯示第一層固定比例閃光燈上下顛倒霧早多霧晚有霧霧資料夾目錄 "%s" 不存在目錄 %s 不存在!目錄 %s 有型態 "%s" 但沒有 "事件"!資料夾名稱不可空白匯入到資料夾:資料夾字型食物禁止使用氣象預報 (TAF)預報天數 (預報天數包括白天以及夜間的資料;如果預報天數較長將佔用比較寬幅的版面)忘記密碼?表單小語小語類型小語小語 2論壇自動轉信物件已移動星期五France (法國)France, Metropolitan凍毛毛雨French Guiana (法屬蓋亞那)French Polynesia (法屬玻利尼西亞)French Southern Territories寄件人從完整描述滿月全名Gabon (加彭)Gambia (甘比亞)閘道逾時產生 %s 個系統設定已產生的設定資料Georgia (喬治亞共和國)Germany (德國)Ghana (迦納)Gibraltar (直布羅陀)名稱一般選項前往哥德爾請求的資源已不存在於伺服器中Google 地圖Google 搜尋Google 搜尋尚未啟用.灰階Greece (希臘)希臘文 (ISO-8859-7)GreenGreenland (格陵蘭島)grenada (格瑞納達)Grey群組管理群組名稱不得空白群組未建立: %s.Group_ldap: 無法新增群組 "%s". 伺服器回應: Group_ldap: 無法刪除群組 "%s". 伺服器回應: %sGroup_ldap: 無法更新群組 "%s". 伺服器回應: %s群組Guadeloupe (哥德洛普)Guam (關島)Guatemala (瓜地馬拉)格恩西島來賓訪客留言Guinea (幾內亞)Guinea-Bissau (幾內亞比索共和國)Guyana (蓋亞那)超文連結語言HTML 格式郵件找不到 HTTP 驗證.HTTP 狀態不支援的 HTTP 版本Haiti (海地)雜湊-演算靄表頭表頭Heard Island and McDonald Islands (赫德島和麥克唐納群島)Heard and McDonald Islands (赫德島和麥克唐納群島)大雨大雷雨希伯來文 (ISO-8859-8-I)高度說明說明標題_T說明?半球這裡是檔案的開始:Hi-Contrast隱藏結果高最受歡迎最受歡迎的書籤Holy See (梵諦岡)住家地址家目錄住家電話Honduras (宏都拉斯)Hong Kong (香港)HordeHorde WebsiteHorde/Kolab: 郵件 %2$s 中找不到物件型態 %1$sHorde/Kolab: 無法獲取部份 %s 型態的 MIME 識別號碼主機欄位數目共計?每幾秒檢查一次新文章?溼度溼度: 滑稽大師Hungary (匈牙利)I 系字元IMAP 錯誤. 信件匣: %s. 錯誤: %sIMAP 錯誤. 郵件: %s. 錯誤: %sIMAP 錯誤. 伺服器: %s. 錯誤: %sIMAP 郵箱建立失敗: %sIMAP 郵箱刪除失敗: %sIMAP 郵箱磁碟配置建立失敗: %sIP 位址無法使用.IP 位址並不在 CIDR 的允許區塊中.IP 位址強行鎖定 IPIceland (冰島)純圖示%s的圖示圖示及文字號碼Ideas身份識別的名稱:如果無法正確地顯示, %s 以另開啟郵件於新視窗當中.如果看到這則沒有影像的訊息,這表示你的瀏覽器無法顯示上傳的影像.影像驗證碼上傳影像匯入匯入書籤匯入, 步驟 %d匯入欄位: %s匯入欄位:由於系統無法自動判斷下方左邊欄位的中文名稱,請於下方選擇左右各一個欄位新增配對.左邊是匯入檔案的欄位,右邊是可供映照的欄位. 點選 "新增對" 以標示配對. 點選 "下一步" 開始進行匯入.包含次資料夾輸入不正確的作用碼.請檢查你的使用者名稱及密碼使用者名稱不正確或者電子郵件住址已變更.請聯絡你的系統管理員以協助處理.India (印度)個別使用者Indonesia (印尼)資訊無可用的資訊.已繼承的成員內文通知插入新密碼將寄發到這個郵件地址:插入郵件安全問句的答案:在純文字模式中自藝廊插入照片點數不足以至於無法傳送給配置群組.點數不足.整數整數列內部錯誤: 一個屬性必須永遠與自己匹配: %s內部 LDAP 錯誤: 細節請參考系統管理登錄.內部伺服器錯誤內部資料庫錯誤: 細節請參考系統管理登錄.Internet ExplorerInternet Explorer 使用者要輸出我的最愛必須到"檔案"選單並選擇"匯入和匯出".無效的 UDH(使用者資料表頭).無效的 VAT 識別號碼格式.無效的 ZIP 資料.無效的應用程式.設定的 basedn 無效無效的批次號碼.電子郵件住址: %s 含有無效的字元.送出的資料無效.無效的目標住址無效的檔案格式傳送的群組 ID 無效 (DN 語法錯誤).無效的授權碼.無效的地區.無效的 msg_type.無效的或找不到 api_id.無效的或找不到參數.無效的父權限.無效的夥伴識別碼.無效的產品碼.無效的通訊協定.無效的收件人:"%s"由伺服器發生無效的回應.無效的來源住址.無效的萬國碼資料.資產回復選擇Iran, Islamic Republic of (伊朗)Iraq (伊拉克)Ireland (愛爾蘭)Isle of Man (曼島)局部雷雨Israel (以色列)簽發者Italy (義大利)Jamaica (牙買加)一月Japan (日本)日文 (ISO-2022-JP)澤西島Jordan (約旦)七月六月Kazakhstan保留原樣?Kenya (肯亞)Kerberos 認證錯誤.核心新手金鑰建立金鑰特徵金鑰識別號碼金鑰長度金鑰型態金鑰語法目前的公開金鑰伺服器中,已經存在你的金鑰.關鍵字兒童Kiribati (基里巴斯)KolabKolab XML: 函數 %s 遺失!Kolab 快取: 在快取中找不到物件 uid %s !Korea, Democratic People's Republic of (北韓)Korea, Republic of (南韓)韓文 (EUC-KR)Kuwait (科威特)KyrgyzstanLDAP 搜尋 DN %s: %s 時發生錯誤!語言Lao People's Democratic Republic (寮國)大下半月最近一次密碼變更於下弦月上次更新:上一次登入: %s上一次登入: %s 自 %s上一次登入: 第一次登入Latvia (拉脫維亞)Lavender法律Lebanon (黎巴嫩)左邊表頭左邊值必須在請求中提供 Content-Length 表頭Lesotho (賴索托)Liberia (賴比瑞亞)Libyan Arab Jamahiriya (利比亞)Liechtenstein (列支敦斯登)Light Blue微雨小雨早有小雨晚有小雨小陣雨小雨有雷小雪小陣雪打油詩連結連結網址連結快捷鍵連結風格連結目標連結文字顯示時連結郵件住址到編寫郵件頁面?連結標題屬性連結Linux Cookie清單列出 - 使用者可以看到這個信件匣列出資料庫列出表格討論群組-檔案櫃討論群組-求助討論群組-識別號碼討論群組-擁有者討論群組-寄件人討論群組-訂閱討論群組-取消訂閱列出警示失敗: %s列出會期失敗: %s列出使用者的功能被關閉文學Lithuania (立陶宛)載入中...當地時間: 地區與時間地區登入登出登入登入工作登入失敗, 請檢查閣下的用戶名和密碼, 然後重試.登入失敗.長句愛情低LoyolaLoyola BlueLuxembourg (盧森堡)月每日訊息MS-TNEF 附加檔案中沒有資料.MSGMacao (澳門)Macedonia, The Former Yugoslav Republic of (馬其頓共和國)Madagascar (馬達加斯加)魔術郵件郵件管理Malawi (馬拉威)Malaysia (馬來西亞)Maldives (馬爾地夫)Mali (馬利)Malta (馬爾他)管理你的分類,並且為分類設定顏色.MapQuest-地圖三月標記 (其他)標記 (看過)標記成 看過/未看過標記成其他的識別 (例如. 重要/已回覆)Marshall Islands (馬夏爾群島)Martinique (馬提尼克島)吻合匹配中的欄位:Mauritania (茅利塔尼亞)Mauritius (摩里西斯)允許的最大點數.附件數目已超出允許上限.最近 24 小時的最高溫度: 最近 6 小時的最高溫度: 書籤上限數目資料夾上限數目區塊上限數目允許最大檔案尺寸(bytes)允許最大長度五月Mayotte (馬約特島)醫學中成員Memcache 會期追蹤功能未啟用.功能表選單模式:郵件郵件驗證已完成,但是使用者的簽章卻無法通過驗證.簡訊已過期.簡訊型態機場天氣報告Metar 區塊無法使用.Metar 區塊無法使用. 細節請參考系統管理登錄.MetarDB 尚未連接.方法方法 "%s" 未被定義不接受客戶端的請求方法公制Mexico (墨西哥)Micronesia, Federated States of (密克羅尼西亞)Mime 型態最近 24 小時的最低溫度: 最近 6 小時的最高溫度: 最短密碼效期尚未到期映射雜項設定檔遺失. 如果要使用這個應用程式你必須現在就產生他.找不到簡訊的 ID.找不到會期的 ID.星期一行動郵件行動電話號碼溫和更新日期模組Moldova, Republic of (摩爾多瓦)Monaco (摩納哥)星期一Mongolia (蒙古)Montenegro (蒙特尼哥羅)月年下拉選擇每月蒙塞拉特月相其他作用方式在第%d行找到的欄位數目已超出預期%d.摩洛哥最多點選最多點選的書籤多雲時晴多雲時陰多雲時陰有風晴時多雲搬移下移左移右移上移下移上移請求的資源已不存在書籤搬移完成: 資料夾搬移完成: Mozambique (莫三比克)MozillaMozilla/Firefox 使用者要匯出目前的書籤設定必須到"書籤管理者"並從"工具"選單選擇"匯出".複選式下拉功能表Multimap-英國-地圖請求中的資源指向一群文件複選必須要提供一組有效的鎖定識別碼.我的帳號我的帳號資訊個人站台個人站台頁面配置Myanmar (緬甸)不,我不同意名稱Namibia (那米比亞)Nauru (諾魯)NeXTNepal (尼泊爾)Netherlands (荷蘭)Netherlands Antilles (荷屬安地列斯)Netscape 為基礎的網址Netscape 憑證作廢網址Netscape 憑證政策網址Netscape 更新網址Netscape 作廢網址Netscape SSL 伺服器名稱Netscape 憑證的註解Netscape 憑證型態網路工具從未新增書籤New Caledonia (新喀里多尼亞)新增分類新增資料夾寫信給 %s新月新增次資料夾新使用者名稱 (非必要)New Zealand (紐西蘭)新密碼新密碼將於 %s 到期.新密碼不符合.新聞下一步下次 4 個月相下一個選項下一頁>Nicaragua (尼加拉瓜)Niger (尼日)Nigeria (奈及利亞)晚上Niue (紐埃島)否找不到書籤無內容靜音無可供顯示差異的設定資料.無可用的策略建造 ISO 影像.沒有批次樣式.所指定的位置上沒有區塊存在無書籤可顯示沒有變更.無法在目前權限中增加次權限.沒有指定的 %s 設定資訊.沒有指定的 FTP VFS 設定資訊.沒有指定的 SQL VFS設定資訊.沒有指定的 SQL-File VFS設定資訊.沒有指定的 SSH2 VFS 設定資訊.無剩餘點數.未提供目的.檔案未上傳找不到圖示.位置資訊尚未設定尚未提供位置資訊.未規劃鎖定驅動程式(lock driver)!物件 %s 無對應的訊息未提供簡訊.未指定名稱.未指定號碼.無敏感小語否或者在 Kolab XML 物件中沒有可讀取的內容未輸入 OpenSSL 二元執行檔的全路徑. PKCS 12 規格的加密資料需要用到該程式.沒有待審的註冊申請.磁碟配額未設定無尚未指定欄位分隔字元.尚未發行穩定版本.無此檔案無此主旨 %s!無暫存目錄可供快取.未傳送使用者名稱或密碼.無可用的 XML 資料被傳回空白值原始設定檔中找不到版本資訊. 重新產生設定檔.在你的設定檔中找不到版本資訊. 重新產生設定檔.非授權資訊無日耳曼文 (ISO-8859-10)Norfolk Island (諾福克島)北半球Northern Mariana IslandsNorway (挪威)用戶端瀏覽器不接受要求頁面的 MIME 類型非之後非之前請求的文件不存在伺服器無法支援請求中的功能未修改不是一個目錄程式尚未完成.未被支援備註:備忘錄沒有可瀏覽的,回去.什麼也不編輯十一月數字文章顯示數目書籤顯示數目字元數字元寬度行數更新配置群組時未指定數目.O 系字元確認物件物件建立者找不到物件.物件形態 %s 不准用在目錄形態 %s 上!八進位十月敏感小語過濾器辦公室新密碼必須與舊密碼不同.舊的物件 %s 並不存在.舊的物件 %s 沒有一個對映的 uid.舊密碼舊密碼不正確Oman (阿曼)在比較新版的 I.E 瀏覽器, 你可能需要將 %s://%s 加入到信任的網站中才能生效.(方法:點選I.E 瀏覽器 -> 工具 -> 網際網路選項 -> 安全性 -> 信任的網站 -> 網站)觸發點選事件只有 IMAP 伺服器支援信件匣分享功能.僅限敏感小語只允許一個郵件住址.只允許一個郵件住址.只有擁有者與系統管理員可以變更共享權限開啟資料夾_l在新的視窗開啟在新的視窗開啟連結OpenSSL 錯誤: 無法從 S/MIME 簽章附件解開資料.作業系統選項%s選項組織組織單位組織其他其他資訊其他選項其他字元擁有人無法決定信件匣 %s 的擁有者.擁有者:PAM 驗證無效.PEAR::郵件伺服端PGP 數位簽章PGP 加密資料PGP 公開金鑰PGP 已簽章/已加密 資料PHPPHP 程式碼PHP 草稿PHP 並未支援 imap_myrights.午後有雲午後毛毛雨午後有霧午後小雨午後小雪午後有雨午後陣雨午後有雪午後陣雪午後晴午後雷雨POSIX extension 遺失PHP 草稿_HPakistan (巴基斯坦)Palau (帛琉)Palestinian Territory, Occupied (巴勒斯坦佔領區)Panama (巴拿馬)Papua New Guinea (巴布亞新幾內亞)Paraguay (巴拉圭)部分內容多雲密碼密碼變更完成.密碼不正確沒有指定密碼以供 RADIUS 驗證.密碼確認密碼:密碼: 密碼必須吻合.貼上保留待審登錄:成員執行維護操作登入後執行維護操作?權限"%s"的權限未被刪除.存取遭拒權限權限管理我的Peru (秘魯)寵物Philippines (菲律賓)電話電話號碼藝廊PitcairnPitcairn Island (皮特凱恩島)純文字格式的郵件Platitudes請選擇一種鈴聲.請輸入一個月份及年份.請輸入新增分類的名稱:請輸入一個新資料夾的名稱:請輸入一個有效的 IP 位址請輸入一個有效的日期;勾選此月份的日期.請輸入一個有效的時間.請輸入新資料夾的名稱:請斟酌修改名稱請提供問題的摘要.請輸入你的使用者名稱及密碼請閱讀下列內容.你必須同意這些事項才能使用系統.請先選擇一個項目請輸入新的分類名稱:Poland (波蘭)政治投票蹦談通知埠號Portugal (葡萄牙)發表遞送郵件到這個信件匣 (not enforced by IMAP)Postnuke最近 %d 小時的降雨量: 降雨
機率指定條件失敗偏好儲存目錄無效.Prefs_ldap: 找不到所需要的 LDAP 延伸套件.氣壓海平面氣壓: 氣壓: 預覽上一個選項私密金鑰問題問題描述提示內容保護郵件住址以防網路蟑螂竊取?需要代理伺服器 Proxy 驗證公開金鑰公開金鑰演算公開金鑰資訊公開/私密金鑰對並未被產生.Puerto Rico (波多黎各)清空清空郵件Purple HordeQatar (卡達)查詢磁碟配置RSA 公開金鑰 (%d 位元)選擇鈕雨早有雨晚有雨陣雨雨有雪雨轉雪隨機小語比率讀取讀取郵件真的要刪除 "%s" 嗎? 這項操作將無法恢復.確定刪除此區塊?真的要清除使用者 "%s" 的資料嗎? 這項操作將無法恢復.領域:重新整理動態目錄元件:重新整理個人站台內容:重新整理個人站台內容:常規表示式物件瀏覽評論遠端主機:遠端伺服器遠端網址 (http://www.example.com/horde):移除移除對自伺服器暫存目錄中移除已儲存的設定程式.移除使用者移除使用者: %s更名這個資料夾回覆到報表請求的訊息主體過於龐大客戶端無法於有效時限內完成作業需求未被回應: 錯誤號碼:請求的 URI 太長無法滿足要求的範圍找不到所需的服務.%2$s 的設定必須指定 "%1$s"VFS 的設定必須指定 "%s"設定資料必須指定 "%s"必須欄位所請求的內容無效 - 可能是惡意請求.重設重設內容重設密碼重設你的密碼:回存最後一個查詢結果%s 的結果返回選項已回傳的錯誤訊息:再次輸入新密碼Reunion (留尼旺)Reunion Island (留尼汪島)回復設定撤銷金鑰對並未被產生.網頁編輯器選項謎語滑鼠右鍵功能表右邊表頭右邊值角色Romania (羅馬尼亞)旋轉 180 度逆時針 90 度旋轉順時針 90 度旋轉執行Russian Federation (俄羅斯)Rwanda (盧安達)S/MIME 加密簽章郵件已使用 S/MIME 加密SASL 驗證無效.SMPP 閘道器簡訊資料庫草稿SQL 資料搜尋語句加密終端機成功資料庫草稿_Q星期六Saint Helena (聖赫勒納)Saint Kitts and Nevis (聖克里斯多福及尼維斯)Saint Lucia (聖露西亞)Saint Pierre and MiquelonSaint Vincent and the Grenadines (聖文森及格瑞那丁)Samoa (薩摩亞群島)San Marino (聖馬利諾)Sao Tome and Principe (聖多美及普林西比)衛星提供者Saudi Arabia (沙烏地阿拉伯)儲存儲存 "%s"儲存選項儲存並結束將產生的設定檔以 PHP 語言格式儲存到你的伺服器暫存目錄中.設定 %s 已儲存.更新程式已儲存到: "%s".零星陣雨零星雷雨科學搜尋_r搜尋搜尋書籤搜尋引擎搜尋結果 (%s)搜尋:請求的資源可以在別的位置找到全選選擇所有書籤選擇所有資料夾選擇檔案不選選擇一個日期選擇一個群組以新增:選擇一位新的擁有者:選擇一部伺服器選擇一位使用者以新增選擇所有選擇所有日期元件.選擇一個影像選擇一個物件選擇編輯器的插件不選擇於以下的視窗中選取你要的字元.以滑鼠複製所選文字,然後貼上文件編輯區.選擇日期與時間格式:選擇日期分隔:選擇日期日期格式:選擇日期與時間順序:選擇欲變更的身份識別:選擇時間分隔:選擇日期時間格式:選擇你的顏色配置選擇偏好語言:選擇: %s, %s選擇: %s, %s, %s, %s自毀中...傳送問題反應傳送簡訊傳送失敗: %sSenegal (塞內加爾)感測器: 九月Serbia (塞爾維亞)Serbia and Montenegro (塞爾維亞與蒙特尼哥羅)序號伺服器時間伺服器資料錯誤或者無法使用.服務無法使用會期管理會期 ID 已過期.會期時戳:會期核取方塊設定權限為外部伺服器設定驗證憑證,像是用戶名稱與密碼.允許你於忘記密碼的時候,可以自行重設密碼.設定遠端伺服器上屬於你的個人站台.設定你的偏好語言, 時區以及日期格式.設定你的啟始應用程式,顏色配置,頁面更新頻率,及其他顯示選項.設定更新程式就緒有好幾個地點和這個參數有關: Seychelles (塞昔爾)共享 "%s" 並不存在.找不到共享 ID "%s".共享號碼 %d 並不存在.此驅動程式並未支援共享名稱Shibboleth 驗證無效.購物簡短摘要是否為大部份的連結定義快捷功能鍵?登入後顯示所有資料夾中的書籤?顯示顯示新產生與原儲存設定檔的差異.顯示更多資料?顯示圖示?每次登入後顯示上一次的登入時間?顯示保留原樣選項?顯示點選器?顯示秒?於左邊顯示 %s 功能表?顯示上傳?持續陣雨早有陣雨晚有陣雨遠方有陣雨收縮先收縮或移開相鄰區塊Sierra Leone (獅子山國)註冊簽章簽章演算SimplexSingapore (新加坡)大小略過維護Slovakia (斯洛伐克)Slovenia (斯洛伐尼亞)小打盹...雪陣雪陣雪早有陣雪晚有陣雪積雪深度: 雪水當量: Solomon Islands (索羅門群島)Somalia (索馬利亞)歌與詩排序書籤依:排列依排列方向選擇來源地址South Africa (南非)南歐 (ISO-8859-3)South Georgia and the South Sandwich Islands南半球Soviet Union (蘇聯)空白行Spain (西班牙)垃圾郵件特殊字元輸入特殊字元運動Sri Lanka (斯里蘭卡)標準星際爭霸戰啟始年份省狀態儲存格式街道字串列星期天找不到次目錄 "%s"主旨送出增加 "%s" 到系統的申請已送出. 你必須等到該申請被核准後才能登入.成功成功的加入 "%s" 到系統中.成功的自系統中清除使用者 "%s" 的資料."%s"已刪除完成.成功的自系統中移除 "%s".已成功的回復設定. 請重新載入檢視差異.已成功的備份設定資料.已成功的備份設定資料 %s.成功的更新 "%s"已成功的覆寫 %sSudan (蘇丹)日出日落星期天晴日出日出/日落日出: 日落日落: Suriname (蘇利南)綽號Svalbard and Jan Mayen (斯瓦爾巴和揚馬延)Svalbard and Jan Mayen Islands (斯瓦爾巴群島和揚馬延島)Swaziland (史瓦濟蘭)Sweden (瑞典)切換通訊協定Switzerland (瑞士)同步行動裝置聯合資訊提供Syrian Arab Republic (敘利亞)雷雨雷雨有風雷雨早有持續雷雨晚有持續雷雨TAB 分隔格式檔案(.tsv)表格集表格操作功能表所有標籤台灣台灣Tajikistan (塔吉斯坦)Tango BlueTanzania, United Republic of (坦尚尼亞)待辦事項Teal電話號碼最近一小時的溫度: 溫度溫度: 溫度
(%s高%s/%s低%s) °%s樣板找不到樣板 "%s".顯示書籤時所用的樣板:暫時重新導向內容本文區純文字星期四泰文 (TIS-620)Thailand (泰國)FTP 延伸(extension)無效.歷史系統已停用.Horde/Kolab 整合工程並未支援 "%s"IMSP 紀錄無法被初始.Maintenance 類別並未成功載入SSH2 PECL 延伸(extension)無效.你的系統管理員必須先設定好一個權限後端(Permissions backend)才能讓你使用權限系統.警示伺服端(alarm backend)目前無法使用.警示伺服端(alarm backend)目前無法使用: %s警示已被刪除.警示已儲存.聯絡號碼未指定,空白或在資料庫中找不到.驗證郵件簽章需要有一個已解開的 PGP 區塊.配置群組的識別號碼(ID)不是未指定,就是空白或者不在資料庫中.配置群組未指定.電子郵件地址 %s 已加入你到你的身分識別中. 你現在可以關閉此視窗.需要一個經過加密的網路連結.檔案 %s 應該包含一個 %s 設定.檔案 %s 應該包含一些 %s 設定.此檔案中沒有資料.移除使用者資料: %s 導致下列程式發生錯誤已登錄完整的錯誤資訊,該訊息僅提供系統管理員參考.身份識別 %s 已被刪除.無法判斷影像檔尺寸或者該檔案大小是 0 bytes. 上傳動作可能已經被中斷.影像檔的大小超過允許最大值 (%d bytes).GnuPG 二元檔的路徑必須定義在 Crypt_pgp:: 類別中.成員身份服務無法及時連線. 請稍後再試或使用其他成員身份.成員身份服務無法及時連線. 請稍後再試或使用其他成員身份你曾於 %s 寄給 %s 一封主旨為 "%s" 的信件已被開啟. 但這並不能保證該信件的內容已完全被收件人看完或了解.連結到編寫郵件頁面所使用的名稱新的寄件人地址未被確認, 請稍後再試: 必須是一個數字.Horde_Crypt_smime:: 類別,必需要有 openssl 模組.此偏好 "%s" 資料因為超過最大允許值,所以無法被儲存目前並沒有可用的偏好設定儲存端,因此你的偏好設定未被載入. 不過你還是可以用預設值來操作.用以檢視此資料類型 (%s) 的程式並不存在於系統上.所提供的國碼不正確.引述字必須為單一字元.欄位分隔字必須為單一字元.此伺服器 "%s" 已被刪除.此伺服器 "%s" 已被儲存.此服務目前無法使用. 稍後再試.此服務目前忙碌中. 稍後再試."%s" 的註冊請求已被移除.指定的記錄 (%d) 並不存在.你所輸入的資料與畫面資料不符.從上一個步驟之後上傳的資料遺失.上傳檔案並未被儲存.使用者 "%s" 已存在.weather.com 區塊無法使用.找不到樣式配置目錄 "%s".此資料夾中沒有任何書籤目前沒有任何電子郵件地址等待確認.無可用的選項.無附件可直接開啟.此欄位中包含太多的字數.你已輸入 %d 個字數; 新增 "%s" 到系統: %s 時發生一個問題.自系統清除 "%s" 的資料時發生一個問題:複製書籤: %s 時發生一個錯誤刪除書籤: %s 時發生一個錯誤刪除資料夾: %s 時發生一個錯誤搬移書籤: %s 時發生一個錯誤搬移資料夾: %s 時發生一個錯誤自系統移除 "%s" 時發生一個問題:更新 "%s": %s 時發生一個問題上傳檔案時發生一個問題: %s 未被上傳.上傳檔案時發生一個問題: %s 大小超過允許最大值 (%d bytes).上傳檔案時發生一個問題: 僅部分的 %s 檔案被上傳.新增書籤: %s 時發生一個錯誤新增資料夾: %s 時發生一個錯誤.檢視郵件時發生一個錯誤.匯入聯絡人資料時發生錯誤:匯入 iCalendar 資料時發生一個錯誤.在設定表單中發生了一個錯誤.有可能你遺漏了必須填寫的欄位.執行通訊錄指定功能時發生一個錯誤. 請稍後再試一次.讀取聯絡人資料時發生錯誤.儲存書籤: %s 時發生一個錯誤儲存資料夾: %s 時發生一個錯誤.更新聯絡人資料時發生了一個錯誤. 請稍後再試.更新配置群組時發生了一個錯誤. 請稍後再試.此 IMAP 伺服器並未支援信件匣分享功能.此 VAT 識別號碼無效.此 VAT 識別號碼有效.這個警示無法被設定為打盹.這似乎不是正確的 rar 壓縮檔案.這似乎不是正確的 zip 壓縮檔案.這似乎不是正確的信用卡號碼.這個驅動程式允許你自 SMPP 閘道傳送簡訊.此驅動程式允許提供此服務的代理商透過 email-to-SMS 閘道器傳送郵件.這個驅動程式允許你自 Clicktell (http://clickatell.com) 閘道以 HTTP API 的方式傳送簡訊這個驅動程式允許你自 WIN (http://winplc.com) 閘道以 HTTP API 的方式傳送簡訊這個驅動程式允許你自 sms2email (http://sms2email.com) 閘道以 HTTP API 的方式傳送簡訊這個驅動程式允許你自義大利 Vodafone (http://www.190.it) 閘道以 SMTP 的 方式傳送簡訊. 這還需要一組郵件帳號以及 Vadafone 電話號碼配合.此欄位是必需要的.此欄位內容只允許整數數字.此欄位內容只允許數字及冒號.此欄位內容只允許八進位數值.此欄位內容必須為逗號或空白分隔的數字必須是一個數字.此欄位內容必須包含一組十六進位的 RGB 顏色代碼,例如 '#1234af'.這個表單已被處理過.這是 %s.這是 Kolab 群組的一個物件. 欲檢視此物件需要能支援Kolab 群組格式的電子郵件軟體.請參考 %s 以了解這些郵件軟體這封郵件並非以你慣用的字元集而是使用 (%s) 書寫而成.此數值最少必須是 1.此伺服器無法對 zip 及 gzip 格式檔案進行解壓縮此系統目前是停用的狀態.必須是一個數字.雷問題追蹤時間時間指南時間格式時分下拉選擇時間戳記或未知Timor-Leste標題僅限標題標題與描述標題,網址與描述收件人為了能夠快速的從你的瀏覽器新增書籤:欲排除配對請點選下方欄位後再點選 "移除對".如果要複選,請在點選滑鼠的同時按 Control鍵(個人電腦) 或 Command鍵(蘋果電腦).今天Togo (多哥)Tokelau明天Tonga (東加)幾分鐘前有太多的無效登入.總計變化千里達及托貝哥真或偽星期二Tunisia (突尼西亞)Turkey (土耳其)土耳其文 (ISO-8859-9)TurkmenistanTurks and Caicos IslandsTuvalu (土瓦魯)輸入你的選擇: U 系字元紫外線指數: 在 Kolab XML 物件中找不到 UID網址簡訊傳送狀況網址Uganda (烏干達)Ukraine (烏克蘭)無法存取 VFS 目錄.無法新增 %s: 因為目標信件匣已存在無法以 %s 繫結 LDAP 伺服器!無法改變 VFS 檔案 "%s" 的權限.無法變更 VFS 檔案 %s/%s 的權限.無法變更為 %s.無法檢查檔案大小 "%s".無法檢查檔案大小 "%s/%s".無法使用 SSL 連結.無法複製 VFS 檔案.無法建立 VFS 目錄 "%s".無法建立 VFS 目錄.無法建立 VFS 檔案.無法建立 VFS 目錄 "%s".無法建立目錄 %s; 必須是 [app]/[path]無法建立空白的 VFS 檔案.無法將資料解壓縮.無法刪除 "%s",此目錄並非空白.無法刪除 "%s": %s無法刪除 %s,此目錄並非空白無法遞迴刪除目錄.無法刪除 VFS 目錄.無法刪除 VFS 目錄: %s.無法刪除 VFS 檔案 "%s".無法刪除 VFS 檔案.無法刪除 VFS 目錄 "%s".無法遞迴刪除 VFS: %s.無法判斷目前的目錄.無法執行 smbclient.無法解開憑證細節無法載入%s的定義.無法搬移 VFS 檔案.無法開啟 VFS 檔案 "%s".無法寫入 VFS 檔案.無法開啟 VFS 檔案.無法開啟壓縮檔.無法讀取 VFS 檔案 (filesize() 函數執行失敗).無法讀取 VFS 檔案 (size() 函數執行失敗).無法讀取 vfsroot 目錄.無法更名 %s 為 %s: 因為目標信件匣已存在無法更名 %s; 必須是 [app]/[path] 而且在相同的程式.無法變更 VFS 目錄的名稱.無法移除 VFS 目錄: %s.無法變更 VFS 檔案 "%s" 的名稱.無法變更 VFS 檔案 %s/%s 的名稱.無法變更 VFS 檔案的名稱.無法執行 'mkisofs'.無法轉換 RTF 文件無法轉換 Word 文件無法轉換此 WordPerfect 文件無法觸發網址 %2$s 上信件匣 %1$s 的空閒/忙碌資訊更新無法寫入 VFS "%s" 檔案.無法寫入 VFS 檔案 (copy() failed).無法寫入 VFS 檔案資料.無法寫入 VFS 檔案, 磁碟配額已滿.拒絕存取取消更改伺服器連結時發生未預期的回應: 發生未預期的回應,由伺服器: 伺服器傳回未預期的回應, 稍後在試.未分類萬國碼 (UTF-8)United Arab Emirates (阿拉伯聯合大公國)United Kingdom (英國)United States (美國)United States Minor Outlying Islands單位未知的未知的 (%s)未知的 API 訊息編號 (API Message ID).未知的客戶訊息編號 (API Message ID).未知的位置資訊.未知的使用者名稱或密碼.未命名未被支援未支援的副檔名不支援的媒體類型變更更新 %s更新使用者"%s"已更新.%s 已更新.更新程式已刪除.上傳已上傳所有應用程式的設定檔到伺服器.Uruguay (烏拉圭)使用目前的: %s使用代理伺服器 Proxy使用 SSL如果你的使用者名稱/密碼與 IMSP 伺服器不同,可在此設定.使用者使用者管理使用者選項使用者註冊此站台的使用者註冊系統已停用.找不到使用者帳號使用者名稱 %s 並不是 kolab 的用戶!欲新增的使用者:使用者名稱使用者名稱 "%s" 已存在.使用者名稱:使用者名稱: 使用者系統中的使用者:Uzbekistan (烏茲別克)VAT 識別號碼驗證VAT 識別號碼:VAT 號碼VFS 目錄並不存在.假期有效性以分鐘為單位(從現在起算)數值超過 %d 的最大長度.值選取值自Vanuatu (瓦奴阿圖)變化Venezuela (委內瑞拉)驗證失敗 - 發生了一個未知的錯誤.驗證失敗 - 此郵件可能已遭人擅自篡改.版本版本控制非常高Viet Nam (越南)越南文 (VISCII)檢視 %s檢視 %s [%s]在新視窗開啟Virgin Islands, British (英屬維京群島)Virgin Islands, U.S. (美屬維京群島)能見度能見度: 義大利伏德風電信公司透過 SMTP警告警告!!! 從 %s 手動移除程式.WIN 經由 HTTPWallis and FutunaWallis and Futuna Islands (瓦利斯和富圖納群島)警告星期三天氣預測氣象資料提供網站每週歡迎歡迎到 %s歡迎, %s西歐 (ISO-8859-1)西歐 (ISO-8859-15)Western Sahara (西撒哈拉)登入後應該先顯示 %s 哪一個應用程式?欄位的分隔字元?引述的前置字元?Whereis-澳洲-地圖每週的第一天?哪個月相網頁編輯器的插件(plugins)啟動控制.當你在瀏覽網頁時,你可以點選"加入書籤"的捷徑以新增書籤完全符合以 CSS 為單位的寬度左邊 %s 功能表的寬度(下次登入始生效):集體創作風早有風晚有風風速(節)風速:風速: Windows智慧期待禮物工作辦公室地址辦公室電話無法將偏好設定寫入到 %s第 %d 行的欄位數目不正確. 應該要有 %d 個欄位,只找到 %d 個欄位.欄位數目不正確. 應該要有 %d 個欄位,只找到 %d 個欄位.讀取 VFS 檔案時發生錯誤的位移 %d.發現錯誤版本編號: %s (應該是 %d)交互參考X509v3 基本限制X509v3 延伸金鑰語法X509v3 主旨替代名稱X509v3 主旨金鑰識別者X509v3 副檔名年年Yahoo ! 地圖每年Yemen (葉門)是是的,我同意你正在建立一個新的資料夾.你沒有建立群組的權限.你沒有建立共享的權限.你沒有變更群組的權限.你沒有變更共享的權限.不允許你建立 %d 以上的區塊.你沒有建立超過 %d 個書籤的權限.不允許你建立 %d 個以上的資料夾.你沒有刪除群組的權限.你沒有刪除共享的權限.你沒有列出共享群組的權限.你沒有列出共享的權限.你沒有列出共享的權限.你沒有列出群組用戶的權限.你沒有列出共享用戶的權限.你沒有移除用戶資料的權限.你的身份尚未被驗證.你正在為目前的資料夾更新名稱.你的全名中不可有 '\' 這樣的字元. 你尚未驗證.你並未輸入一個有效的電子郵件位址.你並未由匯入的檔案中對映任何欄位到 %s你沒有檢視此資料夾的權限.你已經登出.你曾經要求將 "%s" 加入為你的電子郵件地址之一. 請點選下列網址以確定該地址確屬於你所擁有: %s 如果你不清楚此郵件的意義, 你可以刪除此信.你必須選擇一個日期.你必須選擇一個時間.你必須先規劃好樹狀資料(DataTree)伺服端才能繼續使用新用戶註冊服務.你必須先規劃一個虛擬檔案系統(VFS)伺服端.請描述問題,在你傳送問題報告之前.請輸入一個有效的電話號碼,國際電話號碼僅只允許數字號碼,並視情況可於前面再加一個 '+'.你必須輸入一個有效的值.你必須輸入一個電子郵件地址.你必須輸入至少一個電子郵件地址.你必須提供 "%s" 的一組設定.請先選擇一個目標資料夾請指定要刪除的伺服器.請指定要清除的使用者.請指定要移除的使用者.請指定要新增的使用者.請指定要更新的使用者.請指定要執行的作用.你必須輸入新分類的名稱.你必須提供一個義大利境內的電話號碼你的 %s 會期已過時.請重新登入.你的電子郵件住址你的寄件人電子郵件住址:你的資訊自從你的 %s 會期開始以來你的網際網路位址已變更. 為保護你的安全起見,你必須重新登入.你的名稱你的驗證伺服端並不支援新增使用者. 如果你希望管理使用者帳號,你必須另選其他的驗證伺服端.你的驗證端並未支援列出使用者或該功能已被關閉.自從你的 %s 會期開始以來你的瀏覽器似乎已變更. 為保護你的安全起見,你必須重新登入.你的瀏覽器並未支援這個功能.你的瀏覽器並未支援列印選項.請按 CTRL/Command + P 列印.你目前所設定的時區:閣下預設的身份識別已變更.閣下預設的身份識別:你的全名:你的登入已到期.你在 %s 中的新密碼是: %s你在登入期間的選項已被更新.你的選項已更新.你的密碼已重新設定密碼已被重新設定,新的密碼已透過電子郵件寄發請以該密碼登入.你的密碼已到期你的密碼已到期.你的遠端伺服器:Yugoslavia (南斯拉夫)Zaire (薩伊)Zambia (尚比亞)Zimbabwe (辛巴威)Zippy[隱藏引述][無][問題反映][顯示引述 -[顯示引述 - %d 行][未知的][位於行 %d 共 %s 行]警示_A瀏覽_B命令列_C樹狀資料_D群組_G家_H匯入/匯出_I登入_L登出_L新增書籤_N選項_O權限_P報表_R搜尋_S設定_S使用者_U未知的收件人附件無風無法建立輸出檔案無法開啟輸入點選按此點選密令列語法錯誤設定錯誤遺失重要的系統檔案資料格式錯誤找不到記錄落下檔案從 %s (%s) 於 %s %s陣風時:時未知的郵件主機名稱立即直接顯示於本文區輸入/輸出錯誤內部軟體錯誤行]製作 ISO 時,mkisofs 錯誤碼 %d.分名稱尚未實作.存取遭拒通信協定遠端錯誤上升無可用的服務顯示差異sms2email 經由 HTTP秒穩定系統錯誤暫時性的失敗再次輸入你的密碼以確認無誤整合未知的錯誤未命名使用者選擇vCard星期:weather.com 網站你必須至多輸入 %d.trean-1.0.3/locale/zh_TW/LC_MESSAGES/trean.po0000644000175000017500000005054712171337643016500 0ustar janjan# Trean Traditional Chinese Translation. # Copyright 2002 Chih-Wei Yeh # Chih-Wei Yeh # David Chang , 2005. # msgid "" msgstr "" "Project-Id-Version: Trean 1.0-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-07-07 16:22+0800\n" "Last-Translator: David Chang \n" "Language-Team: Traditional Chinese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: edit.php:216 #, php-format msgid "\"%s\" was not renamed: %s." msgstr "'\"%s\" 並未更名: %s." #: data.php:155 #, php-format msgid "%d Folders and %d Bookmarks imported." msgstr "已匯入 %d 個資料夾和 %d 筆書籤" #: templates/reports.php:104 #, php-format msgid "%s Bookmarks" msgstr "%s 個書籤" #: reports.php:24 #, php-format msgid "%s Response Codes" msgstr "%s 回應碼" #: lib/base.php:74 #, php-format msgid "%s's Bookmarks" msgstr "%s的書籤" #: lib/Block/bookmarks.php:63 lib/Block/highestrated.php:38 #: lib/Block/mostclicked.php:38 msgid "1 Line" msgstr "1 行" #: templates/star_rating_helper.php:20 msgid "1 star out of 5" msgstr "一星評鑑" #: lib/Block/bookmarks.php:55 lib/Block/highestrated.php:30 #: lib/Block/mostclicked.php:30 msgid "10 rows" msgstr "10 行" #: lib/Block/bookmarks.php:56 lib/Block/highestrated.php:31 #: lib/Block/mostclicked.php:31 msgid "15 rows" msgstr "15 行" #: templates/reports.php:36 #, php-format msgid "1xx Response Codes (%s)" msgstr "1xx 回應碼 (%s)" #: lib/Block/bookmarks.php:62 lib/Block/highestrated.php:37 #: lib/Block/mostclicked.php:37 msgid "2 Line" msgstr "2 行" #: templates/star_rating_helper.php:21 msgid "2 stars out of 5" msgstr "二星評鑑" #: lib/Block/bookmarks.php:57 lib/Block/highestrated.php:32 #: lib/Block/mostclicked.php:32 msgid "25 rows" msgstr "25 行" #: templates/reports.php:42 #, php-format msgid "2xx Response Codes (%s)" msgstr "2xx 回應碼 (%s)" #: lib/Block/bookmarks.php:61 lib/Block/highestrated.php:36 #: lib/Block/mostclicked.php:36 msgid "3 Line" msgstr "3 行" #: templates/star_rating_helper.php:22 msgid "3 stars out of 5" msgstr "三星評鑑" #: templates/reports.php:53 #, php-format msgid "3xx Response Codes (%s)" msgstr "3xx 回應碼 (%s)" #: templates/star_rating_helper.php:23 msgid "4 stars out of 5" msgstr "四星評鑑" #: templates/reports.php:64 #, php-format msgid "4xx Response Codes (%s)" msgstr "4xx 回應碼 (%s)" #: templates/star_rating_helper.php:24 msgid "5 stars out of 5" msgstr "五星評鑑" #: templates/reports.php:86 #, php-format msgid "5xx Response Codes (%s)" msgstr "5xx 回應碼 (%s)" #: lib/Trean.php:176 msgid "Accepted" msgstr "已接受" #: templates/add/add.inc:64 lib/Block/tree_menu.php:24 msgid "Add" msgstr "新增" #: templates/add/add.inc:91 msgid "Add to Bookmarks" msgstr "加入書籤" #: templates/browse.php:220 templates/search.php:65 msgid "All" msgstr "所有" #: browse.php:31 data.php:38 perms.php:239 lib/Block/bookmarks.php:32 #, php-format msgid "An error occured listing folders: %s" msgstr "在列出資料夾: %s 時發生一個錯誤" #: lib/Trean.php:49 #, php-format msgid "An error occurred counting folders: %s" msgstr "在計算資料夾: %s 時發生一個錯誤" #: search.php:31 msgid "Any Part of the field" msgstr "欄位任一部份" #: templates/search.php:29 msgid "Are you sure you want to delete the selected bookmarks?" msgstr "你確定要刪除所選擇的書籤嗎?" #: templates/browse.php:115 msgid "Are you sure you want to delete the selected items?" msgstr "你確定要刪除所選擇的項目嗎?" #: perms.php:44 msgid "Attempt to edit a non-existent share." msgstr "嚐試編輯一個不存在的共享." #: lib/Trean.php:208 msgid "Bad Gateway" msgstr "Web 伺服器在作為閘道或代理伺服器 Proxy 時收到無效的回應" #: lib/Trean.php:188 msgid "Bad Request" msgstr "錯誤的要求" #: add.php:64 msgid "Bookmark Added" msgstr "書籤已增加" #: data.php:17 templates/browse.php:223 lib/Block/bookmarks.php:3 #: lib/Block/bookmarks.php:81 msgid "Bookmarks" msgstr "書籤" #: browse.php:35 msgid "Browse" msgstr "瀏覽" #: templates/edit/footer.inc:2 msgid "Cancel" msgstr "取消" #: config/prefs.php.dist:11 msgid "Change the number of columns to display in browse and search results." msgstr "修改瀏覽或搜尋時呈現畫面的欄數." #: templates/add/add.inc:86 msgid "Close" msgstr "關閉" #: search.php:30 msgid "Combine" msgstr "邏輯" #: config/prefs.php.dist:46 msgid "Completely collapsed" msgstr "完全折疊" #: config/prefs.php.dist:48 msgid "Completely expanded" msgstr "完全展開" #: lib/Trean.php:197 msgid "Conflict" msgstr "與其他請求發生衝突" #: lib/Trean.php:172 msgid "Continue" msgstr "繼續" #: edit.php:192 msgid "Copied bookmark: " msgstr "書籤複製完成: " #: templates/browse.php:242 templates/search.php:72 msgid "Copy" msgstr "複製" #: edit.php:201 #, php-format msgid "Copying folders is not supported." msgstr "不支援資料夾複製." #: lib/Trean.php:175 msgid "Created" msgstr "已建立" #: templates/reports.php:96 #, php-format msgid "DNS Failure or Other Error (%s)" msgstr "DNS 名稱解析或其他錯誤 (%s)" #: templates/browse.php:233 templates/search.php:70 msgid "Delete" msgstr "刪除" #: templates/browse.php:33 msgid "Delete current folder?" msgstr "刪除目前的資料夾?" #: templates/browse.php:260 templates/browse.php:360 msgid "Delete this Folder" msgstr "刪除這個資料夾" #: edit.php:32 edit.php:84 msgid "Deleted bookmark: " msgstr "書籤刪除完成: " #: edit.php:98 msgid "Deleted folder: " msgstr "資料夾刪除完成:" #: search.php:28 templates/edit/bookmark.inc:15 templates/add/add.inc:47 msgid "Description" msgstr "描述" #: config/prefs.php.dist:10 msgid "Display Options" msgstr "顯示選項" #: lib/Block/bookmarks.php:52 msgid "Display Rows" msgstr "顯示行" #: config/prefs.php.dist:76 msgid "Display bookmark rating in browse/search view?" msgstr "在瀏覽/搜尋的畫面中顯示書籤被點選的次數?" #: config/prefs.php.dist:58 msgid "Display edit buttons when displaying Bookmarks?" msgstr "當顯示書籤時也顯示編輯圖示?" #: templates/data/export.inc:11 msgid "Download Folder" msgstr "下載資料夾" #: templates/add/add.inc:77 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "將下方的\"加入書籤\"連結拉到你的\"連結\"工具列" #: templates/add/add.inc:75 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "將下方的\"加入書籤\"連結拉到你的\"個人工具列\"." #: templates/browse.php:227 templates/search.php:69 msgid "Edit" msgstr "編輯" #: edit.php:245 msgid "Edit Bookmark" msgstr "編輯書籤" #: perms.php:235 msgid "Edit Permissions" msgstr "編輯權限" #: perms.php:242 #, php-format msgid "Edit Permissions for %s" msgstr "編輯 %s 的權限" #: lib/Trean.php:205 msgid "Expectation Failed" msgstr "執行失敗" #: templates/data/export.inc:4 msgid "Export Bookmarks" msgstr "匯出書籤" #: templates/data/import.inc:9 msgid "File to import:" msgstr "選擇檔案以匯入:" #: config/prefs.php.dist:47 msgid "First level shown" msgstr "顯示第一層" #: templates/edit/bookmark.inc:25 templates/add/add.inc:52 #: lib/Block/bookmarks.php:42 msgid "Folder" msgstr "資料夾" #: lib/Bookmarks.php:353 msgid "Folder names must be non-empty" msgstr "資料夾名稱不可空白" #: templates/data/import.inc:11 msgid "Folder to import into:" msgstr "匯入到資料夾:" #: templates/browse.php:222 msgid "Folders" msgstr "資料夾" #: lib/Trean.php:191 msgid "Forbidden" msgstr "禁止使用" #: lib/Trean.php:183 msgid "Found" msgstr "物件已移動" #: lib/Trean.php:210 msgid "Gateway Time-out" msgstr "閘道逾時" #: lib/Trean.php:198 msgid "Gone" msgstr "請求的資源已不存在於伺服器中" #: reports.php:24 templates/reports.php:33 msgid "HTTP Status" msgstr "HTTP 狀態" #: lib/Trean.php:211 msgid "HTTP Version not supported" msgstr "不支援的 HTTP 版本" #: lib/Block/bookmarks.php:50 config/prefs.php.dist:35 msgid "Highest Rated" msgstr "最受歡迎" #: lib/Block/highestrated.php:3 lib/Block/highestrated.php:49 msgid "Highest-rated Bookmarks" msgstr "最受歡迎的書籤" #: templates/data/import.inc:16 msgid "Import" msgstr "匯入" #: data.php:183 templates/data/import.inc:4 msgid "Import Bookmarks" msgstr "匯入書籤" #: templates/data/export.inc:9 msgid "Include Subfolders" msgstr "包含次資料夾" #: lib/Trean.php:206 msgid "Internal Server Error" msgstr "內部伺服器錯誤" #: templates/add/add.inc:76 msgid "Internet Explorer" msgstr "Internet Explorer" #: templates/data/import.inc:7 msgid "" "Internet Explorer users will need to export their current Favorites by going " "to the \"File\" menu and selecting \"Import and Export\"." msgstr "" "Internet Explorer 使用者要輸出我的最愛必須到\"檔案\"選單並選擇\"匯入和匯出\"." #: lib/Trean.php:199 msgid "Length Required" msgstr "必須在請求中提供 Content-Length 表頭" #: search.php:31 msgid "Match" msgstr "吻合" #: lib/api.php:30 msgid "Maximum Number of Bookmarks" msgstr "書籤上限數目" #: lib/api.php:27 msgid "Maximum Number of Folders" msgstr "資料夾上限數目" #: lib/Block/tree_menu.php:3 msgid "Menu List" msgstr "功能表" #: lib/Trean.php:193 msgid "Method Not Allowed" msgstr "不接受客戶端的請求方法" #: templates/browse.php:248 msgid "More Actions" msgstr "其他作用方式" #: lib/Block/bookmarks.php:51 config/prefs.php.dist:36 msgid "Most Clicked" msgstr "最多點選" #: lib/Block/mostclicked.php:3 lib/Block/mostclicked.php:49 msgid "Most-clicked Bookmarks" msgstr "最多點選的書籤" #: templates/browse.php:235 templates/search.php:71 msgid "Move" msgstr "搬移" #: lib/Trean.php:182 msgid "Moved Permanently" msgstr "請求的資源已不存在" #: edit.php:137 msgid "Moved bookmark: " msgstr "書籤搬移完成: " #: edit.php:151 msgid "Moved folder: " msgstr "資料夾搬移完成: " #: templates/add/add.inc:74 msgid "Mozilla" msgstr "Mozilla" #: templates/data/import.inc:6 msgid "" "Mozilla/Firefox users will need to export their current Bookmarks by going " "into \"Bookmark Manager\" and selecting \"Export\" from the \"Tools\" menu." msgstr "" "Mozilla/Firefox 使用者要匯出目前的書籤設定必須到\"書籤管理者\"並從\"工具\"選" "單選擇\"匯出\"." #: lib/Trean.php:181 msgid "Multiple Choices" msgstr "請求中的資源指向一群文件" #: templates/edit/folder.inc:9 msgid "Name" msgstr "名稱" #: add.php:111 templates/browse.php:250 templates/browse.php:344 #: templates/add/add.inc:32 msgid "New Bookmark" msgstr "新增書籤" #: lib/Trean.php:85 msgid "New Folder" msgstr "新增資料夾" #: templates/browse.php:257 templates/browse.php:353 msgid "New Subfolder" msgstr "新增次資料夾" #: templates/search.php:76 msgid "No Bookmarks found" msgstr "找不到書籤" #: lib/Trean.php:178 msgid "No Content" msgstr "無內容" #: lib/Block/bookmarks.php:128 lib/Block/highestrated.php:73 #: lib/Block/mostclicked.php:73 msgid "No bookmarks to display" msgstr "無書籤可顯示" #: lib/Trean.php:177 msgid "Non-Authoritative Information" msgstr "非授權資訊" #: templates/browse.php:221 templates/search.php:66 msgid "None" msgstr "無" #: lib/Trean.php:194 msgid "Not Acceptable" msgstr "用戶端瀏覽器不接受要求頁面的 MIME 類型" #: lib/Trean.php:192 msgid "Not Found" msgstr "請求的文件不存在" #: lib/Trean.php:207 msgid "Not Implemented" msgstr "伺服器無法支援請求中的功能" #: lib/Trean.php:185 msgid "Not Modified" msgstr "未修改" #: templates/add/add.inc:80 msgid "Note:" msgstr "備註:" #: edit.php:239 msgid "Nothing to edit." msgstr "什麼也不編輯" #: lib/Block/highestrated.php:27 lib/Block/mostclicked.php:27 msgid "Number of bookmarks to show" msgstr "書籤顯示數目" #: lib/Trean.php:174 msgid "OK" msgstr "確認" #: templates/add/add.inc:81 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" "在比較新版的 I.E 瀏覽器, 你可能需要將 %s://%s 加入到信任的網站中才能生效.(方" "法:點選I.E 瀏覽器 -> 工具 -> 網際網路選項 -> 安全性 -> 信任的網站 -" "> 網站)" #: perms.php:56 msgid "" "Only the owner or system administrator may change ownership or owner " "permissions for a share" msgstr "只有擁有者與系統管理員可以變更共享權限" #: templates/menu.inc:2 templates/menu.inc:5 msgid "Open Fo_lder" msgstr "開啟資料夾_l" #: config/prefs.php.dist:67 msgid "Open links in a new window?" msgstr "在新的視窗開啟連結" #: config/prefs.php.dist:9 msgid "Other Options" msgstr "其他選項" #: lib/Trean.php:180 msgid "Partial Content" msgstr "部分內容" #: lib/Trean.php:190 msgid "Payment Required" msgstr "保留" #: templates/browse.php:134 templates/browse.php:169 templates/add/add.inc:5 msgid "Please enter a name for the new folder:" msgstr "請輸入一個新資料夾的名稱:" #: templates/browse.php:26 msgid "Please enter the name of the new folder:" msgstr "請輸入新資料夾的名稱:" #: templates/browse.php:40 msgid "Please modify the name accordingly" msgstr "請斟酌修改名稱" #: templates/browse.php:98 templates/browse.php:113 templates/browse.php:153 #: templates/browse.php:188 msgid "Please select an item first" msgstr "請先選擇一個項目" #: lib/Trean.php:200 msgid "Precondition Failed" msgstr "指定條件失敗" #: lib/Trean.php:195 msgid "Proxy Authentication Required" msgstr "需要代理伺服器 Proxy 驗證" #: templates/browse.php:261 templates/browse.php:361 msgid "Rename this Folder" msgstr "更名這個資料夾" #: reports.php:17 msgid "Reports" msgstr "報表" #: lib/Trean.php:201 msgid "Request Entity Too Large" msgstr "請求的訊息主體過於龐大" #: lib/Trean.php:196 msgid "Request Time-out" msgstr "客戶端無法於有效時限內完成作業" #: lib/Trean.php:202 msgid "Request-URI Too Large" msgstr "請求的 URI 太長" #: lib/Trean.php:204 msgid "Requested range not satisfiable" msgstr "無法滿足要求的範圍" #: lib/Trean.php:179 msgid "Reset Content" msgstr "重設內容" #: templates/edit/footer.inc:1 msgid "Save" msgstr "儲存" #: search.php:19 search.php:26 lib/Block/tree_menu.php:33 msgid "Search" msgstr "搜尋" #: search.php:25 msgid "Search Bookmarks" msgstr "搜尋書籤" #: search.php:61 #, php-format msgid "Search Results (%s)" msgstr "搜尋結果 (%s)" #: lib/Trean.php:184 msgid "See Other" msgstr "請求的資源可以在別的位置找到" #: templates/browse.php:220 templates/search.php:65 msgid "Select All" msgstr "全選" #: templates/browse.php:223 msgid "Select All Bookmarks" msgstr "選擇所有書籤" #: templates/browse.php:222 msgid "Select All Folders" msgstr "選擇所有資料夾" #: templates/browse.php:221 templates/search.php:66 msgid "Select None" msgstr "不選" #: templates/search.php:64 #, php-format msgid "Select: %s, %s" msgstr "選擇: %s, %s" #: templates/browse.php:219 #, php-format msgid "Select: %s, %s, %s, %s" msgstr "選擇: %s, %s, %s, %s" #: lib/Trean.php:209 msgid "Service Unavailable" msgstr "服務無法使用" #: templates/browse.php:264 templates/browse.php:368 msgid "Set Permissions" msgstr "設定權限" #: config/prefs.php.dist:49 msgid "Should your list of bookmark folders be open when you log in?" msgstr "登入後顯示所有資料夾中的書籤?" #: config/prefs.php.dist:37 msgid "Sort bookmarks by:" msgstr "排序書籤依:" #: lib/Block/bookmarks.php:46 msgid "Sort by" msgstr "排列依" #: lib/Trean.php:173 msgid "Switching Protocols" msgstr "切換通訊協定" #: lib/Block/bookmarks.php:58 lib/Block/highestrated.php:33 #: lib/Block/mostclicked.php:33 msgid "Template" msgstr "樣板" #: config/prefs.php.dist:25 msgid "Template to use when displaying bookmarks:" msgstr "顯示書籤時所用的樣板:" #: lib/Trean.php:187 msgid "Temporary Redirect" msgstr "暫時重新導向" #: templates/browse.php:372 msgid "There are no bookmarks in this folder" msgstr "此資料夾中沒有任何書籤" #: edit.php:194 #, php-format msgid "There was a problem copying the bookmark: %s" msgstr "複製書籤: %s 時發生一個錯誤" #: edit.php:34 edit.php:86 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "刪除書籤: %s 時發生一個錯誤" #: edit.php:100 #, php-format msgid "There was a problem deleting the folder: %s" msgstr "刪除資料夾: %s 時發生一個錯誤" #: edit.php:139 #, php-format msgid "There was a problem moving the bookmark: %s" msgstr "搬移書籤: %s 時發生一個錯誤" #: edit.php:153 #, php-format msgid "There was a problem moving the folder: %s" msgstr "搬移資料夾: %s 時發生一個錯誤" #: add.php:59 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "新增書籤: %s 時發生一個錯誤" #: add.php:43 add.php:100 edit.php:122 edit.php:178 #, php-format msgid "There was an error adding the folder: %s" msgstr "新增資料夾: %s 時發生一個錯誤." #: edit.php:55 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "儲存書籤: %s 時發生一個錯誤" #: edit.php:68 #, php-format msgid "There was an error saving the folder: %s" msgstr "儲存資料夾: %s 時發生一個錯誤." #: search.php:27 templates/edit/bookmark.inc:10 templates/add/add.inc:42 #: lib/Block/bookmarks.php:49 config/prefs.php.dist:34 msgid "Title" msgstr "標題" #: config/prefs.php.dist:24 msgid "Title Only" msgstr "僅限標題" #: config/prefs.php.dist:23 msgid "Title and Description" msgstr "標題與描述" #: config/prefs.php.dist:22 msgid "Title, URL, and Description" msgstr "標題,網址與描述" #: templates/add/add.inc:73 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "為了能夠快速的從你的瀏覽器新增書籤:" #: templates/reports.php:103 msgid "Total" msgstr "總計" #: search.php:29 templates/edit/bookmark.inc:20 templates/add/add.inc:37 msgid "URL" msgstr "網址" #: lib/Trean.php:189 msgid "Unauthorized" msgstr "拒絕存取" #: templates/reports.php:100 #, php-format msgid "Unknown (%s)" msgstr "未知的 (%s)" #: lib/Trean.php:203 msgid "Unsupported Media Type" msgstr "不支援的媒體類型" #: perms.php:228 #, php-format msgid "Updated %s." msgstr "%s 已更新." #: lib/Trean.php:186 msgid "Use Proxy" msgstr "使用代理伺服器 Proxy" #: templates/add/add.inc:78 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "當你在瀏覽網頁時,你可以點選\"加入書籤\"的捷徑以新增書籤" #: search.php:31 msgid "Whole Field" msgstr "完全符合" #: templates/browse.php:26 msgid "You are creating a new folder." msgstr "你正在建立一個新的資料夾." #: add.php:21 data.php:64 data.php:131 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "你沒有建立超過 %d 個書籤的權限." #: add.php:84 data.php:55 data.php:106 #, php-format msgid "You are not allowed to create more than %d folders." msgstr "不允許你建立 %d 個以上的資料夾." #: templates/browse.php:40 msgid "You are renaming the current folder." msgstr "你正在為目前的資料夾更新名稱." #: browse.php:21 msgid "You do not have permission to view this folder." msgstr "你沒有檢視此資料夾的權限." #: templates/browse.php:144 templates/browse.php:179 templates/add/add.inc:13 msgid "You must select a target folder first" msgstr "請先選擇一個目標資料夾" #: lib/Trean.php:144 msgid "_Browse" msgstr "瀏覽_B" #: lib/Trean.php:155 msgid "_Import/Export" msgstr "匯入/匯出_I" #: lib/Trean.php:148 msgid "_New Bookmark" msgstr "新增書籤_N" #: lib/Trean.php:151 msgid "_Reports" msgstr "報表_R" #: lib/Trean.php:150 msgid "_Search" msgstr "搜尋_S" #: templates/search.php:111 templates/bookmark/1line.inc:27 #: templates/bookmark/2line.inc:38 templates/bookmark/standard.inc:42 #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "click" msgstr "點選" #: templates/search.php:111 templates/bookmark/1line.inc:27 #: templates/bookmark/2line.inc:38 templates/bookmark/standard.inc:42 #: templates/block/1line.inc:22 templates/block/2line.inc:26 #: templates/block/standard.inc:24 msgid "clicks" msgstr "點選" trean-1.0.3/locale/.htaccess0000644000175000017500000000001612171337643013767 0ustar janjanDeny from all trean-1.0.3/locale/trean.pot0000664000175000017500000001400712171337643014035 0ustar janjan# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Horde LLC (http://www.horde.org/) # This file is distributed under the same license as the Trean package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Trean H5 (1.0.3-git)\n" "Report-Msgid-Bugs-To: dev@lists.horde.org\n" "POT-Creation-Date: 2013-07-16 21:24+0200\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" #: lib/Block/Bookmarks.php:53 lib/Block/Mostclicked.php:44 msgid "1 Line" msgstr "" #: lib/Block/Bookmarks.php:41 lib/Block/Mostclicked.php:32 msgid "10 rows" msgstr "" #: lib/Block/Bookmarks.php:42 lib/Block/Mostclicked.php:33 msgid "15 rows" msgstr "" #: lib/Block/Bookmarks.php:52 lib/Block/Mostclicked.php:43 msgid "2 Line" msgstr "" #: lib/Block/Bookmarks.php:43 lib/Block/Mostclicked.php:34 msgid "25 rows" msgstr "" #: lib/Block/Bookmarks.php:51 lib/Block/Mostclicked.php:42 msgid "3 Line" msgstr "" #: templates/add.html.php:52 msgid "Add" msgstr "" #: templates/bookmarklet.html.php:1 msgid "Add to Bookmarks" msgstr "" #: templates/list.html.php:13 msgid "Added" msgstr "" #: config/prefs.php:36 msgid "Ascending (A to Z or oldest to newest)" msgstr "" #: add.php:47 msgid "Bookmark Added" msgstr "" #: edit.php:19 #, php-format msgid "Bookmark not found: %s." msgstr "" #: config/prefs.php:26 msgid "Bookmarked on" msgstr "" #: lib/Block/Bookmarks.php:19 lib/Block/Bookmarks.php:64 #: lib/View/BookmarkList.php:120 msgid "Bookmarks" msgstr "" #: lib/Trean.php:71 msgid "Bookmarks Feed" msgstr "" #: browse.php:31 msgid "Browse" msgstr "" #: templates/add.html.php:53 templates/edit.html.php:63 msgid "Cancel" msgstr "" #: templates/list.html.php:14 msgid "Clicks" msgstr "" #: lib/Api.php:130 msgid "Close" msgstr "" #: app/controllers/DeleteBookmark.php:13 msgid "Deleted bookmark: " msgstr "" #: config/prefs.php:37 msgid "Descending (9 to 1 or newest to oldest)" msgstr "" #: templates/add.html.php:25 templates/edit.html.php:34 msgid "Description" msgstr "" #: config/prefs.php:13 msgid "Display Preferences" msgstr "" #: lib/Block/Bookmarks.php:37 msgid "Display Rows" msgstr "" #: templates/add.html.php:64 msgid "Drag the \"Add to Bookmarks\" link below onto your \"Links\" Bar" msgstr "" #: templates/add.html.php:62 msgid "" "Drag the \"Add to Bookmarks\" link below onto your \"Personal Toolbar\"." msgstr "" #: templates/list.html.php:55 msgid "Edit" msgstr "" #: edit.php:42 msgid "Edit Bookmark" msgstr "" #: templates/add.html.php:61 msgid "Firefox/Mozilla" msgstr "" #: templates/add.html.php:63 msgid "Internet Explorer" msgstr "" #: templates/add.html.php:38 templates/edit.html.php:47 msgid "Loading..." msgstr "" #: lib/Application.php:74 msgid "Maximum Number of Bookmarks" msgstr "" #: config/prefs.php:25 lib/Block/Bookmarks.php:33 msgid "Most Clicked" msgstr "" #: lib/Block/Mostclicked.php:19 msgid "Most-clicked Bookmarks" msgstr "" #: add.php:78 templates/add.html.php:9 msgid "New Bookmark" msgstr "" #: search.php:43 msgid "No bookmarks found" msgstr "" #: lib/Block/Bookmarks.php:91 lib/Block/Mostclicked.php:72 msgid "No bookmarks to display" msgstr "" #: browse.php:18 msgid "No bookmarks yet." msgstr "" #: search.php:50 msgid "No search" msgstr "" #: templates/add.html.php:67 msgid "Note:" msgstr "" #: lib/Block/Mostclicked.php:28 msgid "Number of bookmarks to show" msgstr "" #: templates/add.html.php:68 #, php-format msgid "" "On newer versions of Internet Explorer, you may have to add %s://%s to your " "Trusted Zone for this to work." msgstr "" #: config/prefs.php:46 msgid "Open links in a new window?" msgstr "" #: config/prefs.php:12 msgid "Other Preferences" msgstr "" #: templates/add.html.php:43 templates/edit.html.php:52 msgid "Previously used tags" msgstr "" #: lib/View/BookmarkList.php:214 msgid "Remove from search" msgstr "" #: templates/edit.html.php:62 msgid "Save" msgstr "" #: search.php:36 msgid "Search" msgstr "" #: search.php:47 #, php-format msgid "Search results (%s)" msgstr "" #: templates/add.html.php:41 templates/edit.html.php:50 msgid "See previously used tags" msgstr "" #: config/prefs.php:14 msgid "Set how to display bookmark listings and how to open links." msgstr "" #: config/prefs.php:28 msgid "Sort bookmarks by:" msgstr "" #: lib/Block/Bookmarks.php:28 msgid "Sort by" msgstr "" #: config/prefs.php:38 msgid "Sort direction:" msgstr "" #: lib/Application.php:99 templates/add.html.php:30 templates/edit.html.php:39 msgid "Tags" msgstr "" #: lib/Block/Bookmarks.php:47 lib/Block/Mostclicked.php:38 msgid "Template" msgstr "" #: app/controllers/DeleteBookmark.php:16 #, php-format msgid "There was a problem deleting the bookmark: %s" msgstr "" #: add.php:41 #, php-format msgid "There was an error adding the bookmark: %s" msgstr "" #: app/controllers/SaveBookmark.php:26 #, php-format msgid "There was an error saving the bookmark: %s" msgstr "" #: config/prefs.php:24 lib/Block/Bookmarks.php:32 templates/add.html.php:20 #: templates/edit.html.php:29 templates/list.html.php:12 msgid "Title" msgstr "" #: templates/add.html.php:60 msgid "To be able to quickly add bookmarks from your web browser:" msgstr "" #: templates/add.html.php:15 templates/edit.html.php:24 msgid "URL" msgstr "" #: templates/add.html.php:65 msgid "" "While browsing you will be able to bookmark the current page by clicking " "your new \"Add to Bookmarks\" shortcut." msgstr "" #: add.php:25 #, php-format msgid "You are not allowed to create more than %d bookmarks." msgstr "" #: lib/Application.php:84 msgid "_Browse" msgstr "" #: lib/Application.php:94 msgid "_New Bookmark" msgstr "" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "click" msgstr "" #: templates/block/1line.inc:21 templates/block/2line.inc:24 #: templates/block/standard.inc:22 msgid "clicks" msgstr "" #: app/controllers/BrowseByTag.php:23 #, php-format msgid "tagged %s" msgstr "" trean-1.0.3/migration/1_trean_base_tables.php0000664000175000017500000000307212171337643017320 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class TreanBaseTables extends Horde_Db_Migration_Base { /** * Upgrade. */ public function up() { $tableList = $this->tables(); if (!in_array('trean_bookmarks', $tableList)) { $t = $this->createTable('trean_bookmarks', array('autoincrementKey' => false)); $t->column('bookmark_id', 'integer', array('null' => false)); $t->column('folder_id', 'integer', array('null' => false)); $t->column('bookmark_url', 'string', array('limit' => 255, 'null' => false)); $t->column('bookmark_title', 'string', array('limit' => 255)); $t->column('bookmark_description', 'string', array('limit' => 255)); $t->column('bookmark_clicks', 'integer', array('default' => 0)); $t->column('bookmark_rating', 'integer', array('default' => 0)); $t->column('bookmark_http_status', 'string', array('limit' => 5)); $t->primaryKey(array('bookmark_id')); $t->end(); $this->addIndex('trean_bookmarks', array('bookmark_clicks')); } } public function down() { $this->dropTable('trean_bookmarks'); } } trean-1.0.3/migration/2_trean_upgrade_folders_to_tags_pre.php0000664000175000017500000000412612171337643022611 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class TreanUpgradeFoldersToTagsPre extends Horde_Db_Migration_Base { /** * Upgrade. */ public function up() { $this->changeColumn('trean_bookmarks', 'bookmark_id', 'autoincrementKey'); try { $this->dropTable('trean_bookmarks_seq'); } catch (Horde_Db_Exception $e) { } $t = $this->_connection->table('trean_bookmarks'); $cols = $t->getColumns(); if (!in_array('bookmark_dt', array_keys($cols))) { $this->addColumn('trean_bookmarks', 'bookmark_dt', 'datetime'); } if (!in_array('user_id', array_keys($cols))) { $this->addColumn('trean_bookmarks', 'user_id', 'integer', array('unsigned' => true)); $this->addIndex('trean_bookmarks', array('user_id')); } $this->changeColumn('trean_bookmarks', 'bookmark_clicks', 'integer', array('unsigned' => true, 'default' => 0)); $this->changeColumn('trean_bookmarks', 'bookmark_description', 'string', array('limit' => 1024)); $this->changeColumn('trean_bookmarks', 'bookmark_url', 'string', array('limit' => 1024)); } /** * Downgrade */ public function down() { $this->removeColumn('trean_bookmarks', 'user_id'); $this->removeColumn('trean_bookmarks', 'bookmark_dt'); $this->changeColumn('trean_bookmarks', 'bookmark_id', 'integer', array('null' => false)); $this->changeColumn('trean_bookmarks', 'bookmark_url', 'string', array('limit' => 255)); $this->changeColumn('trean_bookmarks', 'bookmark_description', 'string', array('limit' => 255)); } } trean-1.0.3/migration/3_trean_upgrade_folders_to_tags.php0000664000175000017500000000150712171337643021744 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class TreanUpgradeFoldersToTags extends Horde_Db_Migration_Base { /** * Upgrade. */ public function up() { // This migration step used to migrate old DataTree folder // structures. DataTree has been removed since then. } /** * Downgrade. */ public function down() { // Not supported. One-way change. Also not destructive on its own. } } trean-1.0.3/migration/4_trean_upgrade_folders_to_tags_post.php0000664000175000017500000000204212171337643023005 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class TreanUpgradeFoldersToTagsPost extends Horde_Db_Migration_Base { /** * Upgrade. */ public function up() { $this->removeColumn('trean_bookmarks', 'bookmark_rating'); $this->removeColumn('trean_bookmarks', 'folder_id'); $this->changeColumn('trean_bookmarks', 'user_id', 'integer', array('unsigned' => true, 'null' => false)); } /** * Downgrade */ public function down() { $this->addColumn('trean_bookmarks', 'folder_id', 'integer'); $this->addColumn('trean_bookmarks', 'bookmark_rating', 'integer', array('default' => 0)); } } trean-1.0.3/migration/5_trean_add_favicon_url.php0000664000175000017500000000135712171337643020203 0ustar janjan * @category Horde * @license http://www.horde.org/licenses/bsdl.php BSD * @package Trean */ class TreanAddFaviconUrl extends Horde_Db_Migration_Base { /** * Upgrade. */ public function up() { $this->addColumn('trean_bookmarks', 'favicon_url', 'string', array('limit' => 255)); } /** * Downgrade */ public function down() { $this->removeColumn('trean_bookmarks', 'favicon_url'); } } trean-1.0.3/templates/block/1line.inc0000664000175000017500000000173112171337643015534 0ustar janjanadd('b', $bookmark->id); $target = $GLOBALS['prefs']->getValue('show_in_new_window') ? '_blank' : ''; if ($bookmark->http_status == 'error') { $status = 'error.png'; } elseif ($bookmark->http_status == '') { $status = ''; } else { $status = substr($bookmark->http_status, 0, 1) . 'xx.png'; } ?>
url) ?>description) ? '' : ' - ' . htmlspecialchars($bookmark->description) . '') ?> (clicks ?> clicks == 1 ? _("click") : _("clicks")) ?>)
trean-1.0.3/templates/block/2line.inc0000664000175000017500000000173412171337643015540 0ustar janjanadd('b', $bookmark->id); $target = $GLOBALS['prefs']->getValue('show_in_new_window') ? '_blank' : ''; if ($bookmark->http_status == 'error') { $status = 'error.png'; } elseif ($bookmark->http_status == '') { $status = ''; } else { $status = substr($bookmark->http_status, 0, 1) . 'xx.png'; } ?>
title) ?>
(clicks . ' ' . ($bookmark->clicks == 1 ? _("click") : _("clicks")) ?>) description) ?>
trean-1.0.3/templates/block/standard.inc0000664000175000017500000000220312171337643016317 0ustar janjangetValue('show_in_new_window') ? '_blank' : ''; $bookmark_url = Horde::url('redirect.php')->add('b', $bookmark->id); if ($bookmark->http_status == 'error') { $status = 'error.png'; } elseif ($bookmark->http_status == '') { $status = ''; } else { $status = substr($bookmark->http_status, 0, 1) . 'xx.png'; } ?>
title) ?> (clicks . ' ' . ($bookmark->clicks == 1 ? _("click") : _("clicks")) ?>)
url, 100, "\n", true))) ?>
description) ?>
trean-1.0.3/templates/add.html.php0000664000175000017500000000611012171337643015137 0ustar janjan

"> " onclick="" />

trean-1.0.3/templates/bookmarklet.html.php0000664000175000017500000000050112171337643016717 0ustar janjan
image ?> trean-1.0.3/templates/edit.html.php0000664000175000017500000000415012171337643015336 0ustar janjan

title) ?>

"> " onclick="return cancelEdit();">
trean-1.0.3/templates/list.html.php0000664000175000017500000000565112171337643015373 0ustar janjan bookmarks as $bookmark): ?>
sortby == 'dt') echo ' class="' . $this->sortdirclass . '"' ?>>
'trean-favicon')) ?>
http_status == 'error') { echo Horde::img('http/error.png'); } elseif ($bookmark->http_status) { echo Horde::img('http/' . (int)substr($bookmark->http_status, 0, 1) . 'xx.png'); } ?> redirectUrl->add('b', $bookmark->id)->link(array('target' => $this->target)) . $this->h($bookmark->title ? $bookmark->title : $bookmark->url) ?> h($bookmark->url) ?> description)): ?> — h(Horde_String::truncate($bookmark->description, 200)) ?>
dt) { $dt = new Horde_Date($bookmark->dt); echo $dt->strftime($GLOBALS['prefs']->getValue('date_format')); } ?> clicks ?>
trean-1.0.3/themes/default/graphics/http/1xx.png0000664000175000017500000000112712171337643017656 0ustar janjanPNG  IHDR'ՆsRGBbKGD̿ pHYs tIME /eIDATx=ha' (HIT"" -tTq"E7A1PtPL*& kƼyy8lA_Si ^X9-R/p(o܏.] E[:g"}ĉa!͸6~T^b.o>lc?F VBæG ]SV_FH_) h*&+>,D6TDMGkcO5΁ Ѱ"tVO?x7tB! Dݞ w4jBڷ,G$e.p@Kpe{ĜWմWž7GsYM)II8sg 8Sv% D&nnPrN/9YmJ_ `悹0_{,Y]`\_9Hs"%/-}Ca7\~c}ӗ MӖw9vːa!M{}hGC xd"NZKWdhzHch,^hރ͍Ia:p7[o }fqfՐ sBy Ls N뎗]륊[c3#(:jVY\_QRcbϤ׹PIENDB`trean-1.0.3/themes/default/graphics/http/3xx.png0000664000175000017500000000112712171337643017660 0ustar janjanPNG  IHDR'ՆsRGBbKGD̿ pHYs tIME /eIDATx=ha' (HIT"" -tTq"E7A1PtPL*& kƼyy8lA_Si ^X9-R/p(o܏.] E[:g"}ĉa!͸6~T^b.o>lc?F VBæG ]SV_FH_) h*&+>,D6TDMGkcO5΁ Ѱ"tVO?x7tB! Dݞ w4jBڷ,G$e.p@Kpe{ĜWմWž7Gsʫ `,G  P4B,,?/kWg'~QDŽ79Ljt[-?xd~ ^_!$_|@v !IENDB`trean-1.0.3/themes/default/graphics/http/5xx.png0000664000175000017500000000102412171337643017656 0ustar janjanPNG  IHDR'ՆsRGBbKGD̿ pHYs tIME /-ʳIDATxMk@dMcڃXVZ=ZO{/",Bw"BH .w=N_UC)~>'ٙWN+- ߇>zƃzfGIENDB`trean-1.0.3/themes/default/graphics/http/error.png0000664000175000017500000000102412171337643020263 0ustar janjanPNG  IHDR'ՆsRGBbKGD̿ pHYs tIME /-ʳIDATxMk@dMcڃXVZ=ZO{/",Bw"BH .w=N_UC)~>'ٙWN+- ߇>zƃzfGIENDB`trean-1.0.3/themes/default/graphics/protocol/ftp.png0000664000175000017500000000062112171337643020607 0ustar janjanPNG  IHDR'ՆsRGBbKGD̿ pHYs tIME --僩IDATxc hkI, Ui^0q3p1|g`fBs1btPȈ`gP`d`7^ Kߋ ˳sC"bs^BI]e? e \ڶ0p#eca~ƓXq[ك\Pfux|3S`|LTߝS׿=vgD+9s`7Z#6pppWCn7O0NO)5b9IENDB`trean-1.0.3/themes/default/graphics/protocol/http.png0000664000175000017500000000117712171337643021004 0ustar janjanPNG  IHDR'ՆsRGBbKGD̿ pHYs tIME /)dIDATxMHa;;;*l ;aPavm@kZER›j\Cl\̽AA`V(EK< ;b _-m=IdxPķ"c6 2ccfJnvjEUl{ůxk2=Go;\$>}ex"2FCF-t: nY}#$#O Y^Y(,򯉹Jt~`ө]:HFqy*t~J,c}<4}|[щ gGkAIENDB`trean-1.0.3/themes/default/graphics/protocol/https.png0000664000175000017500000000065512171337643021167 0ustar janjanPNG  IHDRW?PLTEJJJ(((((((((EEE%%%@@@DDDWWW===VVV((()))EEEHHH888'''SSSWWW>>>###===RRRJJJMMMQQQBBBAAAHHHDDD999444...111CCCPPP(((888000EEEGGG6tRNS`i̷`=h0l4IEaQIDATx^ur0DQzq +;N}ٝ#Ҕ8^Msu'of5P/EEc1Q89MbA)nHW g kN=l'S {)"!$cz #) { xLo\7C&'ixIENDB`trean-1.0.3/themes/default/graphics/add.png0000664000175000017500000000115212171337643016705 0ustar janjanPNG  IHDR'ՆsRGBbKGD̿ pHYs tIME .e;IDATxk`?I.IӱlN+2`Gg= B(0_yx>__G9+.L_کk`p`<5zѵ 3χl2q#0Gz}ω^zA"Fj~X/"g B tZ G@K2W'߃i d?~;dl\}Lc3*0qg\qMFDqsvQ[b״u[. *^U^\xYGm0ILx;Z*/s#Zk>:ըSw58!F BlQbD&M2IENDB`trean-1.0.3/themes/default/graphics/favicon.ico0000664000175000017500000000331612171337643017574 0ustar janjan (( @ RRRddd===GGG#$FFF<<<===OOODDD12CCCOOO<<<===RRRPPPBBBBBBPPPPPP<<<===RRRRRRQQQQQQQQQQQQRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===RRRRRRRRRRRRRRRRRRRRRPPP<<<===PPPRRRRRRRRRRRRRRRRRRPPP<<<<<<========================<<<((((((((((((((((((((((((((((((atrean-1.0.3/themes/default/graphics/tag.png0000664000175000017500000000051512171337643016732 0ustar janjanPNG  IHDRW?xPLTE---(((AAABBB(((OOO,,,ttt'''&&&(((???ș,,,222FFFGGGRRRLLL;;;===PPP<</wć)*?/ 40'IENDB`trean-1.0.3/themes/default/screen.css0000664000175000017500000000173412171337643015646 0ustar janjan.horde-form table { width: auto; } .trean-favicon-container { float: left; width: 20px; height: 20px; margin: 2px; } .trean-favicon { max-width: 20px; max-height: 20px; } .trean-bookmarks-date { white-space: nowrap; } .trean-bookmarks-title { text-overflow: ellipsis; overflow: hidden; } .trean-bookmarks-clicks { text-align: center; } .trean-bookmarks-actions form { display: inline; } #trean-browser-instructions { margin: 10px; padding: 10px; } .trean-tags-related, .trean-tags-browsing { padding-bottom: 12px; padding-left: 5px; } .horde-tags li a img { padding-left: 5px; } .treanBookmarkTag:hover { background: #bbcbff; cursor: pointer; } /* Sidebar images. */ .trean-browse { background-image: url("graphics/trean.png"); } .trean-tag { background-image: url("graphics/tag.png"); } .treanACBox { background: #ebeff0; border: 1px solid #d0d0d0; cursor: default; text-align: left; } trean-1.0.3/add.php0000664000175000017500000000534012171337643012202 0ustar janjan */ require_once __DIR__ . '/lib/Application.php'; Horde_Registry::appInit('trean'); /* Deal with any action task. */ $actionID = Horde_Util::getFormData('actionID'); switch ($actionID) { case 'add_bookmark': /* Check permissions. */ if (Trean::hasPermission('max_bookmarks') !== true && Trean::hasPermission('max_bookmarks') <= $trean_gateway->countBookmarks()) { Horde::permissionDeniedError( 'trean', 'max_bookmarks', sprintf(_("You are not allowed to create more than %d bookmarks."), Trean::hasPermission('max_bookmarks')) ); Horde::url('browse.php', true)->redirect(); } /* Create a new bookmark. */ $properties = array( 'bookmark_url' => Horde_Util::getFormData('url'), 'bookmark_title' => Horde_Util::getFormData('title'), 'bookmark_description' => Horde_Util::getFormData('description'), 'bookmark_tags' => Horde_Util::getFormData('treanBookmarkTags'), ); try { $bookmark = $trean_gateway->newBookmark($properties); } catch (Exception $e) { $notification->push(sprintf(_("There was an error adding the bookmark: %s"), $e->getMessage()), 'horde.error'); } if (Horde_Util::getFormData('popup')) { echo Horde::wrapInlineScript(array('window.close();')); } elseif (Horde_Util::getFormData('iframe')) { $notification->push(_("Bookmark Added"), 'horde.success'); $page_output->header(); $notification->notify(); } else { Horde::url('browse.php', true) ->redirect(); } break; } if (Horde_Util::getFormData('popup')) { $page_output->sidebar = false; $page_output->topbar = false; $page_output->addInlineScript(array( 'window.focus()' ), true); } $injector->getInstance('Horde_Core_Factory_Imple') ->create('Trean_Ajax_Imple_TagAutoCompleter', array( 'id' => 'treanBookmarkTags', 'pretty' => true, 'boxClass' => 'treanACBox')); $injector->getInstance('Horde_Core_Factory_Imple') ->create('Trean_Ajax_Imple_TopTags', array( 'id' => 'loadTags')); $page_output->addInlineScript('HordeImple.AutoCompleter.treanBookmarkTags.init()', true); $page_output->header(array( 'title' => _("New Bookmark") )); if (!Horde_Util::getFormData('popup') && !Horde_Util::getFormData('iframe')) { $notification->notify(array('listeners' => 'status')); } require TREAN_TEMPLATES . '/add.html.php'; $page_output->footer(); trean-1.0.3/browse.php0000664000175000017500000000200412171337643012745 0ustar janjan * @author Michael J Rubinsky * @package Trean */ require_once __DIR__ . '/lib/Application.php'; Horde_Registry::appInit('trean'); /* Get bookmarks to display. */ $view = new Trean_View_BookmarkList(); if (!$view->hasBookmarks()) { $notification->push(_("No bookmarks yet."), 'horde.message'); require __DIR__ . '/add.php'; exit; } if ($GLOBALS['conf']['content_index']['enabled']) { $topbar = $GLOBALS['injector']->getInstance('Horde_View_Topbar'); $topbar->search = true; $topbar->searchAction = Horde::url('search.php'); } Trean::addFeedLink(); $page_output->header(array( 'title' => _("Browse") )); $notification->notify(array('listeners' => 'status')); echo $view->render(); $page_output->footer(); trean-1.0.3/edit.php0000664000175000017500000000305612171337643012401 0ustar janjan */ require_once __DIR__ . '/lib/Application.php'; Horde_Registry::appInit('trean'); $bookmark_id = Horde_Util::getFormData('bookmark'); try { $bookmark = $trean_gateway->getBookmark($bookmark_id); } catch (Trean_Exception $e) { $notification->push(sprintf(_("Bookmark not found: %s."), $e->getMessage()), 'horde.message'); Horde::url('browse.php', true)->redirect(); } if ($GLOBALS['conf']['content_index']['enabled']) { $topbar = $GLOBALS['injector']->getInstance('Horde_View_Topbar'); $topbar->search = true; $topbar->searchAction = Horde::url('search.php'); } $injector->getInstance('Horde_Core_Factory_Imple') ->create('Trean_Ajax_Imple_TagAutoCompleter', array( 'id' => 'treanBookmarkTags', 'boxClass' => 'treanACBox', 'pretty' => true, 'existing' => array_values($bookmark->tags))); $injector->getInstance('Horde_Core_Factory_Imple') ->create('Trean_Ajax_Imple_TopTags', array( 'id' => 'loadTags')); $page_output->addInlineScript('HordeImple.AutoCompleter.treanBookmarkTags.init()', true); $page_output->header(array( 'title' => _("Edit Bookmark") )); if (!Horde_Util::getFormData('popup')) { $notification->notify(array('listeners' => 'status')); } require TREAN_TEMPLATES . '/edit.html.php'; $page_output->footer(); trean-1.0.3/favicon.php0000664000175000017500000000215612171337643013101 0ustar janjan */ require_once __DIR__ . '/lib/Application.php'; Horde_Registry::appInit('trean', array('session_control' => 'readonly')); $bookmark_id = Horde_Util::getFormData('bookmark_id'); if (!$bookmark_id) { exit; } $bookmark = $trean_gateway->getBookmark($bookmark_id); if (!$bookmark || !$bookmark->favicon_url) { exit; } $favicon_hash = md5($bookmark->favicon_url); // Initialize VFS try { $vfs = $GLOBALS['injector'] ->getInstance('Horde_Core_Factory_Vfs') ->create(); if (!$vfs->exists('.horde/trean/favicons/', $favicon_hash)) { exit; } } catch (Exception $e) { } $data = $vfs->read('.horde/trean/favicons/', $favicon_hash); $browser->downloadHeaders('favicon', null, true, strlen($data)); header('Expires: ' . gmdate('r', time() + 172800)); header('Cache-Control: public, max-age=172800'); header('Pragma:'); echo $data; trean-1.0.3/index.php0000664000175000017500000000042712171337643012562 0ustar janjan */ require_once __DIR__ . '/lib/Application.php'; Horde_Registry::appInit('trean'); $bookmark_id = Horde_Util::getFormData('b'); if (!$bookmark_id) { exit; } try { $bookmark = $trean_gateway->getBookmark($bookmark_id); ++$bookmark->clicks; $bookmark->save(); header('Location: ' . Horde::externalUrl($bookmark->url)); } catch (Exception $e) { } trean-1.0.3/rss.php0000664000175000017500000000351212171337643012260 0ustar janjangetInstance('Horde_Cache'); // Get folders to display $cache_key = 'trean_rss_' . $registry->getAuth() . '_' . ($folderId === null ? 'all' : $folderId); $rss = $cache->get($cache_key, $conf['cache']['default_lifetime']); if (!$rss) { $rss = ' ' . htmlspecialchars($folderId == null ? $registry->get('name') : $folder->get('name')) . ' ' . $registry->preferredLang() . ' UTF-8 ' . date('Y-m-d H:i:s') . ' http://' . $_SERVER['SERVER_NAME'] . $registry->get('webroot') . '/themes/graphics/favicon.ico ' . htmlspecialchars($registry->get('name')) . ''; $bookmarks = $trean_gateway->listBookmarks($prefs->getValue('sortby'), $prefs->getValue('sortdir')); foreach ($bookmarks as $bookmark) { if (!$bookmark->url) { continue; } $rss .= ' ' . htmlspecialchars($bookmark->title) . ' ' . htmlspecialchars($bookmark->url) . ' ' . htmlspecialchars($bookmark->description) . ' '; } $rss .= ' '; $cache->set($cache_key, $rss); } header('Content-type: application/rss+xml'); echo $rss; trean-1.0.3/search.php0000664000175000017500000000261412171337643012720 0ustar janjan */ require_once __DIR__ . '/lib/Application.php'; Horde_Registry::appInit('trean'); $vars = Horde_Variables::getDefaultVariables(); $bookmarks = null; if (strlen($vars->searchfield)) { // Get the bookmarks. try { $bookmarks = $trean_gateway->searchBookmarks($vars->searchfield); } catch (Trean_Exception $e) { $notification->push($e); } } if ($GLOBALS['conf']['content_index']['enabled']) { $topbar = $GLOBALS['injector']->getInstance('Horde_View_Topbar'); $topbar->search = true; $topbar->searchAction = Horde::url('search.php'); } Trean::addFeedLink(); $page_output->header(array( 'title' => _("Search") )); $notification->notify(array('listeners' => 'status')); // Display the results. if (strlen($vars->searchfield)) { if (!$bookmarks) { echo '

' . _("No bookmarks found") . '

'; } else { $view = new Trean_View_BookmarkList($bookmarks); $view->showTagBrowser(false); echo $view->render(sprintf(_("Search results (%s)"), count($bookmarks))); } } else { echo '

' . _("No search") . '

'; } $page_output->footer();