pax_global_header00006660000000000000000000000064122740513160014513gustar00rootroot0000000000000052 comment=3bd0dfb87df76e31af62bb8cebe62e127d7c7a29 semanticscuttle-0.98.5+dfsg/000077500000000000000000000000001227405131600157445ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/.gitignore000066400000000000000000000002131227405131600177300ustar00rootroot00000000000000doc/*.html dist/ build.properties package.xml semanticscuttle-dump.sql data/config.php data/config.testing.php data/config.testing-tmp.php semanticscuttle-0.98.5+dfsg/build.properties.dist000066400000000000000000000000361227405131600221220ustar00rootroot00000000000000sfuser=FIXME websitedir=FIXME semanticscuttle-0.98.5+dfsg/build.xml000066400000000000000000000406221227405131600175710ustar00rootroot00000000000000 SemanticScuttle A social bookmarking tool A social bookmarking tool experimenting with new features like structured tags or collaborative descriptions of tags. semanticscuttle.sourceforge.net GPL ${releasenotes} www data doc doc php test **/.gitignore **/.svn build* data/config.php data/config.testing.php data/config.testing-tmp.php data/locales/messages.po data/locales/*/LC_MESSAGES/messages.po dist/** src/php-gettext/examples/** src/php-gettext/tests/** *.properties semanticscuttle-dump.sql *.tgz - Fix bug #109: preserve privacy setting from Delicious export files (Thanks to David Glenck) - Fix bug #110: Document solution for "searching slashes" - Fix bug #111: Comments in config.php mention *.inc.php files (José María Mateos [rinze]) - Fix bug: Do not use eregi functions anymore - Fix bug #3439729: URLs were escaped too often in bookmark list - Fix bug: Subtitle was not escaped - Fix bug #3388219: Incorrect URL when cancelling tag2tag-actions - Fix bug #3393951: Logo images missing on bookmark page - Fix bug #3399815: PHP error in opensearch API in 0.98.3 - Fix bug #3407728: Can't delete users from admin page - Fix bug #3431742: open_basedir problems with /etc/ config files - Fix bug #3436624: Wrong URL for Delicious API when importing - Fix bug #3463481: RSS feed show warnings in feedvalidator.org - Fix bug #3384416: Use URL with protocol in bookmarklet - Fix bug: Invalid HTML when website thumbnails are activated - Fix bug #3413459: Thumbnails not in one line - Fix bug #3468293: Delicious import does not preserve private links - Fix bug #3396727: Title of http://lesscss.org/ not loaded - Fix bug #3111254: getIdFromUser() always returns an integer now (part 2) - Implement request #3403609: fr_CA translation update - Implement patch #3476011: PostgreSQL tables can not be initialized (Frédéric Fauberteau [triaxx]) - Fix bug #3385724: Rename tag ends with XML Parsing Error - Fix bug #3386178: "system:unfiled" secret tag does not work - Fix bug #3384416: Update documentation to explain HTTP/HTTPS root problem - Fix bug #3382126: Linked tags does not work for tags with spaces - Fix delicious API help page link - Fix bug #3375635: XML parsing problem in top.inc.php - Fix bug #3375428: Forgot to remove some old dojo files - Fix bug #3160512: Make SemanticScuttle work with FastCGI - Fix bug #3376618: Broken tag completion for private bookmarks - Switch to jQuery and drop dojo - Implement request #2928950: Private keys for RSS feeds (Mark Pemberton) - Implement request #3164348: Configurable default privacy (Brett Dee) - Implement request #1989987: Theming support - Implement request #3054906: Show user's full name instead of nickname - Implement patch #3059829: update ``FR_CA`` translation - Fix bug #3187177: Wrong URL / Export XML Bookmarks - Fix bug #3097187: Using opensearch with two tags does not work in Firefox - Fix bug #3251877: French translation JavaScript Bug when editing bookmarks - Fix bug #3168521: Title of tag-filtered RSS Feed is broken - Fix bug #2853627: Javascript warning - Fix bug in ``getTagsForBookmarks()`` that fetched all tags - Fix privacy issue when fetching tags of several users - Fix Google custom search XML - Show error message on mysqli connection errors - Update php-gettext library to 1.0.10 - ``api/posts/add`` respects the 'replace' parameter now - Only URLs with an allowed protocol may be added to the database - Support HTTPS connections when ``$root`` is not configured - SQL schema version table to ease future database upgrades - Documentation is written with rST (reStructuredText) now - Support per-host configuration files - Many SQL optimizations - SemanticScuttle shows bookmarks 4 times faster now - New config option to skip "SET NAMES UTF8" call: $dbneedssetnames - Do not highlight admin bookmarks when $enableAdminColors is disabled - Add russian translation - Make HTML export follow the specifications a bit better - Fix bug #2953732: faulty error message for duplicate bookmarks - Fix bug #2960663: do not send content-type headers twice for ajax/api scripts - Fix bug #2976593: fr_FR locale is vietnamese semanticscuttle-0.98.5+dfsg/cache/000077500000000000000000000000001227405131600170075ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/cache/.cvsignore000066400000000000000000000000071227405131600210040ustar00rootroot00000000000000*.cachesemanticscuttle-0.98.5+dfsg/cache/.htaccess000066400000000000000000000000361227405131600206040ustar00rootroot00000000000000order allow,deny deny from allsemanticscuttle-0.98.5+dfsg/data/000077500000000000000000000000001227405131600166555ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/config.default.php000066400000000000000000000332351227405131600222640ustar00rootroot00000000000000 * $admin_users = array('adminnickname', 'user1nick', 'user2nick'); * * * @var array */ $admin_users = array(); /** * If admin users can edit or delete bookmarks belonging to other users. * * @var boolean */ $adminsCanModifyBookmarksFromOtherUsers = true; /** * If tags from other admins are proposed to each admin * (in add/edit a bookmark page). * * @var boolean */ $adminsAreAdvisedTagsFromOtherAdmins = false; /** * Array of usernames that cannot be registered * * @var array */ $reservedusers = array('all', 'watchlist'); /*************************************************** * Anti SPAM measures */ /** * A question to avoid spam. * Shown on user registration page. * * @var string * @see $antispamAnswer */ $antispamQuestion = 'name of this application'; /** * The answer to the antispam question * Users have to write exactly this string. * * @var string * @see $antispamQuestion */ $antispamAnswer = 'semanticscuttle'; /** * Enable or disable user registration * * @var boolean */ $enableRegistration = true; /*************************************************** * Display Templates */ /** * Directory where the template files should be loaded from. * Template files are *.tpl.php * * @var string */ $TEMPLATES_DIR = dirname(__FILE__) . '/templates/'; /** * Header template file. * Included before content files. * * @var string */ $top_include = 'top.inc.php'; /** * Footer template file. * Included after content has been generated and output. * * @var string */ $bottom_include = 'bottom.inc.php'; /** * Ordering of sidebar blocks. * See $menu2Tags for item of menu2 * * @var array * @see $menu2Tags */ $index_sidebar_blocks = array( 'search', 'menu2', 'menu', 'users', 'recent' ); /*************************************************** * Bookmarks */ /** * Format for short dates. * Used in date() calls * * @var string * @link http://php.net/date */ $shortdate = 'Y-m-d'; /** * Format of long dates. * Used in date() calls. * * @var string * @link http://php.net/date */ $longdate = 'j F Y'; /** * Include rel="nofollow" attribute on bookmark links * * @var boolean */ $nofollow = true; /** * Default number of bookmarks per page. * -1 means no limit. * * @var integer * @see $defaultPerPageForAdmins */ $defaultPerPage = 10; /** * Default number of bookmarks per page for admins. * -1 means no limit. * * @var integer * @see $defaultPerPage */ $defaultPerPageForAdmins = 10; /** * Number of days that bookmarks or tags are considered "recent". * * @var integer */ $defaultRecentDays = 14; /** * Bookmark ordering * (date, title, url) * in order ascending or descending * - date_desc - By date of entry descending. * Latest entry first. (Default) * - date_asc - By date of entry ascending. * Earliest entry first. * - title_desc - By title, descending alphabetically. * - title_asc - By title, ascending alphabetically. * - url_desc - By URL, descending alphabetically. * - url_asc - By URL, ascending alphabetically. * * @var string */ $defaultOrderBy = 'date_desc'; /** * Database field to use when sorting by date. * Options here are 'bModified' to sort after * modification date, and 'bDatetime' to sort * after creation date * * @var string */ $dateOrderField = 'bModified'; /** * What to show instead of a description if * a bookmark has none. * Default is '-'. Setting this to '' will collapse * the description row for bookmarks without * a description. * * @var string */ $blankDescription = '-'; /** * Number of entries that are shown in * the RSS feed by default. * * @var integer */ $defaultRssEntries = 15; /** * Number of entries the RSS puts out * at maximum. * * @var integer */ $maxRssEntries = 100; /** * Redirect all bookmarks through $url_redir to improve privacy. * * @var boolean * @see $url_redir */ $useredir = false; /** * URL prefix for bookmarks to redirect through. * * @var string * @see $useredir */ $url_redir = 'http://www.google.com/url?sa=D&q='; /** * Enable short URL service. * Can be used to visit urls using http://example.org/go/shortname * * @var boolean */ $shorturl = true; /** * Array of bookmark extensions that Scuttle should add system tags for. * When adding an URL with one of the given extensions, a system * tag is automatically assigned. * * @var array */ $filetypes = array( 'audio' => array('mp3', 'ogg', 'wav'), 'document' => array('doc', 'odt', 'pdf'), 'image' => array('gif', 'jpeg', 'jpg', 'png'), 'video' => array('avi', 'mov', 'mp4', 'mpeg', 'mpg', 'wmv') ); /** * Link protocols that are allowed for newly added bookmarks. * This prevents i.e. adding javascript: links. * * @link http://en.wikipedia.org/wiki/URI_scheme * * @var array */ $allowedProtocols = array( 'ftp', 'ftps', 'http', 'https', 'mailto', 'nntp', 'xmpp' ); /** * Enable the "common bookmark description" functionality * * @var boolean */ $enableCommonBookmarkDescription = true; /** * Enable bookmark voting system * * @var boolean */ $enableVoting = true; /** * Voting mode: * 1 - voting badge * 2 - voting links: hand up/down * * @var integer */ $votingMode = 2; /** * Hide bookmarks below a certain voting from all users. * Null to deactivate it. * * @var integer */ $hideBelowVoting = null; /** * Default privacy setting for bookmarks: * 0 - Public * 1 - Shared with Watchlist * 2 - Private * * @var integer */ $defaults['privacy'] = 0; /**************************** * Website Thumbnails */ /** * Enable bookmark website thumbnails. * * According to artviper.net license, buy a license if you * gain profit with your pages. * * @var boolean * @link http://www.websitethumbnail.de/ */ $enableWebsiteThumbnails = false; /** * User ID from websitethumbnail.de * * You need to register on * http://www.artviper.net/registerapi.php * in order to use thumbnails on your domain * * @var string * @link http://www.artviper.net/registerapi.php */ $thumbnailsUserId = null; /** * API key. * Sent to you by artviper.net after registration. * * @var string */ $thumbnailsKey = null; /**************************** * Tags */ /** * Enable common tag descriptions * * @var boolean */ $enableCommonTagDescription = true; /** * If everybody may edit common tag description. * When set to false, only admins can do it. * * @var boolean */ $enableCommonTagDescriptionEditedByAll = true; /** * Name of the tag whose subtags will appear in the menu box. * * @var string * @see $maxSizeMenuBlock */ $menuTag = 'menu'; /** * Maximum number of items (tags) appearing in menu box. * * @var integer * @see $menuTag */ $maxSizeMenuBlock = 7; /** * List of tags used by menu2 sidebar box * Empty list = hidden menu2 box * menu2 displays linked tags just belonging to admins. * * @var array */ $menu2Tags = array( 'menu2', 'tags', 'configurable', 'in', 'data/config.php' ); /**************************** * Search */ /** * Number of users' searches that are saved. * 10 is default, -1 means unlimited. * * @var integer */ $sizeSearchHistory = 10; /** * Enable Google Search Engine into "gsearch/" folder. * * @var boolean */ $enableGoogleCustomSearch = false; /**************************** * Other */ /** * Enables special colors on admin pages and bookmarks. * Colors mark the difference to normal users. * * @var boolean */ $enableAdminColors = true; /** * FIXME: explain better * * Add a possible anchor (structured content) for bookmarks description field * a simple value "xxx" (like "author") automatically associates xxx with * [xxx][/xxx]. * A complex value "xxx"=>"yyy" (like "address") directly * associates xxx with yyy. * * @var array */ $descriptionAnchors = array( 'author', 'isbn', 'address' => '[address][street][/street][city][/city][/address]' ); /** * GoogleAnalytics tracking code. * Empty string disables analytics. * * @var string * @link https://www.google.com/analytics/ */ $googleAnalyticsCode = null; /**************************** * avahi export script */ /** * Location of avahi service files, * often /etc/avahi/services/ * * @var string */ $avahiServiceFilePath = '/etc/avahi/services/'; /** * File name prefix of SemanticScuttle-generated * service files * * @var string */ $avahiServiceFilePrefix = 'semanticscuttle-'; /** * Name of tag that bookmarks need to have to * get exported into avahi service files. * * @var string */ $avahiTagName = 'zeroconf'; /** * Array of key value pairs to override service class names. * Key is the old service name ("User"), value the new class * name. * * @var array */ $serviceoverrides = array(); /**************************** * External user authentication */ /** * Type of external authentication via PEAR Auth * To use this, you also need to set * $serviceoverrides['User'] = 'SemanticScuttle_Service_AuthUser'; * * @link http://pear.php.net/manual/en/package.authentication.auth.intro-storage.php * * @var string */ $authType = null; /** * Options for external authentication via PEAR Auth * * @link http://pear.php.net/manual/en/package.authentication.auth.intro.php * * @var array */ $authOptions = null; /** * Enable debugging for PEAR Authentication * * @var boolean */ $authDebug = false; /** * Optional prefix to create email addresses from user names. * i.e. "@example.org" to create "user@example.org" email address * from "user" username. * * @var string */ $authEmailSuffix = null; /** * URL unittests are being run against * Has to have a trailing slash * * @var string */ $unittestUrl = null; /** * Allow "unittestMode=1" in URLs. * Should only be enabled on development systems * * @var boolean */ $allowUnittestMode = false; ?> semanticscuttle-0.98.5+dfsg/data/config.php.dist000066400000000000000000000041121227405131600215730ustar00rootroot00000000000000 * $admin_users = array('adminnickname', 'user1nick', 'user2nick'); * * * @var array */ $admin_users = array(); /*************************************************** * Bookmarks */ /** * Default privacy setting for bookmarks. * 0 - Public * 1 - Shared with Watchlist * 2 - Private * * @var integer */ $defaults['privacy'] = 0; /** * You have completed the basic configuration! * More options can be found in config.default.php. */ ?> semanticscuttle-0.98.5+dfsg/data/locales/000077500000000000000000000000001227405131600202775ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/de_AT/000077500000000000000000000000001227405131600212535ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/de_AT/LC_MESSAGES/000077500000000000000000000000001227405131600230405ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/de_AT/LC_MESSAGES/messages.mo000066400000000000000000000544271227405131600252200ustar00rootroot00000000000000= x/nWCg  ! .; JWhp  ,/8 J X#b%  ' t"fNM]ns   5 @L \%h.5d i w   1,^x0+$;`ek~   "! ## !G i u / L  !!%! *!6!=! E! R!Q\! ! ! !!K!$" ("%5"["`"c"z"j"#" # #W*#B#F#" $/$ 3$ T$b$'k$,$$$ $ $ $%%$%,%4%<% C%O%m% v%&% %%%% % %\%Q&X&i&x& &&&>&''Y1'')' '' '' (( -(9(>(=^(((.(W(HL)9)<) *h*{** *#***+ ++ "+,+E+a+@e+++)+)+&,(>,3g,H,,.-1- G-U- m- {- -- ---(- - ..../.^. 0.0H0Y0o222b<33 04 :4G4P4,c44%44 434(575J5^5-g5"5<5[5Q6b6 s6H~6,6*6/7 O7 [7 e7 7/77w8.9999:97:1@:r:::: ::::0;5;N;n; ;-;;<,<M< = =3=0S=6=+==D=$C>h>?~>;>5>40?8e?;?C?F@;e@@@@!@@AA2AFA`AAAA-A B3B* C38C*lC C C9ChCTDgD|DDDDD DD[DCE SE_EwEW|EEEAE)F;F&@FgFwF8F7GOGfGuGfH,HII1IAI@JI5IIII J"J;2JnJJJJ JJJ JJLJFK#^K K K KKsK1L7LGL>WL)L.L'L[MsMMM!N81N jNKtN+N=N:*O<eO+O OSO]0P<PCPQjQQ%RXwRRR kS=yS?S3S +T.8TgTvT TTT#TTuT?\U@U;U*V#DVVhVNV)W58WnWW/WW W WW X%X4X1MXXXXXIXj0:k#CHK|+L[Sr7V~ co!p`-_@"9Is(/dB,f}XPv<J.4 $uGb?iwUnztA%>e3Tax1 ']g=&*yq^5 WOlE6hQNZM Y; {8m)R\DF2 and %2$s%1$s others%3$s and %s1 other%s to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd Tag LinkAdd a BookmarkAdd new linkAdd to WatchlistAddressAddress was not foundAll BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksBookmarks from other users for this tagCancelChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedConfirm PasswordCopyCould not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link Between TagsDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Link Between TagsEdit Tag Common DescriptionEdit Tag DescriptionEdit linkError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLastLast SearchesLast modification:LineLinked TagsLog InLog OutMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew password generated and sent to %sNextNoNo bookmarks availableNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: france=frenchcountryNote: use ">" to include one tag in another. e.g.: europe>france>parisNumber of bookmarks for this queryOldOnly your bookmarks for this tagPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPopular TagsPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRenameRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSee all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksShared with Watch ListShared with WatchlistSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksSynonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This username already exists, please make another choice.This username has been reserved, please make another choice.TitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.UpdateUser added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksall tags from this userall your tagsbookmark(s)bookmarksbycreated inedit common descriptionis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyou can freely host it on your own web server.Project-Id-Version: SemanticScuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2008-11-18 18:46+0100 Last-Translator: Elmar H. Beer Language-Team: de-AT Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: German X-Poedit-Country: AUSTRIA Plural-Forms: nplurals=2; plural=(n != 1); und %2$s%1$s anderer Person%3$s und %s1 anderen Person%sum %s zu nutzen!%1$s unterstützt die meisten der del.icio.us -API . Fast alle netten Tools, die für dieses System kreiert wurden, können für %1$s geändert und adaptiert werden. Wenn Sie eine Applikation finden, deren API-Adresse Sie nicht einfach ändern können, so fragen Sie doch einfach bei dem/der Entwickler/in nach, um dies zu adaptieren bzw. zu addieren. Man kann nie wissen, eventuell werden jene dies einfach bewerkstelligen.%s Account Information%s: Neue FavoritenTeilen Sie Ihre Favoriten zugänglich für alle Anderen, mit Freunden/innen in Ihrer Beobachtungsliste oder einfach privat für Sie persönlich.Speichern Sie Ihre sämtlichen Favoriten an einem Ort, von überall zugänglich.Kategorisieren Sie Ihre Favoriten mittels unbegrenzten Schlagwörtern, anstatt Sie in unübersichtlichen Ordnern zu speichern.ImpressumKontodetailsAktionenFavoriten addierenEine Verbindung für das Schlagwort addierenFavoriten addierenEinen neuen Navigationslink addieren.Zur Beobachtungsliste addieren.WebadresseLeider konnte die Webadresse nicht gefunden werden.Alle FavoritenAlle SchlagwörterAlle Benutzer/innenAlphabetLeider ist ein kritischer Fehler aufgetreten.Leider ist ein Fehler aufgetreten.Leider trat ein Fehler beim Speichern Ihrer Änderungen auf.Leider wurde die Sicherheitsfrage nicht korrekt beantwortet. Bitte versuchen Sie es erneut.SicherheitsfrageSind Sie sicher?Vorhanden.Die gemeinsame Deskription des Favoriten wurde erfolgreich aktualisiert.Die Favoriten wurden erfolgreich importiert.Ihr Favorit wurde erfolgreich gespeichert.Der Favorit mit der id %s wurde nicht gefunden.BookmarkletFavoritenFavoriten anderer Benutzer/innenAbbrechenDie Änderungen wurden erfolgreich gespeichert.Klicken Sie auf Durchsuchen... um die bereits gespeicherte Favoritendatei auf Ihrem Computer zu lokalisieren und auszuwählen. Die maximale Dateigröße darf 1 MB betragenKlicken Sie auf Durchsuchen... um die bereits gespeicherte Favoritendatei auf Ihrem Computer zu lokalisieren und auszuwählen. Die maximale Dateigröße darf 1 MB betragenKlicken Sie auf Importieren um die bereits lokal gespeicherte Favoritendatei zu importieren. Dieser Prozess kann bis zu einer Minute andauerndurch Komma separiertPasswort verifizierenKopierenLeider konnte die XML Dateneingabe nicht geöffnet werden.KreierenEine Verbindung zwischen Schlagwörtern kreieren.Einen neuen Weblink kreieren.Eine neue Verbindung kreieren:Kritischer FehlerKritische InformationDebugmodusDatumLöschenFavoriten löschenEine Verbindung zwischen Schlagwörtern löschenDas Schlagwort löschen.Einen Navigationslink löschen.Den Weblink löschen.DeskriptionZwei Wochen nicht nach meinem Passwort fragenInkludieren Sie eine der nachfolgenden Bookmarklets in die Favoritenliste Ihres persönlichen Webbrowsers, um jederzeit auf unkomplizierte Art und Weise einen neue Favoriten auf %s zu addierenE-MailLeider ist die E-Mail Adresse nicht gültig.Leider ist diese E-Mail Adresse nicht gültig. Bitte versuchen Sie es erneut.EditierenFavoriten editierenDie gemeinsame Deskription des Favoriten editieren.Einen Weblink zwischen Schlagwörtern editieren.Die gemeinsame Deskription des Schlagwortes editieren.Die Deskription des Schlagwortes editieren.Den Weblink editieren.Ein Fehler ist während der Speicherung Ihres Favoriten aufgetreten.Bereits bestehende Navigationslinks:Favoriten exportierenExportieren Sie Ihre Favoriten aus dem Webbrowser in eine DateiLeider wurde der Weblink für das Schlagwort nicht kreiert.Leider ist das Löschen des Favoriten fehlgeschlagen.Leider ist das Löschen des Weblinks fehlgeschlagen.Leider ist das Löschen des Schlagwortes fehlgeschlagen.Leider ist die Umbenennung des Schlagwortes fehlgeschlagen.Leider ist die gemeinsame Deskription des Favoriten fehlgeschlagen.Leider ist die gemeinsame Deskription des Schlagwortes fehlgeschlagen.Leider ist die Deskription des Schlagwortes fehlgeschlagen.Dateineueste FavoritenVergessenes PasswortHaben Sie Ihr Passwort vergessen?SoftwareinformationenAllgemeiner FehlerAllgemeiner ServerfehlerPasswort generierenDie Favoriten betrachten.HTML - Datei (für Webbrowser)VerlaufVerlauf von %sHomepageSofern Sie Ihr Passwort vergessen haben, können Sie nun durch %s ein neues Passwort generieren lassen. Geben Sie zur Verifizierung Ihren Benutzernamen und Ihre E-Mail Adresse Ihres Accounts ein. In Kürze erhalten Sie ein neues Passwort. Verwenden Sie dieses Passwort, um sich erfolgreich anzumelden.ImportierenDie Favoriten aus einer Favoritendatei importieren.Die Favoriten aus del.icio.us importieren.Die Favoriten aus einer Favoritendatei importieren.Die Favoriten aus del.icio.us importieren.InformationInstruktionenMicrosoft Internet Explorer, Mozilla Firefox und NetscapeMicrosoft Internet Explorer: Datei > Importieren und Exportieren... > Favoriten exportierenälteste FavoritenNeueste SuchbegriffeLetzte Änderung:ZeileAusgewählte SchlagwörterAnmeldenAbmeldenMitglied seitSpezielle SchlagwörterMozilla Firefox: Favoriten > Favoriten verwalten... > Datei > Exportieren...Meine FavoritenMein ProfilMeine BeobachtungslisteNameNetscape: Favoriten > Favoriten verwalten... > Werkzeuge > Exportieren...NeuNeues PasswortEin neues Passwort wurde erfolgreich generiert und an %s gesandt.ältere FavoritenNeinLeider sind keine Favoriten vorhanden.Leider derzeit keine Weblinks.Leider keine Resultate zu diesem Benutzernamen und dieser E-Mail Adresse gefunden.Leider keine Resultate zu diesem Benutzernamen gefunden.Leider nicht vorhanden.Leider nicht gefunden!Anmerkung: inkludieren Sie ein Schlagwort in das '%s' Schlagwort (z.B.: %s>Länder), so erscheint jenes Schlagwort in der Navigationsbox.Anmerkung: verwenden Sie "=" um ein Synonym für ein Schlagwort zu integrieren (z.B.: Frankreich=französisches Land)Anmerkung: verwenden Sie ">" um ein Schlagwort in ein hierarchisch höheres Schlagwort zu integrieren (z.B.: Europa>Frankreich>Paris)Die Anzahl der Favoriten für diese Anfrage.Altnur meine FavoritenSeite %d von %dPasswortLeider ist das Passwort und deren Verifizierung nicht identisch.Das Passwort muss mindestens sechs Zeichen lang sein.Zugriff verweigert.Persönliche DetailsPopuläre SchlagwörterPopularitätDie Favoriten mittels %s addieren.Die Favoriten mittels %s und einem Pop-up-Fenster addieren.neuere FavoritenStatusPrivatProfilÖffentlichNeueste SchlagwörterNeueste Favoriten auf %sRegistrierenRegistrieren Sie sich jetzt!Leider ist Ihre Registrierung fehlgeschlagen. Bitte versuchen Sie es erneut.Verwandte SchlagwörterAus der Beobachtungsliste löschen.UmbenennenErforderlichSQL - FehlerÄnderungen speichernSpeichern Sie die resultierende XML- Datei lokal auf Ihrem ComputerSucheSuche FavoritenSuche ResultateBetrachten Sie sämtliche Schlagwörter dieses/r Benutzers/in.Betrachten Sie sämtliche Benutzer/innen.Betrachten Sie Ihre sämtlichen Schlagwörter.Betrachten Sie populäre Schlagwörter.Wählen Sie die Standardeinstellung der Privatsphäre für Ihre zu importierenden FavoritenBeobachtungslisteBeobachtungslisteRegistrieren Sie sich hier für ein kostenloses %s Konto. Alle unten angeforderten Informationen sind für die Registrierung erforderlichSortieren nach:Speichern, teilen und kategorisieren Sie Ihre Favoriten!Synonyme:Die gemeinsame Deskription des Schlagwortes wurde erfolgreich aktualisiert.Das Schlagwort wurde erfolgreich gelöscht.Die Deskription des Favoriten wurde erfolgreich aktualisiert.Der Weblink für das Schlagwort wurde erfolgreich kreiert.Der Weblink für das Schlagwort wurde erfolgreich gelöscht.Das Schlagwort wurde erfolgreich umbenannt.SchlagwörterIn der Navigation inkludierte, spezielle Schlagwörter mittels dem Schlagwort '%s'.Leider sind die von Ihnen eingetragenen Details nicht korrekt. Bitte versuchen Sie es erneut.Leider konnte die angeforderte URL nicht verarbeitet werden.Leider wurde die angeforderte URL auf diesem Server nicht gefunden.Leider ist ein Fehler während der Speicherung Ihres Favoriten aufgetreten. Bitte versuchen Sie es erenut oder kontaktieren Sie den/die Administrator/in. Herzlichen Dank!Leider ist ein Fehler bei der Generierung des neuen Passwortes aufgetreten. Bitte versuchen Sie es erneut.Leider existiert dieser Benutzername bereits. Bitte treffen Sie eine andere Wahl.Leider wurde dieser Benutzername bereits reserviert. Bitte treffen Sie eine andere Wahl.TitelUm den größtmöglichen Schutz Ihrer Favoriten zu gewährleisten, sollten Sie das Passwort in Ihrem Profil bei Ihrer nächsten Anmeldung editieren.AktualisierenDer/die Benutzer/in wurde zu Ihrer Beobachtungsliste addiert.Der/die Benutzer/in wurde aus Ihrer Beobachtungsliste entfernt.Leider wurde der/die Benutzer/in %s nicht gefunden.BenutzernameLeider wurde der Benutzername nicht angegeben.Benutzer/innenBeobachtet vonBeobachtenBeobachtungslisteXML - Fehler: %s in Zeile %dXML - Datei (für del.icio.us etc.)JaSie müssen einen Benutzernamen, ein Passwort und eine E-Mail Addresse eingeben.Leider sind Sie nicht autorisiert diesen Favoriten zu löschen.Leider sind Sie nicht autorisiert diesen Favoriten zu editieren.Sie haben diesen Favoriten bereits erfolgreich gespeichert.Sie haben sich nun erfolgreich abgemeldet.Ihre Registrierung war erfolgreich!Sie müssen sich zunächst registrieren bzw. anmelden, um einen Favoriten zu addieren.Sie müssen Ihre E-Mail Adresse eingeben.Sie müssen Ihren Benutzernamen eingeben.Ihr Favorit muss einen Titel und eine URL beinhalten.Ihr neues Passwort lautet:alle FavoritenSämtliche Schlagwörter dieses/r Benutzers/in.Ihre sämtlichen Schlagwörter.Favorit(en)Favoritenvonerstellt inDie gemeinsame Deskription editieren.ist lizenziert unter derDie Zeile message_die() wurde öfters aufgerufen.meine Favoritenmeine BeobachtungslisteProfilFavoriten des/der Benutzers/inSie können es selbst frei auf Ihrem Webserver oder Webspace installierensemanticscuttle-0.98.5+dfsg/data/locales/de_AT/LC_MESSAGES/messages.po000066400000000000000000001416021227405131600252130ustar00rootroot00000000000000# Copyright (C) 2008 by Elmar H. Beer # This file is distributed under the same license as the SemanticScuttle package. # Elmar H. Beer # msgid "" msgstr "" "Project-Id-Version: SemanticScuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2008-11-18 18:46+0100\n" "Last-Translator: Elmar H. Beer \n" "Language-Team: de-AT \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: German\n" "X-Poedit-Country: AUSTRIA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "Die Zeile message_die() wurde öfters aufgerufen." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "SQL - Fehler" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Zeile" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Datei" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Information" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Kritische Information" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Leider ist ein Fehler aufgetreten." #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Allgemeiner Fehler" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Leider ist ein kritischer Fehler aufgetreten." #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Kritischer Fehler" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "Debugmodus" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Speichern Sie Ihre sämtlichen Favoriten an einem Ort, von " "überall zugänglich." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Teilen Sie Ihre Favoriten zugänglich für alle Anderen, mit " "Freunden/innen in Ihrer Beobachtungsliste oder einfach privat für Sie " "persönlich." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Kategorisieren Sie Ihre Favoriten mittels unbegrenzten " "Schlagwörtern, anstatt Sie in unübersichtlichen Ordnern zu speichern." #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "Registrieren Sie sich jetzt!" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "um %s zu nutzen!" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Softwareinformationen" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "ist lizenziert unter der" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" "Sie können es selbst frei auf Ihrem Webserver oder Webspace installieren" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s unterstützt die meisten der del.icio.us -API . Fast alle netten Tools, die für dieses System kreiert wurden, " "können für %1$s geändert und adaptiert werden. Wenn Sie eine Applikation " "finden, deren API-Adresse Sie nicht einfach ändern können, so fragen Sie " "doch einfach bei dem/der Entwickler/in nach, um dies zu adaptieren bzw. zu " "addieren. Man kann nie wissen, eventuell werden jene dies einfach " "bewerkstelligen." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Benutzername" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "Favorit(en)" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Sind Sie sicher?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Löschen" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Instruktionen" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Titel" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Deskription" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "Letzte Änderung:" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "Aktualisieren" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "Abbrechen" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Inkludieren Sie eine der nachfolgenden Bookmarklets in die Favoritenliste " "Ihres persönlichen Webbrowsers, um jederzeit auf unkomplizierte Art und " "Weise einen neue Favoriten auf %s zu addieren" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Inkludieren Sie eine der nachfolgenden Bookmarklets in die Favoritenliste " "Ihres persönlichen Webbrowsers, um jederzeit auf unkomplizierte Art und " "Weise einen neue Favoriten auf %s zu addieren" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Die Favoriten mittels %s addieren." #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Die Favoriten mittels %s und einem Pop-up-Fenster addieren." #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 #, fuzzy msgid "Edit the common description of this tag" msgstr "Die gemeinsame Deskription editieren." #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 #, fuzzy msgid "Edit the common description of this bookmark" msgstr "Die gemeinsame Deskription editieren." #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Sortieren nach:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Datum" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "Favoriten anderer Benutzer/innen" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "nur meine Favoriten" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "neueste Favoriten" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "neuere Favoriten" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "ältere Favoriten" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "älteste Favoriten" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Seite %d von %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Schlagwörter" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Editieren" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "von" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr " und %s1 anderen Person%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " und %2$s%1$s anderer Person%3$s" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Die Favoriten aus einer Favoritendatei importieren." #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Kopieren" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "Leider sind Sie nicht autorisiert diesen Favoriten zu editieren." #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Leider sind keine Favoriten vorhanden." #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Impressum" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 #, fuzzy msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "Favoriten" msgstr[1] "Favoriten" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Populäre Schlagwörter" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Populäre Schlagwörter" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Webadresse" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Erforderlich" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Privat" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Schlagwörter" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "durch Komma separiert" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" "Anmerkung: verwenden Sie \">\" um ein Schlagwort in ein hierarchisch höheres " "Schlagwort zu integrieren (z.B.: Europa>Frankreich>Paris)" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" "Anmerkung: verwenden Sie \"=\" um ein Synonym für ein Schlagwort zu " "integrieren (z.B.: Frankreich=französisches Land)" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Status" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Öffentlich" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Beobachtungsliste" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privat" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Favoriten löschen" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "Die gemeinsame Deskription editieren." #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importieren" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Die Favoriten aus einer Favoritendatei importieren." #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Microsoft Internet Explorer, Mozilla Firefox und Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Die Favoriten aus del.icio.us importieren." #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Name" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "E-Mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Löschen" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Kontodetails" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Benutzername" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Neues Passwort" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Passwort verifizieren" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-Mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Privat" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Passwort generieren" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Persönliche Details" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Homepage" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Änderungen speichern" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Aktionen" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "Favoriten exportieren" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "HTML - Datei (für Webbrowser)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "XML - Datei (für del.icio.us etc.)" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Leider nicht gefunden!" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "Leider wurde die angeforderte URL auf diesem Server nicht gefunden." #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Allgemeiner Serverfehler" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "Leider konnte die angeforderte URL nicht verarbeitet werden." #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "Beobachtungsliste" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instruktionen" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Melden Sie sich hier bei " "del.icio.us an, um Ihre Favoriten zu exportieren" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Speichern Sie die resultierende XML- Datei lokal auf Ihrem Computer" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Klicken Sie auf Durchsuchen... um die bereits gespeicherte " "Favoritendatei auf Ihrem Computer zu lokalisieren und auszuwählen. Die " "maximale Dateigröße darf 1 MB betragen" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "" "Wählen Sie die Standardeinstellung der Privatsphäre für Ihre zu " "importierenden Favoriten" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Klicken Sie auf Importieren um die bereits lokal gespeicherte " "Favoritendatei zu importieren. Dieser Prozess kann bis zu einer Minute " "andauern" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Exportieren Sie Ihre Favoriten aus dem Webbrowser in eine Datei" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Microsoft Internet Explorer: Datei > Importieren und " "Exportieren... > Favoriten exportieren" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Favoriten > Favoriten verwalten... > Datei > " "Exportieren..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Favoriten > Favoriten verwalten... > Werkzeuge > " "Exportieren..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Klicken Sie auf Durchsuchen... um die bereits gespeicherte " "Favoritendatei auf Ihrem Computer zu lokalisieren und auszuwählen. Die " "maximale Dateigröße darf 1 MB betragen" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Passwort" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Zwei Wochen nicht nach meinem Passwort fragen" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Anmelden" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Haben Sie Ihr Passwort vergessen?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Sofern Sie Ihr Passwort vergessen haben, können Sie nun durch %s ein neues " "Passwort generieren lassen. Geben Sie zur Verifizierung Ihren Benutzernamen " "und Ihre E-Mail Adresse Ihres Accounts ein. In Kürze erhalten Sie ein neues " "Passwort. Verwenden Sie dieses Passwort, um sich erfolgreich anzumelden." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Passwort generieren" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Mitglied seit" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Beobachten" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Beobachtet von" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Favoriten" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "Die Favoriten betrachten." #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Registrieren Sie sich hier für ein kostenloses %s Konto. Alle unten " "angeforderten Informationen sind für die Registrierung erforderlich" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "Sicherheitsfrage" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Registrieren" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "Suche" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "Zeile" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "Favoriten des/der Benutzers/in" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "meine Favoriten" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "meine Beobachtungsliste" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "alle Favoriten" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Suche" #: data/templates/default/sidebar.block.linked.php:23 msgid "Linked Tags" msgstr "Ausgewählte Schlagwörter" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "Einen neuen Navigationslink addieren." #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "Einen Navigationslink löschen." #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" "In der Navigation inkludierte, spezielle Schlagwörter mittels dem Schlagwort " "'%s'." #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "Spezielle Schlagwörter" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "Betrachten Sie Ihre sämtlichen Schlagwörter." #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "Ihre sämtlichen Schlagwörter." #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "Betrachten Sie sämtliche Schlagwörter dieses/r Benutzers/in." #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "Sämtliche Schlagwörter dieses/r Benutzers/in." #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "Betrachten Sie populäre Schlagwörter." #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Spezielle Schlagwörter" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Neueste Schlagwörter" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Verwandte Schlagwörter" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "Neueste Suchbegriffe" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "Die Anzahl der Favoriten für diese Anfrage." #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Das Schlagwort umbenennen." msgstr[1] "Das Schlagwort umbenennen." #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "Das Schlagwort löschen." #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "Die Deskription des Schlagwortes editieren." #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "Die gemeinsame Deskription des Schlagwortes editieren." #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "Eine Verbindung zwischen Schlagwörtern kreieren." #: data/templates/default/sidebar.block.users.php:14 #, fuzzy msgid "New Users" msgstr "Benutzer/innen" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "Favoriten" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "Betrachten Sie sämtliche Benutzer/innen." #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "Alle Benutzer/innen" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Aus der Beobachtungsliste löschen." #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Aus der Beobachtungsliste löschen." #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Zur Beobachtungsliste addieren." #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "Den Weblink editieren." #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "Synonyme:" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "Eine neue Verbindung kreieren:" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" "Anmerkung: inkludieren Sie ein Schlagwort in das '%s' Schlagwort (z.B.: " "%s>Länder), so erscheint jenes Schlagwort in der Navigationsbox." #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "Kreieren" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "Bereits bestehende Navigationslinks:" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "Leider derzeit keine Weblinks." #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Ja" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Nein" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "Den Weblink löschen." #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "Einen neuen Weblink kreieren." #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "Alt" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "Neu" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "Umbenennen" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alphabet" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Popularität" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Homepage" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Beobachtungsliste" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profil" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Favoriten addieren" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Abmelden" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "Profil" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "erstellt in" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Leider sind Sie nicht autorisiert diesen Favoriten zu löschen." #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Leider ist das Löschen des Favoriten fehlgeschlagen." #: www/alltags.php:50 msgid "All Tags" msgstr "Alle Schlagwörter" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "Leider wurde der/die Benutzer/in %s nicht gefunden." #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "Zugriff verweigert." #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" "Die gemeinsame Deskription des Favoriten wurde erfolgreich aktualisiert." #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "Leider ist die gemeinsame Deskription des Favoriten fehlgeschlagen." #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "Die gemeinsame Deskription des Favoriten editieren." #: www/bookmarks.php:114 www/tags.php:47 #, fuzzy msgid "Remove the tag from the selection" msgstr "Betrachten Sie sämtliche Schlagwörter dieses/r Benutzers/in." #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Ihr Favorit muss einen Titel und eine URL beinhalten." #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Ihr Favorit wurde erfolgreich gespeichert." #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Leider ist ein Fehler während der Speicherung Ihres Favoriten aufgetreten. " "Bitte versuchen Sie es erenut oder kontaktieren Sie den/die Administrator/" "in. Herzlichen Dank!" #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Favoriten addieren" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "" "Sie müssen sich zunächst registrieren bzw. anmelden, um einen Favoriten zu " "addieren." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Meine Favoriten" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Favoriten editieren" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Der Favorit mit der id %s wurde nicht gefunden." #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Leider sind Sie nicht autorisiert diesen Favoriten zu editieren." #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Ein Fehler ist während der Speicherung Ihres Favoriten aufgetreten." #: www/history.php:61 msgid "History" msgstr "Verlauf" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "Verlauf von %s" #: www/history.php:84 msgid "Address was not found" msgstr "Leider konnte die Webadresse nicht gefunden werden." #: www/import.php:47 msgid "Could not open XML input" msgstr "Leider konnte die XML Dateneingabe nicht geöffnet werden." #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XML - Fehler: %s in Zeile %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Die Favoriten aus del.icio.us importieren." #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Sie haben diesen Favoriten bereits erfolgreich gespeichert." #: www/import.php:104 msgid "Bookmark imported." msgstr "Die Favoriten wurden erfolgreich importiert." #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Sie haben diesen Favoriten bereits erfolgreich gespeichert." #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "Favoriten" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Die Favoriten wurden erfolgreich importiert." #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Die Favoriten aus einer Favoritendatei importieren." #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 #, fuzzy msgid "New links between tags: " msgstr "Eine Verbindung zwischen Schlagwörtern löschen" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Sie haben sich nun erfolgreich abgemeldet." #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Neue Favoriten" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Neue Favoriten" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Speichern, teilen und kategorisieren Sie Ihre Favoriten!" #: www/index.php:97 msgid "All Bookmarks" msgstr "Alle Favoriten" #: www/jsScuttle.php:71 msgid "Available" msgstr "Vorhanden." #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Leider nicht vorhanden." #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "" "Leider sind die von Ihnen eingetragenen Details nicht korrekt. Bitte " "versuchen Sie es erneut." #: www/password.php:36 msgid "You must enter your username." msgstr "Sie müssen Ihren Benutzernamen eingeben." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "Sie müssen Ihre E-Mail Adresse " "eingeben." #: www/password.php:48 msgid "No matches found for that username." msgstr "Leider keine Resultate zu diesem Benutzernamen gefunden." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Leider keine Resultate zu diesem Benutzernamen und dieser E-Mail Adresse gefunden." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Leider ist ein Fehler bei der Generierung des neuen Passwortes aufgetreten. " "Bitte versuchen Sie es erneut." #: www/password.php:63 msgid "Your new password is:" msgstr "Ihr neues Passwort lautet:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Um den größtmöglichen Schutz Ihrer Favoriten zu gewährleisten, sollten Sie " "das Passwort in Ihrem Profil bei Ihrer nächsten Anmeldung editieren." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%s Account Information" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Ein neues Passwort wurde erfolgreich generiert und an %s gesandt." #: www/password.php:75 msgid "Forgotten Password" msgstr "Vergessenes Passwort" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Leider wurde der Benutzername nicht angegeben." #: www/profile.php:70 msgid "My Profile" msgstr "Mein Profil" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Leider ist das Passwort und deren Verifizierung nicht identisch." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Das Passwort muss mindestens sechs Zeichen lang sein." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Leider ist die E-Mail Adresse nicht gültig." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Leider trat ein Fehler beim Speichern Ihrer Änderungen auf." #: www/profile.php:129 msgid "Changes saved." msgstr "Die Änderungen wurden erfolgreich gespeichert." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 #, fuzzy msgid "Failed to delete SSL client certificate." msgstr "Leider ist das Löschen des Schlagwortes fehlgeschlagen." #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "Sie müssen einen Benutzernamen, ein Passwort und eine E-Mail Addresse eingeben." #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "" "Leider wurde dieser Benutzername bereits reserviert. Bitte treffen Sie eine " "andere Wahl." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "" "Leider existiert dieser Benutzername bereits. Bitte treffen Sie eine andere " "Wahl." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "Leider wurde dieser Benutzername bereits reserviert. Bitte treffen Sie eine " "andere Wahl." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "" "Leider ist diese E-Mail Adresse nicht gültig. Bitte versuchen Sie es erneut." #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "" "Leider wurde die Sicherheitsfrage nicht korrekt beantwortet. Bitte versuchen " "Sie es erneut." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Ihre Registrierung war erfolgreich!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "" "Leider ist Ihre Registrierung fehlgeschlagen. Bitte versuchen Sie es erneut." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Neueste Favoriten auf %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Suche Favoriten" #: www/search.php:89 msgid "Search Results" msgstr "Suche Resultate" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "Der Weblink für das Schlagwort wurde erfolgreich kreiert." #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "Leider wurde der Weblink für das Schlagwort nicht kreiert." #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "Eine Verbindung für das Schlagwort addieren" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "Der Weblink für das Schlagwort wurde erfolgreich gelöscht." #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "Leider ist das Löschen des Weblinks fehlgeschlagen." #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "Eine Verbindung zwischen Schlagwörtern löschen" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "Einen Weblink zwischen Schlagwörtern editieren." #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" "Die gemeinsame Deskription des Schlagwortes wurde erfolgreich aktualisiert." #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "Leider ist die gemeinsame Deskription des Schlagwortes fehlgeschlagen." #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "Das Schlagwort wurde erfolgreich gelöscht." #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "Leider ist das Löschen des Schlagwortes fehlgeschlagen." #: www/tagedit.php:52 msgid "Tag description updated" msgstr "Die Deskription des Favoriten wurde erfolgreich aktualisiert." #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "Leider ist die Deskription des Schlagwortes fehlgeschlagen." #: www/tagrename.php:63 msgid "Tag renamed" msgstr "Das Schlagwort wurde erfolgreich umbenannt." #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "Leider ist die Umbenennung des Schlagwortes fehlgeschlagen." #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "Benutzer/innen" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Der/die Benutzer/in wurde aus Ihrer Beobachtungsliste entfernt." #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Der/die Benutzer/in wurde zu Ihrer Beobachtungsliste addiert." #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Meine Beobachtungsliste" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "for" #~ msgstr "nach" #~ msgid "URL" #~ msgstr "URL" #~ msgid "Last Users" #~ msgstr "Neueste Benutzer/innen" semanticscuttle-0.98.5+dfsg/data/locales/de_DE/000077500000000000000000000000001227405131600212375ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/de_DE/LC_MESSAGES/000077500000000000000000000000001227405131600230245ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/de_DE/LC_MESSAGES/messages.mo000066400000000000000000000743201227405131600251760ustar00rootroot00000000000000Id O+/xC/n6Wgek{   $  ' - :   ! !,1!/^!! ! !!#!!!%" 4" @"J"'\""4" """ ###t@#f#N$xk$$"$Q% h%"v%%%%%%%%&"&2&GC&&& &&&&& & &' '%"'H'''.'( #( 1(R(i(( (,('(*($) *)K)[)1l))()))**.*Y*0r*+*$**+ ++%+ >+ I+W+l+~++++++M+,,",!,-#.-!R- t- -/-L- ..&.F. K.Y. l.x. }... . . .Q. / / &/3/K8// / //%/////0j!0#0 0 0W0B 1Fc1"11 1 1 22'2,?2l222 22 2 2223 3 3!3 ?3M3 U3c3j3 33343 3&3 4)4!?4a4u4|44 44"44 5\5k5r55 55 555>5(6/6F6Y\66)66 67 &727J7[7 l7x7}77'7=7( 8.28Ga8J8Q8WF9H9"9, :&7:=^:9:<:f;z;;h;:;)<+9<"e<<-<< <#<=(=C=I= Z=g=p=%w= == ====@=+5>)a>U>.>3?)D?n?(?3?H?,@.J@,y@A@@ @ A $A2A EA QA[A ^AiApAAA(A A AAAB.B6B C Da#DDDDxF7FFFFcGG H HHHH/HHI()I"RI!uI I!IIIIJJ JJ)JK56KTlKKK KK9L;L.SL3L L LL2LME2M&xM MM#M/MNN:OO P&PbP Q#Q aNauaMb+bb,c0c@cPc9Yc5cccc d+#d Od\d&{d ddd d#d ddd ee7eMe ge>teeEef"-f$Pfuf f8f f f f(g-gDgrZggggg9g6h&Mh'th]h hii+ii:i j jLj+ej.j;j<j9k Yk5gkk'kRk4'l;\lQlVl_Ammc$n5n<n'nU#oJyoOoxppppD3q xqBqq q7q;.r8jr%r r'rrss"s)s'1sYs hssss!ssts-:t/htUt-t8u1Uuu#u>uMv)Sv4}v2v2vw3w*Dwoww w ww ww&www(xD9-jP^Y1U>I3EB@ i/C< ABg+$*eH wqd.? #3!+05/:fp?o9"ay8 lI{:-L6x%4b}&,"vW0]k ,E rK)%S\ O_NV;u 7T[cZ) ~(7|<C!6(XFt5=RJh 24.'G& m'`s*#G;AD and %2$s%1$s others%3$s and %s1 other%s at least 5 characters, alphanumeric (no spaces, no dots or other special ones) to send you your password if you forget it to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s and all his bookmarks and tags were deleted.%s: Recent bookmarks(Come back to previous page.)Share your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd NoteAdd Tag LinkAdd a BookmarkAdd a contact...Add new linkAdd search plugin into your browser:Add to WatchlistAddressAddress was not foundAdminAdmin tips: Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.php.All BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBad indentationBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksBookmarks found: Bookmarks from other users for this tagBookmarks imported: Bookmarks on this page are managed by an admin user.CSV file (for spreadsheet tools)CancelCertificate not found.Changes saved.Check all URLs (May take some time)Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteClick one of the following bookmarklets to add a button you can click whenever you want to add the page you are on to %sClose contactsClose contacts are mutual contactsCollaborative description: these fields can be viewed and modified by every usersCome back to Come back to the top of this page.Comma-separatedConfirm PasswordCopyCopy this bookmark to YOUR bookmarks.Could not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Create your structure into a simple text file and following this model:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link Between TagsDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Link Between TagsEdit Tag Common DescriptionEdit Tag DescriptionEdit linkEdit the common description of this bookmarkEdit the common description of this tagEdit your personal description of this tagEmailError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete SSL client certificate.Failed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to register SSL client certificate.Failed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFeatured Menu TagsFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomeHomepageIf no result appears, check that all the urls are valid in the admin section.If you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport StructureImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesInvalid TokenIssuerJust visible by you and your contacts.LastLast SearchesLast modification:Last updateLineLinked TagsLog InLog OutManage usersMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew UsersNew links between tags: New password generated and sent to %sNextNoNo bookmarks availableNo certificates registeredNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: france=frenchcountryNote: use ">" to include one tag in another. e.g.: europe>france>parisNumber of bookmarks for this queryOldOnly your bookmarks for this tagOther actionsPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPlease activate cookiesPopular TagsPopular Tags From All UsersPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivatePrivate NotePrivate Note on this bookmarkProblem with ProfilePropulsed by PublicPublic/Shared/PrivateRecent TagsRecent bookmarks posted to %sRegisterRegister current certificate to automatically login.Register nowRegistration failed. Please try again.Related TagsRemove from WatchlistRemove the tag from the selectionRemove this contactRenameRename TagRename TagsRequiredSQL ErrorSSL client certificate deleted.SSL client certificate registered.SSL client certificatesSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSearch...See all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksSerialShared with Watch ListShared with WatchlistSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksSuggested anchors: Synonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'Tags:The certificate does not belong to you.The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThe secret tag "system:imported" allows you to find imported bookmarks.The secret tag "system:unfiled" allows you to find bookmarks without tags.Then import the file. The tags and their relations will be added to your profile.There was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This bookmark URL may not be addedThis bookmark is certified by an admin user.This certificate is already registeredThis menu is composed of keywords (tags) organized by admins.This username already exists, please make another choice.This username has been reserved, please make another choice.This username is not valid (too short, too long, forbidden characters...), please make another choice.TipsTitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.To refresh manually Google Custom Search Engine, goes to: Top of the pageType a username to add it to your contacts.Unsatisfied? You can also try our UpdateUse of the API calls requires authentication.User added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersUsers managementVote againstVote forVotingVoting %dWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou can use anchors to delimite attributes. for example: [publisher]blah[/publisher] You do not have a valid SSL client certificateYou have already submitted some of these bookmarks.You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour browser does not provide a certificate.Your current certificate is already registered with your account.Your new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbycreated indeleteedit common descriptioninis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyouyou can freely host it on your own web server.Project-Id-Version: SemanticScuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2011-05-11 17:57+0100 Last-Translator: Christian Weiske Language-Team: de-AT Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: German X-Poedit-Country: AUSTRIA Plural-Forms: nplurals=2; plural=(n != 1); und %2$s%1$s anderer Person%3$s und %s1 anderen Person%s mindestens 5 alphanumerische Zeichen (keine Leerzeichen, keine Punkte oder andere Sonderzeichen) zum Versenden des Passwortsum %s zu nutzen!%1$s unterstützt die meisten der del.icio.us-API. Fast alle coolen Tools, die für dieses System erstellt wurden, können für %1$s geändert und adaptiert werden. Wenn Sie ein Programm finden, bei dem Sie die API-Adresse nicht ändern können, so fragen Sie doch einfach beim Entwickler nach. Man kann nie wissen, vielleicht machen sie es einfach.%s ZugangsinformationenBenutzer %s und alle seine Lesezeichen wurden gelöscht%s: Neue LesezeichenZur vorherigen Seite zurückTeilen Sie Ihre Lesezeichen mit allen anderen, mit Freunden auf Ihrer Beobachtungsliste oder einfach privat für Sie persönlich.Speichern Sie Ihre sämtlichen Lesezeichen an einem Ort, von überall zugänglich.Kategorisieren Sie Ihre Lesezeichen mittels unbegrenzten Schlagwörtern, anstatt Sie in unübersichtlichen Ordnern zu speichern.ImpressumKontodetailsAktionenLesezeichen hinzufügenNotiz hinzufügenEine Verbindung für das Schlagwort hinzufügenLesezeichen hinzufügenKontakt hinzufügenEinen neuen Navigationslink hinzufügen.Suchplugin zum Browser hinzufügenZur Beobachtungsliste hinzufügenWebadresseDie Adresse wurde nicht gefunden.AdministrationAdministratorhinweise: SemanticScuttle befindet sich im "Debugmodus" ($debugMode = true). Um in den normalen Modus zu wechseln und die Debugmeldungen zu verstecken, einfach $debugMode in der config.php auf "false" setzen.Alle LesezeichenAlle SchlagwörterAlle BenutzerAlphabetEs ist ein kritischer Fehler aufgetreten.Es ist ein Fehler aufgetreten.Beim Speichern Ihrer Änderungen trat ein Fehler auf.Die Sicherheitsfrage wurde nicht korrekt beantwortet. Bitte versuchen Sie es erneut.SicherheitsfrageSind Sie sicher?VorhandenFalsche EinrückungDie gemeinsame Lesezeichenbeschreibung wurde aktualisiertLesezeichen importiert.Ihr Lesezeichen wurde erfolgreich gespeichert.Das Lesezeichen mit der ID %s wurde nicht gefunden.BookmarkletLesezeichenLesezeichen gefunden: Lesezeichen anderer Benutzer mit diesem SchlagwortImportierte Lesezeichen: Lesezeichen auf dieser Seite werden von einem Administrator gepflegt.CSV-Datei (für Tabellenkalkulationen)AbbrechenZertifikat nicht gefunden.Die Änderungen wurden gespeichert.Alle URLs überprüfen (Kann eine Weile dauern)Klicken Sie auf Durchsuchen... um die bereits gespeicherte Lesezeichendatei auszuwählen. Die Dateigröße darf maximal 1 MB betragenKlicken Sie auf Durchsuchen... um die bereits gespeicherte Lesezeichendatei auszuwählen. Die Dateigröße darf maximal 1 MB betragenKlicken Sie auf Importieren um die bereits lokal gespeicherte Lesezeichendatei zu importieren. Dieser Prozess kann bis zu eine Minute andauernZiehen Sie eines der folgenden Bookmarklets in die Lesezeichen Ihres Webbrowsers, um jederzeit auf unkomplizierte Art und Weise einen neue Lesezeichen zu %s hinzuzufügenNahe KontakteNahe Kontakte sind gemeinsame KontakteGemeinsame Beschreibung: Diese Felder können von jedem Benutzer angeschaut und verändert werden.Zurück zu Zurück zum SeitenanfangkommagetrenntPasswort bestätigenKopierenDieses Lesezeichen in DEINE Lesezeichen kopieren.Die XML-Daten konnten nicht geöffnet werden.ErstellenEine Verbindung zwischen Schlagwörtern erstellen.Einen neuen Weblink erstellenEine neue Verbindung erstellen:Erstelle deine eigene Struktur in einer einfachen Textdatei und folge folgendem Modell:Kritischer FehlerKritische InformationDebugmodusDatumLöschenLesezeichen löschenEine Verbindung zwischen Schlagwörtern löschenDas Schlagwort löschen.Einen Navigationslink löschen.Den Weblink löschen.BeschreibungZwei Wochen nicht nach meinem Passwort fragenZiehen Sie eines der folgenden Bookmarklets in die Lesezeichen Ihres Webbrowsers, um jederzeit auf unkomplizierte Art und Weise einen neue Lesezeichen zu %s hinzuzufügenE-MailDie E-Mailadresse ist nicht gültig.Diese E-Mailadresse ist nicht gültig. Bitte versuchen Sie es erneut.BearbeitenLesezeichen bearbeitenDie gemeinsame Lesezeichenbeschreibung bearbeiten.Einen Weblink zwischen Schlagwörtern editierenDie gemeinsame Beschreibung des Schlagwortes bearbeiten.Die Schlagwortbeschreibung bearbeitenDen Weblink bearbeiten.Den gemeinsamen Beschreibungstext bearbeitenDen gemeinsamen Beschreibungstext bearbeitenPrivaten Beschreibungstext bearbeitenE-MailBeim Speichern des Lesezeichens ist ein Fehler aufgetretenBereits bestehende Navigationslinks:Lesezeichen exportierenExportieren Sie Ihre Lesezeichen aus dem Webbrowser in eine DateiDer Weblink für das Schlagwort konnte nicht erstellt werden.Das Löschen des SSL-Client-Zertifikats ist fehlgeschlagen.Das Löschen des Lesezeichens ist fehlgeschlagen.Das Löschen des Weblinks ist fehlgeschlagen.Das Löschen des Schlagwortes ist fehlgeschlagen.Fehler beim registrieren des SSL-Client-Zertifikats.Die Umbenennung des Schlagwortes ist fehlgeschlagen.Das Ändern der gemeinsamen Lesezeichenbeschreibung ist fehlgeschlagen.Ändern der gemeinsame Beschreibung des Schlagwortes ist fehlgeschlagen.Das Aktualisieren der Schlagwortbeschreibung ist fehlgeschlagenSpezielle SchlagwörterDateineueste LesezeichenVergessenes PasswortHaben Sie Ihr Passwort vergessen?SoftwareinformationenAllgemeiner FehlerAllgemeiner ServerfehlerPasswort generierenZu den LesezeichenHTML-Datei (für Webbrowser)VerlaufVerlauf von %sStartHomepageWenn keine Ergebnisse gefunden werden, sollten alle URLs im Administrationsbereich geprüft werden.Sofern Sie Ihr Passwort vergessen haben, können Sie nun durch %s ein neues Passwort erstellen lassen. Geben Sie zur Verifizierung Ihren Benutzernamen und Ihre E-Mail Adresse Ihres Accounts ein. In Kürze erhalten Sie ein neues Passwort. Verwenden Sie dieses Passwort, um sich erfolgreich anzumelden.ImportierenLesezeichen aus Browser-Lesezeichendatei importierenLesezeichen von del.icio.us importierenStruktur importierenDie Lesezeichen aus einer Lesezeichendatei importieren.Lesezeichen von del.icio.us importieren.InformationInstruktionenMicrosoft Internet Explorer, Mozilla Firefox und NetscapeMicrosoft Internet Explorer: Datei > Importieren und Exportieren... > Favoriten exportierenUnzulässiges TokenHerausgeberNur für dich und deine Kontakte sichtbar.älteste LesezeichenNeueste SuchbegriffeLetzte Änderung:Letzte ÄnderungZeileAusgewählte SchlagwörterAnmeldenAbmeldenBenutzer verwaltenMitglied seitSpezielle SchlagwörterMozilla Firefox: Lesezeichen > Lesezeichen verwalten... > Datei > Exportieren...Meine LesezeichenMein ProfilMeine BeobachtungslisteNameNetscape: Lesezeichen > Lesezeichen verwalten... > Werkzeuge > Exportieren...NeuNeues PasswortNeue BenutzerNeue Verbindung zwischen Schlagwörtern: Ein neues Passwort wurde erstellt und an %s gesandt.weitereNeinLeider sind keine Lesezeichen vorhanden.Es sind keine Zertifikate registriert.Leider derzeit keine Weblinks.Keine Ergebnisse für diesen Benutzernamen und diese E-Mailadresse gefunden.Keine Ergebnisse für diesen Benutzernamen gefunden.Nicht vorhandenNicht gefunden!Anmerkung: Fügen Sie ein Schlagwort dem '%s' Schlagwort hinzu (z.B.: %s>Länder), so erscheint dieses Schlagwort in der Navigationsbox.Anmerkung: verwenden Sie "=" um ein Synonym für ein Schlagwort zu integrieren (z.B.: Frankreich=französisches Land)Anmerkung: verwenden Sie ">" um ein Schlagwort in ein hierarchisch höheres Schlagwort zu integrieren (z.B.: Europa>Frankreich>Paris)Die Anzahl der Favoriten für diese AnfrageAltNur meine Lesezeichen für dieses SchlagwortAndere AktionenSeite %d von %dPasswortDas Passwort und dessen Bestätigung ist nicht identisch.Das Passwort muss mindestens sechs Zeichen lang sein.Zugriff verweigert.Persönliche DetailsBitte Cookies aktivierenPopuläre SchlagwörterPopuläre Schlagwörter von allen BenutzernPopularitätLesezeichen zu %s hinzufügen.Lesezeichen zu %s hinzufügen (Pop-up)vorherigeStatusPrivatPrivatnotizPrivate Notiz zu diesem LesezeichenProblem mit ProfilAngetrieben vonÖffentlichÖffentlich/Gemeinsam/PrivatNeueste SchlagwörterNeueste Lesezeichen in %sRegistrierenAktuelles Zertifikat zum automatischen Einloggen registrieren.Registrieren Sie sich jetztIhre Registrierung ist fehlgeschlagen. Bitte versuchen Sie es erneut.Verwandte SchlagwörterAus der Beobachtungsliste löschenSchlagwort aus der Auswahl entfernenKontakt entfernenUmbenennenDas Schlagwort umbenennen.Die Schlagwörter umbenennen.ErforderlichSQL-FehlerSSL-Client-Zertifikat gelöscht.SSL-Client-Zertifikat wurde registriert.SSL-Client-ZertifikateÄnderungen speichernSpeichern Sie die resultierende XML-Datei lokal auf Ihrem ComputerSucheSuche LesezeichenSuche ErgebnisseSucheBetrachten Sie sämtliche Schlagwörter dieses Benutzers.Alle Benutzer anzeigenBetrachten Sie all Ihre Schlagwörter.Betrachten Sie populäre Schlagwörter.Wählen Sie die Standardeinstellung der Privatsphäre für Ihre zu importierenden LesezeichenSeriennummerBeobachtungslisteBeobachtungslisteRegistrieren Sie sich hier für ein kostenloses %s Konto. Alle unten angeforderten Informationen sind für die Registrierung erforderlichSortieren nach:Speichern, teilen und kategorisieren Sie Ihre Lesezeichen!Vorschläge: Synonyme:Die gemeinsame Beschreibung des Schlagwortes wurde erfolgreich aktualisiert.Das Schlagwort wurde erfolgreich gelöscht.Die Schlagwortbeschreibung wurde aktualisiert.Der Weblink für das Schlagwort wurde erfolgreich erstellt.Der Weblink für das Schlagwort wurde erfolgreich gelöscht.Das Schlagwort wurde umbenannt.SchlagwörterSchlagwörter, die im Schlagwort '%s' enthalten sind.Schlagwörter:Dieses Zertifikat gehört nicht zu dir.Die von Ihnen angegebenen Daten sind nicht korrekt. Bitte versuchen Sie es erneut.Die angeforderte URL konnte nicht verarbeitet werdenDie angeforderte URL wurde auf diesem Server nicht gefundenMit dem geheimen Schlagwort "system:imported" findet man importierte Lesezeichen.Mit dem geheimen Schlagwort "system:unfiled" findet man Lesezeichen ohne SchlagwörterImportiere die Datei. Die Schlagwörter und ihre Beziehungen werden deinem Profil hinzugefügt.Beim Speichern des Lesezeichens ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder kontaktieren Sie den Administrator.Bei der Generierung des neuen Passwortes ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.Diese Lesezeichen-URL darf nicht hinzugefügt werden.Dieses Lesezeichen wurde von einem Administrator verifiziertDas Zertifikat ist bereits registriert.Dieses Menü ist aus von Administratoren ausgesuchten Schlagwörtern zusammengestelltDieser Benutzername existiert bereits. Bitte treffen Sie eine andere Wahl.Dieser Benutzername ist bereits reserviert. Bitte treffen Sie eine andere Wahl.Dieser Benutzername ist unzulässig (zu kurz, zu lang, nicht erlaubte Zeichen, ...). Bitte treffen Sie eine andere Wahl.HinweiseTitelUm den größtmöglichen Schutz Ihrer Lesezeichen zu gewährleisten, sollten Sie das Passwort in Ihrem Profil bei Ihrer nächsten Anmeldung editieren.Um die Google Custom Search Engine manuell zu aktualsieren, gehe zu SeitenanfangBenutzername eingeben, der den Kontakten hinzugefügt werden soll.Nicht zufriegen? Probier unser AktualisierenDie API kann nur nach Authentifizierung benutzt werden.Der Benutzer wurde zu Ihrer Beobachtungsliste hinzugefügt.Der Benutzer wurde aus Ihrer Beobachtungsliste entfernt.Der Benutzer %s wurde nicht gefunden.BenutzernameDer Benutzername wurde nicht angegeben.BenutzerBenutzerverwaltungDagegenDafürStimmenStimmen: %dBeobachtet vonBeobachtenBeobachtungslisteXML-Fehler: %s in Zeile %dXML-Datei (für del.icio.us etc.)JaSie müssen einen Benutzernamen, ein Passwort und eine E-Mailaddresse eingeben.Sie dürfen dieses Lesezeichen nicht löschenSie dürfen dieses Lesezeichen nicht bearbeitenAnker können benutzt werden, um Attribute zu begrenzen: [publisher]blah[/publisher] Du hast kein gültiges SSL-Client-Zertifikat.Sie haben einige dieser Lesezeichen bereits gespeichert.Sie haben dieses Lesezeichen bereits gespeichert.Sie sind jetzt abgemeldet.Ihre Registrierung war erfolgreich!Sie müssen angemeldet sein, um ein Lesezeichen hinzuzufügen.Sie müssen Ihre E-Mailadresse eingeben.Sie müssen Ihren Benutzernamen eingeben.Ihr Lesezeichen muss einen Titel und eine URL haben.Dein Browser stellt kein Zertifikat zu Verfügung.Dein aktuelles Zertifikat ist bereits registriert.Ihr neues Passwort lautet:alle LesezeichenSämtliche Schlagwörter dieses Benutzers.All Ihre Schlagwörter.LesezeichenLesezeichenLesezeichenLesezeichenvonerstellt inLöschenDie gemeinsame Beschreibung bearbeiteninist lizenziert unter dermessage_die() wurde mehrmals aufgerufen.meine Lesezeichenmeine BeobachtungslisteProfilLesezeichen des BenutzersdirSie können es selbst auf Ihrem Webserver oder Webspace installierensemanticscuttle-0.98.5+dfsg/data/locales/de_DE/LC_MESSAGES/messages.po000066400000000000000000001451211227405131600251770ustar00rootroot00000000000000# Copyright (C) 2008 by Elmar H. Beer # This file is distributed under the same license as the SemanticScuttle package. # Elmar H. Beer # msgid "" msgstr "" "Project-Id-Version: SemanticScuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2011-05-11 17:57+0100\n" "Last-Translator: Christian Weiske \n" "Language-Team: de-AT \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: German\n" "X-Poedit-Country: AUSTRIA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() wurde mehrmals aufgerufen." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "SQL-Fehler" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Zeile" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Datei" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Information" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Kritische Information" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Es ist ein Fehler aufgetreten." #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Allgemeiner Fehler" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Es ist ein kritischer Fehler aufgetreten." #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Kritischer Fehler" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "Debugmodus" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Speichern Sie Ihre sämtlichen Lesezeichen an einem Ort, von " "überall zugänglich." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Teilen Sie Ihre Lesezeichen mit allen anderen, mit Freunden " "auf Ihrer Beobachtungsliste oder einfach privat für Sie persönlich." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Kategorisieren Sie Ihre Lesezeichen mittels unbegrenzten " "Schlagwörtern, anstatt Sie in unübersichtlichen Ordnern zu speichern." #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "Registrieren Sie sich jetzt" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "um %s zu nutzen!" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Softwareinformationen" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "ist lizenziert unter der" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "Sie können es selbst auf Ihrem Webserver oder Webspace installieren" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s unterstützt die meisten der del.icio.us-API. Fast alle coolen Tools, die für dieses System erstellt wurden, können " "für %1$s geändert und adaptiert werden. Wenn Sie ein Programm finden, bei " "dem Sie die API-Adresse nicht ändern können, so fragen Sie doch einfach beim " "Entwickler nach. Man kann nie wissen, vielleicht machen sie es einfach." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "Hinweise" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "Suchplugin zum Browser hinzufügen" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" "Mit dem geheimen Schlagwort \"system:unfiled\" findet man Lesezeichen ohne " "Schlagwörter" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" "Mit dem geheimen Schlagwort \"system:imported\" findet man importierte " "Lesezeichen." #: data/templates/default/admin.tpl.php:5 msgid "Users management" msgstr "Benutzerverwaltung" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "Öffentlich/Gemeinsam/Privat" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "Lesezeichen" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Sind Sie sicher?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Löschen" #: data/templates/default/admin.tpl.php:27 msgid "Other actions" msgstr "Andere Aktionen" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "Alle URLs überprüfen (Kann eine Weile dauern)" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" "Gemeinsame Beschreibung: Diese Felder können von jedem Benutzer angeschaut " "und verändert werden." #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Titel" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Beschreibung" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "Letzte Änderung:" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "Aktualisieren" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "Abbrechen" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Ziehen Sie eines der folgenden Bookmarklets in die Lesezeichen Ihres " "Webbrowsers, um jederzeit auf unkomplizierte Art und Weise einen neue " "Lesezeichen zu %s hinzuzufügen" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Ziehen Sie eines der folgenden Bookmarklets in die Lesezeichen Ihres " "Webbrowsers, um jederzeit auf unkomplizierte Art und Weise einen neue " "Lesezeichen zu %s hinzuzufügen" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Lesezeichen zu %s hinzufügen." #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Lesezeichen zu %s hinzufügen (Pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "Stimmen: %d" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "Dafür" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "Dagegen" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "Lesezeichen auf dieser Seite werden von einem Administrator gepflegt." #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "Den gemeinsamen Beschreibungstext bearbeiten" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "Den gemeinsamen Beschreibungstext bearbeiten" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "Privaten Beschreibungstext bearbeiten" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Sortieren nach:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Datum" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "Stimmen" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "Lesezeichen anderer Benutzer mit diesem Schlagwort" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "Nur meine Lesezeichen für dieses Schlagwort" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "neueste Lesezeichen" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "vorherige" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "weitere" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "älteste Lesezeichen" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Seite %d von %d" #: data/templates/default/bookmarks.tpl.php:295 msgid "Tags:" msgstr "Schlagwörter:" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Bearbeiten" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "Letzte Änderung" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "von" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "dir" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr " und %s1 anderen Person%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " und %2$s%1$s anderer Person%3$s" #: data/templates/default/bookmarks.tpl.php:350 msgid "Copy this bookmark to YOUR bookmarks." msgstr "Dieses Lesezeichen in DEINE Lesezeichen kopieren." #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Kopieren" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "Dieses Lesezeichen wurde von einem Administrator verifiziert" #: data/templates/default/bookmarks.tpl.php:430 msgid "Private Note on this bookmark" msgstr "Private Notiz zu diesem Lesezeichen" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "Zurück zum Seitenanfang" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "Seitenanfang" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Leider sind keine Lesezeichen vorhanden." #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Impressum" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "Angetrieben von" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "Lesezeichen" msgstr[1] "Lesezeichen" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Populäre Schlagwörter" #: data/templates/default/dynamictags.inc.php:108 msgid "Popular Tags From All Users" msgstr "Populäre Schlagwörter von allen Benutzern" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Webadresse" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Erforderlich" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "Notiz hinzufügen" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" "Anker können benutzt werden, um Attribute zu begrenzen: [publisher]blah[/" "publisher] " #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "Vorschläge: " #: data/templates/default/editbookmark.tpl.php:76 msgid "Private Note" msgstr "Privatnotiz" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "Nur für dich und deine Kontakte sichtbar." #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Schlagwörter" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "kommagetrennt" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" "Anmerkung: verwenden Sie \">\" um ein Schlagwort in ein hierarchisch höheres " "Schlagwort zu integrieren (z.B.: Europa>Frankreich>Paris)" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" "Anmerkung: verwenden Sie \"=\" um ein Synonym für ein Schlagwort zu " "integrieren (z.B.: Frankreich=französisches Land)" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Status" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Öffentlich" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Beobachtungsliste" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privat" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Lesezeichen löschen" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "Die gemeinsame Beschreibung bearbeiten" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importieren" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Die Lesezeichen aus einer Lesezeichendatei importieren." #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Microsoft Internet Explorer, Mozilla Firefox und Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Lesezeichen von del.icio.us importieren." #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "SSL-Client-Zertifikate" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "Seriennummer" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Name" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 msgid "Email" msgstr "E-Mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "Herausgeber" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 msgid "delete" msgstr "Löschen" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "Es sind keine Zertifikate registriert." #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "Dein aktuelles Zertifikat ist bereits registriert." #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "Aktuelles Zertifikat zum automatischen Einloggen registrieren." #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "Dein Browser stellt kein Zertifikat zu Verfügung." #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Kontodetails" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Benutzername" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Neues Passwort" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Passwort bestätigen" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-Mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Privatnotiz" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Passwort generieren" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Persönliche Details" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Homepage" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Änderungen speichern" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Aktionen" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "Lesezeichen exportieren" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "HTML-Datei (für Webbrowser)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "XML-Datei (für del.icio.us etc.)" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "CSV-Datei (für Tabellenkalkulationen)" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Nicht gefunden!" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "Die angeforderte URL wurde auf diesem Server nicht gefunden" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Allgemeiner Serverfehler" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "Die angeforderte URL konnte nicht verarbeitet werden" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "Beobachtungsliste" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instruktionen" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Melden Sie sich bei del.icio.us " "an, um Ihre Lesezeichen zu exportieren" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Speichern Sie die resultierende XML-Datei lokal auf Ihrem Computer" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Klicken Sie auf Durchsuchen... um die bereits gespeicherte " "Lesezeichendatei auszuwählen. Die Dateigröße darf maximal 1 MB betragen" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "" "Wählen Sie die Standardeinstellung der Privatsphäre für Ihre zu " "importierenden Lesezeichen" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Klicken Sie auf Importieren um die bereits lokal gespeicherte " "Lesezeichendatei zu importieren. Dieser Prozess kann bis zu eine Minute " "andauern" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Exportieren Sie Ihre Lesezeichen aus dem Webbrowser in eine Datei" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Microsoft Internet Explorer: Datei > Importieren und " "Exportieren... > Favoriten exportieren" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Lesezeichen > Lesezeichen verwalten... > Datei " "> Exportieren..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Lesezeichen > Lesezeichen verwalten... > Werkzeuge > " "Exportieren..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Klicken Sie auf Durchsuchen... um die bereits gespeicherte " "Lesezeichendatei auszuwählen. Die Dateigröße darf maximal 1 MB betragen" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" "Erstelle deine eigene Struktur in einer einfachen Textdatei und folge " "folgendem Modell:" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" "Importiere die Datei. Die Schlagwörter und ihre Beziehungen werden deinem " "Profil hinzugefügt." #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "Bitte Cookies aktivieren" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Passwort" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Zwei Wochen nicht nach meinem Passwort fragen" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Anmelden" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Haben Sie Ihr Passwort vergessen?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Sofern Sie Ihr Passwort vergessen haben, können Sie nun durch %s ein neues " "Passwort erstellen lassen. Geben Sie zur Verifizierung Ihren Benutzernamen " "und Ihre E-Mail Adresse Ihres Accounts ein. In Kürze erhalten Sie ein neues " "Passwort. Verwenden Sie dieses Passwort, um sich erfolgreich anzumelden." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Passwort generieren" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Mitglied seit" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Beobachten" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Beobachtet von" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Lesezeichen" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "Zu den Lesezeichen" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Registrieren Sie sich hier für ein kostenloses %s Konto. Alle unten " "angeforderten Informationen sind für die Registrierung erforderlich" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" " mindestens 5 alphanumerische Zeichen (keine Leerzeichen, keine Punkte oder " "andere Sonderzeichen)" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr " zum Versenden des Passworts" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "Sicherheitsfrage" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Registrieren" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "Suche" #: data/templates/default/search.menu.php:28 msgid "in" msgstr "in" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "Lesezeichen des Benutzers" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "meine Lesezeichen" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "meine Beobachtungsliste" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "alle Lesezeichen" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Suche" #: data/templates/default/sidebar.block.linked.php:23 msgid "Linked Tags" msgstr "Ausgewählte Schlagwörter" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "Einen neuen Navigationslink hinzufügen." #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "Einen Navigationslink löschen." #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "Schlagwörter, die im Schlagwort '%s' enthalten sind." #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "Spezielle Schlagwörter" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "Betrachten Sie all Ihre Schlagwörter." #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "All Ihre Schlagwörter." #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "Betrachten Sie sämtliche Schlagwörter dieses Benutzers." #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "Sämtliche Schlagwörter dieses Benutzers." #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "Betrachten Sie populäre Schlagwörter." #: data/templates/default/sidebar.block.menu2.php:21 msgid "Featured Menu Tags" msgstr "Spezielle Schlagwörter" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" "Dieses Menü ist aus von Administratoren ausgesuchten Schlagwörtern " "zusammengestellt" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Neueste Schlagwörter" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Verwandte Schlagwörter" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "Neueste Suchbegriffe" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "Die Anzahl der Favoriten für diese Anfrage" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Das Schlagwort umbenennen." msgstr[1] "Die Schlagwörter umbenennen." #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "Das Schlagwort löschen." #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "Die Schlagwortbeschreibung bearbeiten" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "Die gemeinsame Beschreibung des Schlagwortes bearbeiten." #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "Eine Verbindung zwischen Schlagwörtern erstellen." #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "Neue Benutzer" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "Lesezeichen" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "Alle Benutzer anzeigen" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "Alle Benutzer" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "Nahe Kontakte sind gemeinsame Kontakte" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "Nahe Kontakte" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "Kontakt hinzufügen" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "Benutzername eingeben, der den Kontakten hinzugefügt werden soll." #: data/templates/default/sidebar.block.watchlist.php:44 msgid "Remove this contact" msgstr "Kontakt entfernen" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Aus der Beobachtungsliste löschen" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Zur Beobachtungsliste hinzufügen" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "Den Weblink bearbeiten." #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "Synonyme:" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "Eine neue Verbindung erstellen:" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" "Anmerkung: Fügen Sie ein Schlagwort dem '%s' Schlagwort hinzu (z.B.: " "%s>Länder), so erscheint dieses Schlagwort in der Navigationsbox." #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "Erstellen" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "Bereits bestehende Navigationslinks:" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "Leider derzeit keine Weblinks." #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Ja" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Nein" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "Den Weblink löschen." #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "Einen neuen Weblink erstellen" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "Alt" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "Neu" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "Umbenennen" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alphabet" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Popularität" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 msgid "Home" msgstr "Start" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Beobachtungsliste" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profil" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Lesezeichen hinzufügen" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Abmelden" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "Administration" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" "SemanticScuttle befindet sich im \"Debugmodus\" ($debugMode = true). Um in " "den normalen Modus zu wechseln und die Debugmeldungen zu verstecken, einfach " "$debugMode in der config.php auf \"false\" setzen." #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "Profil" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "erstellt in" #: www/admin.php:32 msgid "Manage users" msgstr "Benutzer verwalten" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "Benutzer %s und alle seine Lesezeichen wurden gelöscht" #: www/admin.php:76 msgid "Problem with " msgstr "Problem mit " #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Sie dürfen dieses Lesezeichen nicht löschen" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Das Löschen des Lesezeichens ist fehlgeschlagen." #: www/alltags.php:50 msgid "All Tags" msgstr "Alle Schlagwörter" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "Der Benutzer %s wurde nicht gefunden." #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "Zugriff verweigert." #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "Die gemeinsame Lesezeichenbeschreibung wurde aktualisiert" #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "Das Ändern der gemeinsamen Lesezeichenbeschreibung ist fehlgeschlagen." #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "Die gemeinsame Lesezeichenbeschreibung bearbeiten." #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "Schlagwort aus der Auswahl entfernen" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Ihr Lesezeichen muss einen Titel und eine URL haben." #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "Diese Lesezeichen-URL darf nicht hinzugefügt werden." #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Ihr Lesezeichen wurde erfolgreich gespeichert." #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "Zur vorherigen Seite zurück" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Beim Speichern des Lesezeichens ist ein Fehler aufgetreten. Bitte versuchen " "Sie es erneut oder kontaktieren Sie den Administrator." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Lesezeichen hinzufügen" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Sie müssen angemeldet sein, um ein Lesezeichen hinzuzufügen." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Meine Lesezeichen" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Lesezeichen bearbeiten" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Das Lesezeichen mit der ID %s wurde nicht gefunden." #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Sie dürfen dieses Lesezeichen nicht bearbeiten" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Beim Speichern des Lesezeichens ist ein Fehler aufgetreten" #: www/history.php:61 msgid "History" msgstr "Verlauf" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "Verlauf von %s" #: www/history.php:84 msgid "Address was not found" msgstr "Die Adresse wurde nicht gefunden." #: www/import.php:47 msgid "Could not open XML input" msgstr "Die XML-Daten konnten nicht geöffnet werden." #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XML-Fehler: %s in Zeile %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Lesezeichen von del.icio.us importieren" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Sie haben dieses Lesezeichen bereits gespeichert." #: www/import.php:104 msgid "Bookmark imported." msgstr "Lesezeichen importiert." #: www/importNetscape.php:95 msgid "You have already submitted some of these bookmarks." msgstr "Sie haben einige dieser Lesezeichen bereits gespeichert." #: www/importNetscape.php:115 msgid "Bookmarks found: " msgstr "Lesezeichen gefunden: " #: www/importNetscape.php:116 msgid "Bookmarks imported: " msgstr "Importierte Lesezeichen: " #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Lesezeichen aus Browser-Lesezeichendatei importieren" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "Falsche Einrückung" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "Neue Verbindung zwischen Schlagwörtern: " #: www/importStructure.php:72 msgid "Import Structure" msgstr "Struktur importieren" #: www/index.php:38 msgid "You have now logged out" msgstr "Sie sind jetzt abgemeldet." #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Neue Lesezeichen" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Neue Lesezeichen" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Speichern, teilen und kategorisieren Sie Ihre Lesezeichen!" #: www/index.php:97 msgid "All Bookmarks" msgstr "Alle Lesezeichen" #: www/jsScuttle.php:71 msgid "Available" msgstr "Vorhanden" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Nicht vorhanden" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "" "Die von Ihnen angegebenen Daten sind nicht korrekt. Bitte versuchen Sie es " "erneut." #: www/password.php:36 msgid "You must enter your username." msgstr "Sie müssen Ihren Benutzernamen eingeben." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "Sie müssen Ihre E-Mailadresse " "eingeben." #: www/password.php:48 msgid "No matches found for that username." msgstr "Keine Ergebnisse für diesen Benutzernamen gefunden." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Keine Ergebnisse für diesen Benutzernamen und diese E-Mailadresse gefunden." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Bei der Generierung des neuen Passwortes ist ein Fehler aufgetreten. Bitte " "versuchen Sie es erneut." #: www/password.php:63 msgid "Your new password is:" msgstr "Ihr neues Passwort lautet:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Um den größtmöglichen Schutz Ihrer Lesezeichen zu gewährleisten, sollten Sie " "das Passwort in Ihrem Profil bei Ihrer nächsten Anmeldung editieren." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%s Zugangsinformationen" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Ein neues Passwort wurde erstellt und an %s gesandt." #: www/password.php:75 msgid "Forgotten Password" msgstr "Vergessenes Passwort" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Der Benutzername wurde nicht angegeben." #: www/profile.php:70 msgid "My Profile" msgstr "Mein Profil" #: www/profile.php:110 msgid "Invalid Token" msgstr "Unzulässiges Token" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Das Passwort und dessen Bestätigung ist nicht identisch." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Das Passwort muss mindestens sechs Zeichen lang sein." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Die E-Mailadresse ist nicht gültig." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Beim Speichern Ihrer Änderungen trat ein Fehler auf." #: www/profile.php:129 msgid "Changes saved." msgstr "Die Änderungen wurden gespeichert." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "Du hast kein gültiges SSL-Client-Zertifikat." #: www/profile.php:150 msgid "This certificate is already registered" msgstr "Das Zertifikat ist bereits registriert." #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "Fehler beim registrieren des SSL-Client-Zertifikats." #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "SSL-Client-Zertifikat wurde registriert." #: www/profile.php:163 msgid "Certificate not found." msgstr "Zertifikat nicht gefunden." #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "Dieses Zertifikat gehört nicht zu dir." #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "Das Löschen des SSL-Client-Zertifikats ist fehlgeschlagen." #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "SSL-Client-Zertifikat gelöscht." #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "Sie müssen einen Benutzernamen, ein Passwort und eine E-Mailaddresse eingeben." #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "" "Dieser Benutzername ist bereits reserviert. Bitte treffen Sie eine andere " "Wahl." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "" "Dieser Benutzername existiert bereits. Bitte treffen Sie eine andere Wahl." #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "Dieser Benutzername ist unzulässig (zu kurz, zu lang, nicht erlaubte " "Zeichen, ...). Bitte treffen Sie eine andere Wahl." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "Diese E-Mailadresse ist nicht gültig. Bitte versuchen Sie es erneut." #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "" "Die Sicherheitsfrage wurde nicht korrekt beantwortet. Bitte versuchen Sie es " "erneut." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Ihre Registrierung war erfolgreich!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Ihre Registrierung ist fehlgeschlagen. Bitte versuchen Sie es erneut." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Neueste Lesezeichen in %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Suche Lesezeichen" #: www/search.php:89 msgid "Search Results" msgstr "Suche Ergebnisse" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "Nicht zufriegen? Probier unser " #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "Der Weblink für das Schlagwort wurde erfolgreich erstellt." #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "Der Weblink für das Schlagwort konnte nicht erstellt werden." #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "Eine Verbindung für das Schlagwort hinzufügen" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "Der Weblink für das Schlagwort wurde erfolgreich gelöscht." #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "Das Löschen des Weblinks ist fehlgeschlagen." #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "Eine Verbindung zwischen Schlagwörtern löschen" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "Einen Weblink zwischen Schlagwörtern editieren" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" "Die gemeinsame Beschreibung des Schlagwortes wurde erfolgreich aktualisiert." #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" "Ändern der gemeinsame Beschreibung des Schlagwortes ist fehlgeschlagen." #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "Das Schlagwort wurde erfolgreich gelöscht." #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "Das Löschen des Schlagwortes ist fehlgeschlagen." #: www/tagedit.php:52 msgid "Tag description updated" msgstr "Die Schlagwortbeschreibung wurde aktualisiert." #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "Das Aktualisieren der Schlagwortbeschreibung ist fehlgeschlagen" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "Das Schlagwort wurde umbenannt." #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "Die Umbenennung des Schlagwortes ist fehlgeschlagen." #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "Benutzer" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Der Benutzer wurde aus Ihrer Beobachtungsliste entfernt." #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Der Benutzer wurde zu Ihrer Beobachtungsliste hinzugefügt." #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Meine Beobachtungsliste" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "Die API kann nur nach Authentifizierung benutzt werden." #: www/gsearch/index.php:51 msgid "Come back to " msgstr "Zurück zu " #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "Administratorhinweise: " #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "Um die Google Custom Search Engine manuell zu aktualsieren, gehe zu " #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" "Wenn keine Ergebnisse gefunden werden, sollten alle URLs im " "Administrationsbereich geprüft werden." #~ msgid "for" #~ msgstr "nach" #~ msgid "URL" #~ msgstr "URL" #~ msgid "Last Users" #~ msgstr "Neueste Benutzer" semanticscuttle-0.98.5+dfsg/data/locales/dk_DK/000077500000000000000000000000001227405131600212535ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/dk_DK/LC_MESSAGES/000077500000000000000000000000001227405131600230405ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/dk_DK/LC_MESSAGES/messages.mo000066400000000000000000000345131227405131600252120ustar00rootroot00000000000000<\   x|nWgo "*@IRl,}  %   t/fN Zj{  %.  1 Rlqw  "!#!* L X/eL Q Z g rK % j"#   ',5 F S ^i} &  " + 5\B>Yv)=(.WDH9h% #  (2K@O+)) (( 3Q H  . ! 1!?!R!(U! ~! !!!d#{##<%Q%_h%U%r& &&&&&&&' "'/'7'N'8]' ' '''%' ' ((|$(n([)l)~))) )) )))) )$*&***5*++;0+5l++++ ++ + +,,+,4, D,O, - -$3-&X-$- - -.-[-I.P.U.]. d.Yq.. ...X/ \//h////u/.60e0 w0 00%0-001 1 !1-1B1J1Q1Y1 `1 k1y1 1,111 1 22O"2r2w22M22k3o3$~3 3=3+3:4kR4N49 5G5lM5,5)5*6 <6!G6i6 x6666C6466)7)`771787J8S84s88888$8 9929a ?I+ u8*9M 3OHD)=mob A#{246!Zf nPe`]T_UtlhC:c'.S/x^RJiwy}WY[NL$dsjG(1q"p;7%,V&\E>g5F@-z|vKQ~B<rk0X and %2$s%1$s others%3$s and %s1 other%s%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAddress was not foundAll TagsAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Are you sure?AvailableBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedConfirm PasswordCopyCould not open XML inputCritical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkError while saving your bookmarkExport your bookmarks from your browser to a fileFailed to delete bookmarkFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordHistoryHistory for %sHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLastLineLog InLog OutMember SinceMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...New PasswordNew password generated and sent to %sNextNoNo bookmarks availableNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Personal DetailsPopular TagsPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRecent TagsRecent bookmarks posted to %sRegisterRegistration failed. Please try again.Related TagsRemove from WatchlistRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSelect the default privacy setting for your imported bookmarksShared with Watch ListSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksTagsThe details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This username already exists, please make another choice.TitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.User added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedWatched ByWatchingWatchlistXML error: %s at line %dYesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksbookmarkbookmarksbymessage_die() was called multiple times.my bookmarksmy watchlistthis user's bookmarksProject-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-04-16 22:04-0800 Last-Translator: Marcus Campbell Language-Team: dk-DK Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Danish X-Poedit-Country: DENMARK Plural-Forms: nplurals=2; plural=(n != 1); og %2$s%1$s andre%3$sog %s1 andre%s%1$s understøtter de fleste del.icio.us API. Næsten alle de værktøjer udviklet til det system kan modificeres til at fungere med %1$s i stedet for. Hvis du finder et værktøj som ikke tillader at du fortager ændringer i API adresse, kunne du jo spørge udviklerne. Man ved aldrig det kunne jo være de ville.%s Konto oplysninger%s: Seneste bogmærkerDel dine bogmærker med alle, med vennerne på din overvågningsliste eller behold dem private.Gem alle dine favorit links et sted, tilgængelig fra hvor som helstMarker dine bogmærker med så mange mærkater som du ønsker, i stedet for at kæmpe med mapper.Om programmetKonto oplysningerAktionTilføj bogmærkeTilføj et bogmærkeTilføj til OvervågningslistenAdresseAdressen kunne ikke findesAlle mærkerAlfabetEn kritisk fejl opstodEn fejl opstodEn fejl opstod ved forsøg på at gemme dine ændringer.Er du sikker?TilgængeligBogmærke importeretBogmærke gemtBogmærke med id %s kunne ikke findesBogmærkeletBogmærkerÆndringer gemt.Tryk Gennemse... for at finde den gemte bogmærke fil på din computer. Filstørrelsen må maksimum være på 1MBTryk Gennemse... for at finde denne fil på din computer. Filstørrelsen må maksimum være på 1MBTryk Import for at starte med at importere dine bogmærker; dette kan tage et par minutter.Komma adskillelsebekræft kodeordKopiKunne ikke åbne XML inputKritisk fejlKritisk informationDEBUG MODEDatoSletSlet bogmærkerBeskrivelseSøg ikke efter mit kodeord i 2 ugerTræk en af de følgende bogmærkeletter til din browsers bogmærker, og tryk på den hver gang du ønsker at tilføje den side du er på til %sE-mailE-mail adressen er ikke gyldig.E-mail addressen er ikke gyldig. Prøv venligst igen.RedigereRediger bogmærkerDer opstod en fejl, ved forsøg på at gemme dit bogmærke.Eksportere dine bogmærker fra din browser til en filKunne ikke slette bogmærketFilerFørsteGlemt kodeordGlemt dit kodeord?Nørd TingGeneral fejlGeneral server fejlGenerere kodeordHistorieHistorie for %sHjemmesideHvis du har glemte dit kodeord, kan %s generere et nyt et. Skriv brugernavnet og e-mail adressen på din konto i formularen nedenfor og vi vil sende dit nye kodeord til dig via e-mail.ImportereImportere bogmærker fra browserImportere bogmærker fra del.icio.usImportere bogmærker fra bogmærke filImportere bogmærker fra del.icio.usInformationInstruktionerInternet Explorer, Mozilla Firefox og NetscapeInternet Explorer: Filer > Importer og eksporter... > Eksporter foretrukne emnerSidsteLineLog indLog udMedlem sidenMozilla Firefox: Bogmærker > Arranger bogmærker... > Filer > Eksporter...Mine bogmærkerMin profilMin Overvågningsliste NavnNetscape: Bogmærker > Arranger bogmærker... > Værktøjer > Eksporter...Nyt kodeordNyt kodeord er blevet genereret og sendt til %sNæsteNejIgen bogmærker tilgængeligSøgning gav igen resultat på den kombination af brugernavn og e-mail adresse.Søgning gav igen resultat på det brugernavn.Ikke tilgængeligIkke fundetSide %d af %dKodeordKodeord og bekræftelse matcher ikke.Kodeordet skal mindst være på 6 karakterer.Personlige detaljerPopulære mærkaterPopularitetSend til %sSend til %s (Pop-up)ForrigePrivatPrivateProfilOffentligtNylig mærkerSeneste bogmærker sendt til %sRegistrereRegistreringen fejlede. Prøv venligst igen.Lignede mærkerFjern fra OvervågningslistenPåkrævetSQL fejlGem ændringerGem XML fillen på din computerSøgSøge i bogmærkerSøge resultatVælg den ønskede standart privatindstilling for dine importerede bogmærkerDel med OvervågningslistenTilmeld dig her for at oprette en gratis %s konto. Alle forspurgte informationerne neden for er påkrævet.Sortere efter:Gem, del og mærk dine favorit linksMærkaterDetaljerne du har indtastet er forkerte. Prøv venligst igen.Den forespurgte adresse kunne ikke afviklesDen forespurgte adresse kunne ikke findes på denne serverDer opstod en fejl, ved forsøg på at gemme dit bogmærke. Prøv venligst igen eller kontakt AdministratorDer opstod en fejl under genereringen af dit nye kodeord. Prøv venligst igen.Brugernavnet eksistere allerede, vælg venligst et andet.TitelFFor at bevare dine bogmærker sikrere, bør du skifte dette kodeord i din profil næste gang du logger ind.Bruger tilføjet til din overvågningsliste Bruger fjernet fra din overvågningslisteBruger med brugernavn %s kunne ikke findesBrugernavnBrugernavn var ikke specificeredeOvervågede afOvervågerOvervågningslisteXLM fejl: %s i line %dJaDu skal indtaste et brugernavn, kodeord og e-mail adresse.Du har ikke tilladelse til at slette dette bogmærkeDu har ikke tilladelse til at redigere dette bogmærkeDu har allerede tilføjet dette bogmærkeDu er nu logget udDu er nu succesfuldt registeret. God fornøjelse!Du skal være logget ind før du kan tilføje bogmærkerDu skal indtaste din E-mail adresse.Du skal indtaste dit brugernavnDit bogmærke skal have både en titel og en adresseDit nye kodeord er:alle bogmærkernebogmærkebogmærkerafmessage_die() blev kaldt flere gangemine bogmærkerMin Overvågningslistedenne brugers bogmærkersemanticscuttle-0.98.5+dfsg/data/locales/dk_DK/LC_MESSAGES/messages.po000066400000000000000000001331341227405131600252140ustar00rootroot00000000000000# Scuttle dk-DK Translation # Copyright (C) 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # Nicki Brøchner # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-04-16 22:04-0800\n" "Last-Translator: Marcus Campbell \n" "Language-Team: dk-DK \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Danish\n" "X-Poedit-Country: DENMARK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() blev kaldt flere gange" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "SQL fejl" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Line" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Filer" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Information" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Kritisk information" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "En fejl opstod" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "General fejl" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "En kritisk fejl opstod" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Kritisk fejl" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "DEBUG MODE" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Gem alle dine favorit links et sted, tilgængelig fra hvor " "som helst" #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Del dine bogmærker med alle, med vennerne på din overvågningsliste eller " "behold dem private." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Marker dine bogmærker med så mange mærkater som du ønsker, " "i stedet for at kæmpe med mapper." #: data/templates/default/about.tpl.php:9 #, fuzzy msgid "Register now" msgstr "Registrere" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Nørd Ting" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s understøtter de fleste del.icio.us API. Næsten alle de værktøjer udviklet til det " "system kan modificeres til at fungere med %1$s i stedet for. Hvis du finder " "et værktøj som ikke tillader at du fortager ændringer i API adresse, kunne " "du jo spørge udviklerne. Man ved aldrig det kunne jo være de ville." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Brugernavn" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "bogmærke" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Er du sikker?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Slet" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Instruktioner" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Titel" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Beskrivelse" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bogmærkelet" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Træk en af de følgende bogmærkeletter til din browsers bogmærker, og tryk på " "den hver gang du ønsker at tilføje den side du er på til %s" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Træk en af de følgende bogmærkeletter til din browsers bogmærker, og tryk på " "den hver gang du ønsker at tilføje den side du er på til %s" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Send til %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Send til %s (Pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Sortere efter:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Dato" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "Første" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Forrige" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Næste" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Sidste" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Side %d af %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Mærkater" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Redigere" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "af" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr "og %s1 andre%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " og %2$s%1$s andre%3$s" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Importere bogmærker fra bogmærke fil" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Kopi" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "Du har ikke tilladelse til at redigere dette bogmærke" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Igen bogmærker tilgængelig" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Om programmet" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "bogmærke" msgstr[1] "bogmærker" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Populære mærkater" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Populære mærkater" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Adresse" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Påkrævet" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Private" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Mærkater" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Komma adskillelse" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Privat" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Offentligt" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Del med Overvågningslisten" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Private" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Slet bogmærker" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importere" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Importere bogmærker fra bogmærke fil" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox og Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importere bogmærker fra del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Navn" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "E-mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Slet" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Konto oplysninger" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Brugernavn" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Nyt kodeord" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "bekræft kodeord" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Private" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Generere kodeord" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Personlige detaljer" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Hjemmeside" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Gem ændringer" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Aktion" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "mine bogmærker" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Ikke fundet" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "Den forespurgte adresse kunne ikke findes på denne server" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "General server fejl" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "Den forespurgte adresse kunne ikke afvikles" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "Del med Overvågningslisten" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instruktioner" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Log ind på del.icio.us' eksport " "side" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Gem XML fillen på din " "computer" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Tryk Gennemse... for at finde denne fil på din computer. " "Filstørrelsen må maksimum være på 1MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "" "Vælg den ønskede standart privatindstilling for dine importerede bogmærker" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Tryk Import for at starte med at importere dine bogmærker; dette kan tage et " "par minutter." #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Eksportere dine bogmærker fra din browser til en fil" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: Filer > Importer og eksporter... > Eksporter " "foretrukne emner" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Bogmærker > Arranger bogmærker... > Filer > " "Eksporter..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Bogmærker > Arranger bogmærker... > Værktøjer > " "Eksporter..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Tryk Gennemse... for at finde den gemte bogmærke fil på din " "computer. Filstørrelsen må maksimum være på 1MB" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Kodeord" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Søg ikke efter mit kodeord i 2 uger" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Log ind" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Glemt dit kodeord?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Hvis du har glemte dit kodeord, kan %s generere et nyt et. Skriv " "brugernavnet og e-mail adressen på din konto i formularen nedenfor og vi vil " "sende dit nye kodeord til dig via e-mail." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Generere kodeord" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Medlem siden" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Overvåger" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Overvågede af" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Bogmærker" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "mine bogmærker" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Tilmeld dig her for at oprette en gratis %s konto. Alle forspurgte " "informationerne neden for er påkrævet." #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Registrere" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "Søg" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "Line" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "denne brugers bogmærker" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "mine bogmærker" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "Min Overvågningsliste" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "alle bogmærkerne" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Søg" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "Lignede mærker" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "Slet" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "Nylig mærker" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "Populære mærkater" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Lignede mærker" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Nylig mærker" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Lignede mærker" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "Søg" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "Igen bogmærker fundet" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Lignede mærker" msgstr[1] "Lignede mærker" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "Slet" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "Beskrivelse" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "bogmærke" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Fjern fra Overvågningslisten" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Fjern fra Overvågningslisten" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Tilføj til Overvågningslisten" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "Redigere" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Ja" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Nej" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "Brugernavn" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alfabet" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Popularitet" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Hjemmeside" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Overvågningsliste" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profil" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Tilføj et bogmærke" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Log ud" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "Profil" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Du har ikke tilladelse til at slette dette bogmærke" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Kunne ikke slette bogmærket" #: www/alltags.php:50 msgid "All Tags" msgstr "Alle mærker" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "Bruger med brugernavn %s kunne ikke findes" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "Kunne ikke slette bogmærket" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Dit bogmærke skal have både en titel og en adresse" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Bogmærke gemt" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Der opstod en fejl, ved forsøg på at gemme dit bogmærke. Prøv venligst igen " "eller kontakt Administrator" #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Tilføj bogmærke" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Du skal være logget ind før du kan tilføje bogmærker" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Mine bogmærker" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Rediger bogmærker" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Bogmærke med id %s kunne ikke findes" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Du har ikke tilladelse til at redigere dette bogmærke" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Der opstod en fejl, ved forsøg på at gemme dit bogmærke." #: www/history.php:61 msgid "History" msgstr "Historie" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "Historie for %s" #: www/history.php:84 msgid "Address was not found" msgstr "Adressen kunne ikke findes" #: www/import.php:47 msgid "Could not open XML input" msgstr "Kunne ikke åbne XML input" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XLM fejl: %s i line %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Importere bogmærker fra del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Du har allerede tilføjet dette bogmærke" #: www/import.php:104 msgid "Bookmark imported." msgstr "Bogmærke importeret" #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Du har allerede tilføjet dette bogmærke" #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "Igen bogmærker fundet" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Bogmærke importeret" #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Importere bogmærker fra browser" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Du er nu logget ud" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Seneste bogmærker" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Seneste bogmærker" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Gem, del og mærk dine favorit links" #: www/index.php:97 #, fuzzy msgid "All Bookmarks" msgstr "alle bogmærkerne" #: www/jsScuttle.php:71 msgid "Available" msgstr "Tilgængelig" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Ikke tilgængelig" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "Detaljerne du har indtastet er forkerte. Prøv venligst igen." #: www/password.php:36 msgid "You must enter your username." msgstr "Du skal indtaste dit brugernavn" #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "Du skal indtaste din E-mail adresse." #: www/password.php:48 msgid "No matches found for that username." msgstr "Søgning gav igen resultat på det brugernavn." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Søgning gav igen resultat på den kombination af brugernavn og e-mail adresse." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Der opstod en fejl under genereringen af dit nye kodeord. Prøv venligst igen." #: www/password.php:63 msgid "Your new password is:" msgstr "Dit nye kodeord er:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "FFor at bevare dine bogmærker sikrere, bør du skifte dette kodeord i din " "profil næste gang du logger ind." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%s Konto oplysninger" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Nyt kodeord er blevet genereret og sendt til %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Glemt kodeord" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Brugernavn var ikke specificerede" #: www/profile.php:70 msgid "My Profile" msgstr "Min profil" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Kodeord og bekræftelse matcher ikke." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Kodeordet skal mindst være på 6 karakterer." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "E-mail adressen er ikke gyldig." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "En fejl opstod ved forsøg på at gemme dine ændringer." #: www/profile.php:129 msgid "Changes saved." msgstr "Ændringer gemt." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "Du skal indtaste et brugernavn, kodeord og e-mail adresse." #: www/register.php:56 #, fuzzy msgid "This username has been reserved, please make another choice." msgstr "Brugernavnet eksistere allerede, vælg venligst et andet." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Brugernavnet eksistere allerede, vælg venligst et andet." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "Brugernavnet eksistere allerede, vælg venligst et andet." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "E-mail addressen er ikke gyldig. Prøv venligst igen." #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "E-mail addressen er ikke gyldig. Prøv venligst igen." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Du er nu succesfuldt registeret. God fornøjelse!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Registreringen fejlede. Prøv venligst igen." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Seneste bogmærker sendt til %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Søge i bogmærker" #: www/search.php:89 msgid "Search Results" msgstr "Søge resultat" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "Kunne ikke slette bogmærket" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "Kunne ikke slette bogmærket" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "Kunne ikke slette bogmærket" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "Kunne ikke slette bogmærket" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "Kunne ikke slette bogmærket" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "Brugernavn" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Bruger fjernet fra din overvågningsliste" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Bruger tilføjet til din overvågningsliste " #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Min Overvågningsliste " #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "User with username %s not was not found" #~ msgstr "Bruger med brugernavn %s kunne ikke findes" #~ msgid "Recent Bookmarks" #~ msgstr "Seneste bogmærker" #~ msgid "for" #~ msgstr "for" #~ msgid "%s Bookmarks" #~ msgstr "%s Bogmærker" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Register nu for at starte " #~ "med at bruge %s!" #~ msgid "" #~ "%s is based on an " #~ "open-source project licensed under the GNU " #~ "General Public License. This means you can host it on your own web " #~ "server for free, whether it is on the Internet, a private network or just " #~ "your own computer." #~ msgstr "" #~ "%s er baseret på et " #~ "åbent-kode projekt licenseret under GNU " #~ "General Public License. Dette betyder at du kan hoste systemet på din " #~ "egen server gratis, lige meget om det er på Internet, et privat netværk " #~ "eller bare på din egen computer." #~ msgid "URL" #~ msgstr "URL" #~ msgid "E-mail" #~ msgstr "E-mail" semanticscuttle-0.98.5+dfsg/data/locales/en_GB/000077500000000000000000000000001227405131600212515ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/en_GB/LC_MESSAGES/000077500000000000000000000000001227405131600230365ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/en_GB/LC_MESSAGES/messages.mo000066400000000000000000000577621227405131600252230ustar00rootroot00000000000000,|  !:OK+xT/knW=g ( 1>M ^$k   ,/Gw  #%  )3'Em4 #t f N x=!!"!Q!":"]"m"~"%""""""G#O#^# s#~#### # ## #%# $$$.$$ $ $%-%I% ^%,h%'%*%% %&&10&b&|&&&&0&+'$?'d'w'|''' ' '''''((.(3(<(("(!)?)#P)!t) ) )/)L) ,*:* ?*M* `*l* q*}** * * *Q* + + +'+K,+x+ |+ ++%+++++j+#e, , ,W,B,F<-"-- - - --'-,.E.X. i.v. . ..... .. // /$/+/ A/M/k/ t/&/ //!//000 (0 20\?0000 00 00 1>1Y1p1Y11)12 '212 P2\2t22 2222=2( 3.43Gc3J3Q3WH4H4,4=59T5<5f52676h=66+6"67 7 )7#J7n7w777 77 7777@8+A8)m8U838)!9K9(c939H9 :.':V: l:z: :: : :: ::::( ; 2; ?;L;T;j;.n;;v==O=+=>x0>?/??@n!@W@g@PAVAfA nA{A AAA A$AAAAB B&B /B9BBB`B,vB/BB B BB# C1CDC!SC uC CC'CC4C D0D7D#FDtjDfDNFExEF"FQ@F"FFFF%FGG!G>GNGG_GGG GGGGG H H"H 2H%>HdHHH. I:I ?I MInIII I,I'I*J@J FJgJwJ1JJJJK!K0:K+kK$KKKKKK L LL4LFLVLoLwLLLLKM"RM!uMM#M!M M M/NL7N NN NN NN NNN N N NQO ZO gO rOOKOO O OO%P*P/P2PIPjRP#P P PWPDQQKQ"QR R *R 8RFR'OR,wRRR RR R RSS$S,S 4SAS _SmS uSSS SSS S&S TT!*TLT`TgT~T T T\TTUU "U,U HUVUhU>yUUUYU>V)GVqV VV VVVV VWW%W=+W(iW.WGWJ XQTXWXHX,GY=tY9Y<Yf)ZZZhZ[+["@[c[j[ [#[[[[[ \\ \$\=\Y\@]\+\)\M\3B])v]](]3]H^^^.|^^ ^^ ^^ _ __ !_,_D_G_(^_ _ ____._AsH[FQylTR Y :D+kdjW{16 &\b>&`a/e'g),+UtZ%'@#9<!L$4zuf~VC;*M ic?"=_ n$ SmX35#)v7 K  ]*P(GoEp.^,q}xr -Ih "J !0N|%2w(OB8 and %2$s%1$s others%3$s and %s1 other%s at least 5 characters, alphanumeric (no spaces, no dots or other special ones) to send you your password if you forget it to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s and all his bookmarks and tags were deleted.%s: Recent bookmarks(Come back to previous page.)Share your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd NoteAdd Tag LinkAdd a BookmarkAdd a contact...Add new linkAdd search plugin into your browser:Add to WatchlistAddressAddress was not foundAdminAll BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBad indentationBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksBookmarks found: Bookmarks from other users for this tagBookmarks imported: Bookmarks on this page are managed by an admin user.CSV file (for spreadsheet tools)CancelChanges saved.Check all URLs (May take some time)Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteClick one of the following bookmarklets to add a button you can click whenever you want to add the page you are on to %sClose contactsClose contacts are mutual contactsCollaborative description: these fields can be viewed and modified by every usersCome back to the top of this page.Comma-separatedConfirm PasswordCopyCopy this bookmark to YOUR bookmarks.Could not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Create your structure into a simple text file and following this model:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link Between TagsDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Link Between TagsEdit Tag Common DescriptionEdit Tag DescriptionEdit linkEdit the common description of this bookmarkEdit the common description of this tagEdit your personal description of this tagEmailError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFeatured Menu TagsFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomeHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport StructureImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesInvalid TokenLastLast SearchesLast modification:Last updateLineLinked TagsLog InLog OutManage usersMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew UsersNew links between tags: New password generated and sent to %sNextNoNo bookmarks availableNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: france=frenchcountryNote: use ">" to include one tag in another. e.g.: europe>france>parisNumber of bookmarks for this queryOldOnly your bookmarks for this tagOther actionsPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPopular TagsPopular Tags From All UsersPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivatePrivate NotePrivate Note on this bookmarkProblem with ProfilePropulsed by PublicPublic/Shared/PrivateRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRemove the tag from the selectionRemove this contactRenameRename TagRename TagsRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSearch...See all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksShared with Watch ListShared with WatchlistSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksSuggested anchors: Synonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'Tags:The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThe secret tag "system:imported" allows you to find imported bookmarks.The secret tag "system:unfiled" allows you to find bookmarks without tags.Then import the file. The tags and their relations will be added to your profile.There was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This bookmark is certified by an admin user.This menu is composed of keywords (tags) organized by admins.This username already exists, please make another choice.This username has been reserved, please make another choice.This username is not valid (too short, too long, forbidden characters...), please make another choice.TipsTitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.Top of the pageType a username to add it to your contacts.Unsatisfied? You can also try our UpdateUser added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersUsers managementWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou can use anchors to delimite attributes. for example: [publisher]blah[/publisher] You have already submitted some of these bookmarks.You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbycreated inedit common descriptioninis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyouyou can freely host it on your own web server.Project-Id-Version: Semantic Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2009-06-01 02:29+0100 Last-Translator: Jan Seifert Language-Team: Ogee Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-Language: English X-Poedit-Country: UNITED KINGDOM X-Poedit-SourceCharset: utf-8 and %2$s%1$s others%3$s and %s1 other%s at least 5 characters, alphanumeric (no spaces, no dots or other special ones) to send you your password if you forget it to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s and all his bookmarks and tags were deleted.%s: Recent bookmarks(Go back to previous page.)Share your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd NoteAdd Tag LinkAdd a BookmarkAdd a contact...Add new linkAdd search plugin into your browser:Add to WatchlistAddressAddress was not foundAdminAll BookmarksAll TagsAll usersAlphabetA critical error has occurredAn error has occurredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBad indentationBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s was not foundBookmarkletBookmarksBookmarks found: Bookmarks from other users for this tagBookmarks imported: Bookmarks on this page are managed by an admin user.CSV file (for spreadsheet tools)CancelChanges saved.Check all URLs (may take some time)Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteClick one of the following bookmarklets to add a button you can click whenever you want to add the page you are on to %sClose contactsClose contacts are mutual contactsCollaborative description: these fields can be viewed and modified by every usersCome back to the top of this page.Comma-separatedConfirm PasswordCopyCopy this bookmark to YOUR bookmarks.Could not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Create your structure into a simple text file and following this model:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link between TagsDelete tagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark common descriptionEdit Link between TagsEdit Tag common descriptionEdit tag descriptionEdit linkEdit the common description of this bookmarkEdit the common description of this tagEdit your personal description of this tagEmailError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFeatured Menu TagsFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomeHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from browser fileImport bookmarks from del.icio.usImport StructureImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesInvalid tokenLastLast searchesLast modification:Last updateLineLinked TagsLog InLog OutManage usersMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew usersNew links between tags: New password generated and sent to %sNextNoNo bookmarks availableNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not availableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: britain=united kingdomNote: use ">" to include one tag in another. e.g.: europe>britain>edinburghNumber of bookmarks for this queryOldOnly your bookmarks for this tagOther actionsPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPopular TagsPopular tags from all usersPopularityPost to %sPost to %s (pop-up)PreviousPrivacyPrivatePrivate NotePrivate note on this bookmarkProblem with ProfilePropulsed by PublicPublic/Shared/PrivateRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRemove the tag from the selectionRemove this contactRenameRename tagRename tagsRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSearch...See all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksShared with WatchlistShared with WatchlistSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksSuggested anchors: Synonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'Tags:The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThe secret tag "system:imported" allows you to find imported bookmarks.The secret tag "system:unfiled" allows you to find bookmarks without tags.Then import the file. The tags and their relations will be added to your profile.There was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This bookmark is certified by an admin user.This menu is composed of keywords (tags) organized by admins.This username already exists, please make another choice.This username has been reserved, please make another choice.This username is not valid (too short, too long, forbidden characters...), please make another choice.TipsTitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.Top of the pageType a username to add it to your contacts.Unsatisfied? You can also try our UpdateUser added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersUser managementWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou can use anchors to delimite attributes, e.g. [publisher]blah[/publisher] You have already submitted some of these bookmarks.You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbycreated inedit common descriptioninis licensed under the message_die() was called multiple times.my bookmarksmy watchlistProfilethis user's bookmarksyouyou can freely host it on your own web server.semanticscuttle-0.98.5+dfsg/data/locales/en_GB/LC_MESSAGES/messages.po000066400000000000000000001337151227405131600252170ustar00rootroot00000000000000# SemanticScuttle en-GB Translation # Copyright (C) 2005 - 2009 SemanticScuttle project # This file is distributed under the same license as the SemanticScuttle package. # Ogee # msgid "" msgstr "" "Project-Id-Version: Semantic Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2009-06-01 02:29+0100\n" "Last-Translator: Jan Seifert \n" "Language-Team: Ogee \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" "X-Poedit-Language: English\n" "X-Poedit-Country: UNITED KINGDOM\n" "X-Poedit-SourceCharset: utf-8\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() was called multiple times." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "SQL Error" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Line" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "File" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Information" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Critical Information" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "An error has occurred" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "General Error" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "A critical error has occurred" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Critical Error" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "DEBUG MODE" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Store all your favourite links in one place, accessible " "from anywhere." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "Register now" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr " to start using %s!" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Geek Stuff" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "is licensed under the " #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "you can freely host it on your own web server." #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "Tips" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "Add search plugin into your browser:" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" "The secret tag \"system:imported\" allows you to find imported bookmarks." #: data/templates/default/admin.tpl.php:5 msgid "Users management" msgstr "User management" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "Public/Shared/Private" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "bookmark(s)" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Are you sure?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Delete" #: data/templates/default/admin.tpl.php:27 msgid "Other actions" msgstr "Other actions" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "Check all URLs (may take some time)" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" "Collaborative description: these fields can be viewed and modified by every " "users" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Title" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Description" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "Last modification:" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "Update" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "Cancel" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Post to %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Post to %s (pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "Bookmarks on this page are managed by an admin user." #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "Edit the common description of this tag" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "Edit the common description of this bookmark" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "Edit your personal description of this tag" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Sort by:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Date" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "Bookmarks from other users for this tag" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "Only your bookmarks for this tag" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "First" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Previous" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Next" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Last" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Page %d of %d" #: data/templates/default/bookmarks.tpl.php:295 msgid "Tags:" msgstr "Tags:" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Edit" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "Last update" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "by" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "you" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr " and %s1 other%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " and %2$s%1$s others%3$s" #: data/templates/default/bookmarks.tpl.php:350 msgid "Copy this bookmark to YOUR bookmarks." msgstr "Copy this bookmark to YOUR bookmarks." #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Copy" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "This bookmark is certified by an admin user." #: data/templates/default/bookmarks.tpl.php:430 msgid "Private Note on this bookmark" msgstr "Private note on this bookmark" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "Come back to the top of this page." #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "Top of the page" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "No bookmarks available" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "About" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "Propulsed by " #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "bookmark" msgstr[1] "bookmarks" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Popular Tags" #: data/templates/default/dynamictags.inc.php:108 msgid "Popular Tags From All Users" msgstr "Popular tags from all users" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Address" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Required" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "Add Note" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" "You can use anchors to delimite attributes, e.g. [publisher]blah[/publisher] " #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "Suggested anchors: " #: data/templates/default/editbookmark.tpl.php:76 msgid "Private Note" msgstr "Private Note" #: data/templates/default/editbookmark.tpl.php:78 #, fuzzy msgid "Just visible by you and your contacts." msgstr "Just visible by you and your friends." #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Tags" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Comma-separated" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" "Note: use \">\" to include one tag in another. e.g.: europe>britain>edinburgh" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "Note: use \"=\" to make synonym two tags. e.g.: britain=united kingdom" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Privacy" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Public" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Shared with Watchlist" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Private" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Delete Bookmark" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "edit common description" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Import" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Import bookmarks from bookmark file" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox and Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Import bookmarks from del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Name" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 msgid "Email" msgstr "Email" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Delete" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Account Details" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Username" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "New Password" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Confirm Password" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Private Note" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Generate Password" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Personal Details" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Homepage" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Save Changes" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Actions" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "Export bookmarks" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "HTML file (for browsers)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "XML file (like del.icio.us)" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "CSV file (for spreadsheet tools)" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Not Found" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "The requested URL was not found on this server" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "General server error" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "The requested URL could not be processed" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "Shared with Watchlist" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instructions" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Log in to the export page at " "del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Save the resulting XML " "file to your computer" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "Select the default privacy setting for your imported bookmarks" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Click Import to start importing the bookmarks; it may take a " "minute" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Export your bookmarks from your browser to a file" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: File > Import and Export... > Export Favorites" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" "Create your structure into a simple text file and following this model:" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" "Then import the file. The tags and their relations will be added to your " "profile." #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Password" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Don't ask for my password for 2 weeks" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Log In" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Forgotten your password?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Generate Password" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Member Since" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Watching" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Watched By" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Bookmarks" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "Go to bookmarks" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Sign up here to create a free %s account. All the information requested " "below is required" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr " to send you your password if you forget it" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "Antispam question" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Register" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "Search..." #: data/templates/default/search.menu.php:28 msgid "in" msgstr "in" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "this user's bookmarks" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "my bookmarks" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "my watchlist" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "all bookmarks" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Search" #: data/templates/default/sidebar.block.linked.php:23 msgid "Linked Tags" msgstr "Linked Tags" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "Add new link" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "Delete link" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "Tags included into the tag '%s'" #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "Menu Tags" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "See all your tags" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "all your tags" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "See all tags from this user" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "all tags from this user" #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "See popular tags" #: data/templates/default/sidebar.block.menu2.php:21 msgid "Featured Menu Tags" msgstr "Featured Menu Tags" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "This menu is composed of keywords (tags) organized by admins." #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Recent Tags" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Related Tags" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "Last searches" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "Number of bookmarks for this query" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Rename tag" msgstr[1] "Rename tags" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "Delete tag" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "Edit tag description" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "Edit Tag common description" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "Create a link to another tag" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "New users" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "bookmarks" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "See all users" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "All users" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "Close contacts are mutual contacts" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "Close contacts" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "Add a contact..." #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "Type a username to add it to your contacts." #: data/templates/default/sidebar.block.watchlist.php:44 msgid "Remove this contact" msgstr "Remove this contact" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Remove from Watchlist" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Add to Watchlist" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "Edit link" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "Synonyms:" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "Create new link:" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "Create" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "Existing links:" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "No links" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Yes" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "No" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "Delete the link" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "Create new link" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "Old" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "New" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "Rename" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alphabet" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Popularity" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 msgid "Home" msgstr "Home" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Watchlist" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profile" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Add a Bookmark" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Log Out" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "Admin" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "Profile" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "created in" #: www/admin.php:32 msgid "Manage users" msgstr "Manage users" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "%s and all his bookmarks and tags were deleted." #: www/admin.php:76 msgid "Problem with " msgstr "Problem with " #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "You are not allowed to delete this bookmark" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Failed to delete bookmark" #: www/alltags.php:50 msgid "All Tags" msgstr "All Tags" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "User with username %s was not found" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "Permission denied." #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "Bookmark common description updated" #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "Failed to update the bookmark common description" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "Edit Bookmark common description" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "Remove the tag from the selection" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Your bookmark must have a title and an address" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Bookmark saved" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "(Go back to previous page.)" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "There was an error saving your bookmark. Please try again or contact the " "administrator." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Add Bookmark" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "You must be logged in before you can add bookmarks." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "My Bookmarks" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Edit Bookmark" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Bookmark with id %s was not found" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "You are not allowed to edit this bookmark" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Error while saving your bookmark" #: www/history.php:61 msgid "History" msgstr "History" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "History for %s" #: www/history.php:84 msgid "Address was not found" msgstr "Address was not found" #: www/import.php:47 msgid "Could not open XML input" msgstr "Could not open XML input" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XML error: %s at line %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Import bookmarks from del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "You have already submitted this bookmark." #: www/import.php:104 msgid "Bookmark imported." msgstr "Bookmark imported." #: www/importNetscape.php:95 msgid "You have already submitted some of these bookmarks." msgstr "You have already submitted some of these bookmarks." #: www/importNetscape.php:115 msgid "Bookmarks found: " msgstr "Bookmarks found: " #: www/importNetscape.php:116 msgid "Bookmarks imported: " msgstr "Bookmarks imported: " #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Import Bookmarks from browser file" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "Bad indentation" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "New links between tags: " #: www/importStructure.php:72 msgid "Import Structure" msgstr "Import Structure" #: www/index.php:38 msgid "You have now logged out" msgstr "You have now logged out" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Recent bookmarks" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Recent bookmarks" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Store, share and tag your favourite links" #: www/index.php:97 msgid "All Bookmarks" msgstr "All Bookmarks" #: www/jsScuttle.php:71 msgid "Available" msgstr "Available" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Not available" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "The details you have entered are incorrect. Please try again." #: www/password.php:36 msgid "You must enter your username." msgstr "You must enter your username." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "You must enter your e-mail address." #: www/password.php:48 msgid "No matches found for that username." msgstr "No matches found for that username." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "No matches found for that combination of username and e-mail address." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "There was an error while generating your new password. Please try again." #: www/password.php:63 msgid "Your new password is:" msgstr "Your new password is:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%s Account Information" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "New password generated and sent to %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Forgotten Password" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Username was not specified" #: www/profile.php:70 msgid "My Profile" msgstr "My Profile" #: www/profile.php:110 msgid "Invalid Token" msgstr "Invalid token" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Password and confirmation do not match." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Password must be at least 6 characters long." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "E-mail address is not valid." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "An error occurred while saving your changes." #: www/profile.php:129 msgid "Changes saved." msgstr "Changes saved." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 #, fuzzy msgid "Failed to delete SSL client certificate." msgstr "Failed to delete the tag" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "You must enter a username, password and e-mail address." #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "This username has been reserved, please make another choice." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "This username already exists, please make another choice." #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "E-mail address is not valid. Please try again." #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "Antispam answer is not valid. Please try again." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "You have successfully registered. Enjoy!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Registration failed. Please try again." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Recent bookmarks posted to %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Search Bookmarks" #: www/search.php:89 msgid "Search Results" msgstr "Search Results" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "Unsatisfied? You can also try our " #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "Tag link created" #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "Failed to create the link" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "Add Tag Link" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "Tag link deleted" #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "Failed to delete the link" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "Delete Link between Tags" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "Edit Link between Tags" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "Tag common description updated" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "Failed to update the tag common description" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "Tag deleted" #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "Failed to delete the tag" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "Tag description updated" #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "Failed to update the tag description" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "Tag renamed" #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "Failed to rename the tag" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "Users" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "User removed from your watchlist" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "User added to your watchlist" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "My Watchlist" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 #, fuzzy msgid "Come back to " msgstr "(Go back to previous page.)" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" semanticscuttle-0.98.5+dfsg/data/locales/es_ES/000077500000000000000000000000001227405131600212755ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/es_ES/LC_MESSAGES/000077500000000000000000000000001227405131600230625ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/es_ES/LC_MESSAGES/messages.mo000066400000000000000000000305751227405131600252400ustar00rootroot00000000000000t x B nW W g ,$ Q _i|% tfAN %4 ITY` p%|%,I N \1}  #2;"!#>!b  /L$+ 3Q@ K %#(+#B f p~',  "*2: AM&V }  \$5>DY)'=,(j.W9ThZ   %0I+M)y)(3B.` ( TW u \8!t! ""("7"?"U"f"""""*"" ##'#6# V#a#t#r$as$ $$$ %%/%?%E% L%Z%m%% &&#& *&,8&.e&&&&&& && ' ''/'' '(&(#E(i( |(-(S( ) )')/) 5)SC) ))O) )1* 8*B*E*4`* ***1***+-+ B+O+e+n+w+ ++ + +/+++ , ,%,h5,,,,.,,^-n-1s- -E-)-'._G.2. .].F/e/// /"///// %0F0.d0I00<0:1@1,D1 q11M|Z."HK98z*5&yO^+\rxV'!  )2QDGmI ,B=3J#FkhX@0](oR<?TE :/U~uec _pf;6v7dNsA>[%bq-Pn{4$ CiWLw`lYStajg}%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAddress was not foundAll TagsAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Are you sure?AvailableBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedCopyCould not open XML inputCritical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.EditEdit BookmarkError while saving your bookmarkExport your bookmarks from your browser to a fileFailed to delete bookmarkFileFirstForgotten your password?Geek StuffGeneral ErrorGeneral server errorHistoryHistory for %sHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLastLineLog InLog OutMember SinceMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...New PasswordNew password generated and sent to %sNextNoNo bookmarks availableNo matches found for that username.Not FoundPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Personal DetailsPopular TagsPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRecent TagsRegisterRegistration failed. Please try again.Related TagsRemove from WatchlistRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSelect the default privacy setting for your imported bookmarksShared with Watch ListSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksTagsThe details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.This username already exists, please make another choice.TitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.User added to your watchlistUser removed from your watchlistUsernameUsername was not specifiedWatched ByXML error: %s at line %dYesYou are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your username.Your bookmark must have a title and an addressall bookmarksbymessage_die() was called multiple times.my bookmarksProject-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-03-26 14:28-0800 Last-Translator: Marcus Campbell Language-Team: es-ES Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %1$s esta basado en la API de del.icio.us API. La mayoría de las herramientas utilizadas para construir este sistema se pueden modificar para trabajar con %1$s. Si usted encuentra una herramienta en la que no puede modificar la direccion de la API, pregunte al creador si puede cambiar esta configuración. Nunca se sabe, puede que ya se haya cambiado esa configuración.%s: Enlaces recientesComparte tus enlaces, solo con los amigos de la lista de consultados o manténgalos privados..Guarde todos sus enlaces favoritos en un lugar y acceda desde donde quiera.Etiquete sus enlaces con tantas etiquetas como usted desea, en lugar de pellearse con las carpetas.Acerca deDetalles de usuarioAgregar EnlaceAgregarAgregar a ConsultadosDirecciónLa dirección no existeTodasAlfabéticoHa habido un error criticoHa habido un errorHa habido un error al guardar los cambios.Esta usted seguro?DisponibleEnlaces importados.Enlace salvadoEl enlace con id %s no funcionaMarcadoresCambios guardados.Pulse Examinar... para buscar los enlaces guardados en un archivo de us ordenador. El tamaño maximo no puede ser superior a 1MBPulse Examinar... para buscar el archivo en su ordenador. El tamaño maximo no puede ser superior a 1MBPulse Importar para comenzar a importar los enlaces, esto puede tartar algunos minutosCon comasCopiarNo se pude abrir la entrada XMLError CriticoInformación CriticaMODO DEPURACIONFechaBorrarBorrar enlaceDescripciónRecordar mi clave 2 semanasArrastre los enlaces a los marcadores de su navegador y pulselos siempre que usted desee agregar la pagina que esta viendo a %sCorreoCorreo incorrecto.EditarEditar enlaceSe ha producido un error al salvar su enlaceExpote sus enlaces a su navegador a un archivoError al borrar los enlacesArchivoPrimeraOlvido su clave?AdelanteError GeneralError general del servidorHistorialHistorial de %sPágina webSi olvido su clave, %s puede crearle una nueva. Introduzca su direccion de correo electrónico de su perfil en el formulario siguiente y se le enviara una nueva claveImportarImportar enlaces de un NavegadorImportar enlaces de del.icio.usImprotar enlaces de un archivoImportar los enlaces de del.icio.usInformaciónInstruccionesInternet Explorer, Mozilla Firefox y NetscapeInternet Explorer: Archivo > Importar y Exportar... > Exportar FavoritosÚltimaLíneaAccederSalirMiembro desdeMozilla Firefox: Enlaces > Manejar Enlaces... > Archivo > Exportar...Mis EnlacesNombreNetscape: Enlaces > Manejar Enlaces... > Utilidades > Exportar...Nueva claveSe ha creado una nueva clave y se ha enviado a %sSiguienteNoNo hay enlaces disponiblesNo se encuentra ningún usuario con ese nombreNo funcionaPágina %d de %dClaveLa clave y su confirmación no es correcta.La clave debe tener al menos 6 acracteres.Datos del usuarioMás visitadasAgregar a %sAgregar a %s (Pop-up)AnteriorPermisosPrivadoPérfilPúblicoRecientesRegistrarseRegistro erroneo. Por favor intentelo de nuevo.Etiquetas mencionadasBorrar de ConsultadosRequeridoError de SQLGuardar CambiosGuardar los resultados en un archivo XML de su ordenadorBuscarBuscar EnlacesBuscar ResultadosElija los permisos para los enlaces importadosCompartido en ConsultadosInserte los datos para crear una cuenta gratis en %s. Es cesaria toda la informacion requeridaPor:Almacene, navege y etiquete sus enlaces favoritosEtiquetasLos datos introducidos son incorrectos. Por favor intentelo de nuevo.La URL solicitada no puede ser encontradaNo se encontró la URL solicitadaHay un error al salvar su enlace. Por favor intentelo de nuevo o contacte con el administrador.Este usuario ya existe, por favor introduzca otro.TítuloPara que sean seguros sus enlaces, debe cambiar la clave de su usuario en el siguiente accesoUsuario agregado a consultadosUsuario borrado de consultadosUsuarioUsuario no introducidoConsultado deErrores: %s en la linea %d del XMLSiNo puede borrar estos enlacesUsted no tiene permisos para editar este enlaceUsted ya ha agregado este enlaceUsted esta ahora desconectadoEl registro ha sido correcto. Puede continuar!Debe introducir su usuario y contraseña para poder agregar enlacesIntroduzca su nombre de usuarioSu enlace debe tener un título y una direccióntodospormessage_die() requerido en varios ocasiones.mis enlacessemanticscuttle-0.98.5+dfsg/data/locales/es_ES/LC_MESSAGES/messages.po000066400000000000000000001333701227405131600252400ustar00rootroot00000000000000# Scuttle es-ES Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # Francisco Portero # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-03-26 14:28-0800\n" "Last-Translator: Marcus Campbell \n" "Language-Team: es-ES \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" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() requerido en varios ocasiones." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "Error de SQL" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Línea" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Archivo" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Información" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Información Critica" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Ha habido un error" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Error General" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Ha habido un error critico" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Error Critico" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "MODO DEPURACION" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Guarde todos sus enlaces favoritos en un lugar y acceda " "desde donde quiera." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Comparte tus enlaces, solo con los amigos de la lista de " "consultados o manténgalos privados.." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Etiquete sus enlaces con tantas etiquetas como usted desea, " "en lugar de pellearse con las carpetas." #: data/templates/default/about.tpl.php:9 #, fuzzy msgid "Register now" msgstr "Registrarse" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Adelante" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s esta basado en la API de del.icio.us API. La mayoría de las " "herramientas utilizadas para construir este sistema se pueden modificar para " "trabajar con %1$s. Si usted encuentra una herramienta en la que no puede " "modificar la direccion de la API, pregunte al creador si puede cambiar esta " "configuración. Nunca se sabe, puede que ya se haya cambiado esa " "configuración." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Usuario" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "enlace" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Esta usted seguro?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Borrar" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Instrucciones" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Título" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Descripción" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Marcadores" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Arrastre los enlaces a los marcadores de su navegador y pulselos siempre que " "usted desee agregar la pagina que esta viendo a %s" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Arrastre los enlaces a los marcadores de su navegador y pulselos siempre que " "usted desee agregar la pagina que esta viendo a %s" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Agregar a %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Agregar a %s (Pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Por:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Fecha" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "Primera" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Anterior" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Siguiente" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Última" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Página %d de %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Etiquetas" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Editar" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "por" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, fuzzy, php-format msgid " and %s1 other%s" msgstr " y %s mas" #: data/templates/default/bookmarks.tpl.php:336 #, fuzzy, php-format msgid " and %2$s%1$s others%3$s" msgstr " y %s mas" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Improtar enlaces de un archivo" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Copiar" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "Usted no tiene permisos para editar este enlace" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "No hay enlaces disponibles" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Acerca de" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 #, fuzzy msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "enlace" msgstr[1] "enlaces" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Más visitadas" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Más visitadas" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Dirección" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Requerido" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Privado" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Etiquetas" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Con comas" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Permisos" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Público" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Compartido en Consultados" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privado" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Borrar enlace" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importar" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Improtar enlaces de un archivo" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox y Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importar los enlaces de del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Nombre" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "Correo" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Borrar" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Detalles de usuario" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Usuario" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Nueva clave" #: data/templates/default/editprofile.tpl.php:22 #, fuzzy msgid "Confirm Password" msgstr "Confirmar la clave" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "Correo" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Privado" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Nueva clave" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Datos del usuario" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Página web" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Guardar Cambios" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 #, fuzzy msgid "Actions" msgstr "Instrucciones" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "mis enlaces" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "No funciona" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "No se encontró la URL solicitada" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Error general del servidor" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "La URL solicitada no puede ser encontrada" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "Compartido en Consultados" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instrucciones" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Registrese para exportar la " "pagina a del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Guardar los resultados en un archivo XML de su ordenador" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Pulse Examinar... para buscar el archivo en su ordenador. El " "tamaño maximo no puede ser superior a 1MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "Elija los permisos para los enlaces importados" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Pulse Importar para comenzar a importar los enlaces, esto puede " "tartar algunos minutos" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Expote sus enlaces a su navegador a un archivo" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: Archivo > Importar y Exportar... > Exportar " "Favoritos" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Enlaces > Manejar Enlaces... > Archivo > " "Exportar..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Enlaces > Manejar Enlaces... > Utilidades > " "Exportar..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Pulse Examinar... para buscar los enlaces guardados en un archivo " "de us ordenador. El tamaño maximo no puede ser superior a 1MB" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Clave" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Recordar mi clave 2 semanas" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Acceder" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Olvido su clave?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Si olvido su clave, %s puede crearle una nueva. Introduzca su direccion de " "correo electrónico de su perfil en el formulario siguiente y se le " "enviara una nueva clave" #: data/templates/default/password.tpl.php:19 #, fuzzy msgid "Generate Password" msgstr "Nueva clave" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Miembro desde" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 #, fuzzy msgid "Watching" msgstr "Consultados" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Consultado de" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 #, fuzzy msgid "Bookmarks" msgstr "Enlaces" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "mis enlaces" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Inserte los datos para crear una cuenta gratis en %s. Es cesaria toda la " "informacion requerida" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Registrarse" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "Buscar" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "Línea" #: data/templates/default/search.menu.php:34 #, fuzzy msgid "this user's bookmarks" msgstr "enlaces de %s" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "mis enlaces" #: data/templates/default/search.menu.php:40 #, fuzzy msgid "my watchlist" msgstr "mis consultados" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "todos" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Buscar" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "Etiquetas mencionadas" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "Borrar" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "Recientes" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "Más visitadas" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Etiquetas mencionadas" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Recientes" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Etiquetas mencionadas" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "Buscar" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "No se han encontrado enlaces" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Etiquetas mencionadas" msgstr[1] "Etiquetas mencionadas" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "Borrar" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "Descripción" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "enlace" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Borrar de Consultados" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Borrar de Consultados" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Agregar a Consultados" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "Editar" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Si" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "No" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "Usuario" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alfabético" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 #, fuzzy msgid "Popularity" msgstr "Mas visitadas" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Página web" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 #, fuzzy msgid "Watchlist" msgstr "Consultados" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Pérfil" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Agregar" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Salir" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "Pérfil" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "No puede borrar estos enlaces" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Error al borrar los enlaces" #: www/alltags.php:50 msgid "All Tags" msgstr "Todas" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, fuzzy, php-format msgid "User with username %s was not found" msgstr "No se encontro el usuario %s" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "Fallo al borrar el enlace" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Su enlace debe tener un título y una dirección" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Enlace salvado" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Hay un error al salvar su enlace. Por favor intentelo de nuevo o contacte " "con el administrador." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Agregar Enlace" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "" "Debe introducir su usuario y contraseña para poder agregar enlaces" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Mis Enlaces" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Editar enlace" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "El enlace con id %s no funciona" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Usted no tiene permisos para editar este enlace" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Se ha producido un error al salvar su enlace" #: www/history.php:61 msgid "History" msgstr "Historial" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "Historial de %s" #: www/history.php:84 msgid "Address was not found" msgstr "La dirección no existe" #: www/import.php:47 msgid "Could not open XML input" msgstr "No se pude abrir la entrada XML" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "Errores: %s en la linea %d del XML" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Importar enlaces de del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Usted ya ha agregado este enlace" #: www/import.php:104 msgid "Bookmark imported." msgstr "Enlaces importados." #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Usted ya ha agregado este enlace" #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "No se han encontrado enlaces" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Enlaces importados." #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Importar enlaces de un Navegador" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Usted esta ahora desconectado" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Enlaces recientes" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Enlaces recientes" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Almacene, navege y etiquete sus enlaces favoritos" #: www/index.php:97 #, fuzzy msgid "All Bookmarks" msgstr "todos" #: www/jsScuttle.php:71 msgid "Available" msgstr "Disponible" #: www/jsScuttle.php:74 #, fuzzy msgid "Not Available" msgstr "No hay enlaces disponibles" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "Los datos introducidos son incorrectos. Por favor intentelo de nuevo." #: www/password.php:36 msgid "You must enter your username." msgstr "Introduzca su nombre de usuario" #: www/password.php:40 #, fuzzy msgid "" "You must enter your e-mail address." msgstr "" "Debe especificar usuario, clave, nombre y correo electrónico." #: www/password.php:48 msgid "No matches found for that username." msgstr "No se encuentra ningún usuario con ese nombre" #: www/password.php:51 #, fuzzy msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Debe especificar usuario, clave, nombre y correolectrónico." #: www/password.php:59 #, fuzzy msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Hay un error al salvar su enlace. Por favor intentelo de nuevo o contacte " "con el administrador." #: www/password.php:63 #, fuzzy msgid "Your new password is:" msgstr "Confirmar la nueva clave" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Para que sean seguros sus enlaces, debe cambiar la clave de su usuario en el " "siguiente acceso" #: www/password.php:66 #, fuzzy, php-format msgid "%s Account Information" msgstr "Información" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Se ha creado una nueva clave y se ha enviado a %s" #: www/password.php:75 #, fuzzy msgid "Forgotten Password" msgstr "Nueva clave" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Usuario no introducido" #: www/profile.php:70 #, fuzzy msgid "My Profile" msgstr "Mi Pérfil" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "La clave y su confirmación no es correcta." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "La clave debe tener al menos 6 acracteres." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Correo incorrecto." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Ha habido un error al guardar los cambios." #: www/profile.php:129 msgid "Changes saved." msgstr "Cambios guardados." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 #, fuzzy msgid "You must enter a username, password and e-mail address." msgstr "" "Debe especificar usuario, clave, nombre y correo electrónico." #: www/register.php:56 #, fuzzy msgid "This username has been reserved, please make another choice." msgstr "Este usuario ya existe, por favor introduzca otro." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Este usuario ya existe, por favor introduzca otro." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "Este usuario ya existe, por favor introduzca otro." #: www/register.php:68 #, fuzzy msgid "E-mail address is not valid. Please try again." msgstr "Correo incorrecto." #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "Correo incorrecto." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "El registro ha sido correcto. Puede continuar!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Registro erroneo. Por favor intentelo de nuevo." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, fuzzy, php-format msgid "Recent bookmarks posted to %s" msgstr "Enlaces recientes agregados a %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Buscar Enlaces" #: www/search.php:89 msgid "Search Results" msgstr "Buscar Resultados" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "Fallo al borrar el enlace" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "Fallo al borrar el enlace" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "Fallo al borrar el enlace" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "Fallo al borrar el enlace" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "Fallo al borrar el enlace" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "Usuario" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Usuario borrado de consultados" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Usuario agregado a consultados" #: www/watchlist.php:104 #, fuzzy msgid "My Watchlist" msgstr "Mis Consultados" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "User with username %s not was not found" #~ msgstr "No se encontro el usuario %s" #~ msgid "Recent Bookmarks" #~ msgstr "Enlaces Recientes" #~ msgid "for" #~ msgstr "por" #~ msgid "%s Bookmarks" #~ msgstr "Enlace de %s" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Registrese ahora para usar " #~ "%s!" #~ msgid "" #~ "%s is based on an " #~ "open-source project licensed under the GNU " #~ "General Public License. This means you can host it on your own web " #~ "server for free, whether it is on the Internet, a private network or just " #~ "your own computer." #~ msgstr "" #~ "%s esta basado en un " #~ "proyecto de codigo abierto licenciado bajo GNU " #~ "General Public License. Esto quiere decir que usted puede instalarlo " #~ "en su propio web server para uso libre, en una red privada o en su propia " #~ "computadora." #~ msgid "URL" #~ msgstr "URL" #~ msgid "E-mail" #~ msgstr "Correo" semanticscuttle-0.98.5+dfsg/data/locales/fr_CA/000077500000000000000000000000001227405131600212515ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/fr_CA/LC_MESSAGES/000077500000000000000000000000001227405131600230365ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/fr_CA/LC_MESSAGES/messages.mo000066400000000000000000000525601227405131600252120ustar00rootroot00000000000000Qx~nWgq   !$.Sdl  ,/4 F T#^%  ' )0t?fNjz ")9 R ]i y%.5.R   *2 9Zj1{0-+^$   & 6 O W f o &!"-!!P!#r!!! ! !/!L"N" S"a"t" y""" " "Q" " # #"#K'#s# w#%######## $ $W)$B$F$" %.% 2% S%a%'j%,%%% % % %&&#&+&3&D& L&Z& a&m&& &&& &&&& ' '' 4'\A''''''>'2(YI(()(( (( ))7)H) Y)e)j)=)().)G *Jh*W*H +9T+<+++h+?,O,V, s,#,,,, ,,-!-@%-+f-)-U-).<.(T.3}.H.../,G/t/ // // / // // 00('0 P0 ]0j0r00.00p22&3C3sX3V3#4 4444&4 557.5"f55!55555#5!6H<6;666 6+67,7@7 V7b76j7 7777l8r8d999 99+99 :":3:I:\: a:k:&:::: :3:&;;+;?<P<W<'h<%</<'<=:=X=0`===<==$>7>&T>*{>7>E>=$?b? j?t?&???!??@ @ @@K@\@m@DA&MA&tA&A'A A A.BU2B BBBBB BB BCbC C CCCZCDD9+DeDmDqDD D*DD DDMEXE&&FMF-TF F F9F2F G$G8G TG `GnG GGGGG GGG!G HH+0H\H"yHH8HH HHIjIIII1IIHJYJuvJ J1J,K ?K/KK{K*K!K+K L #L3.LObL'L6LVMYhMgMg*NANANOO$OOO/O1O'0PXP.jP P PPPPP2wQ0QlQ'HR#pR0RCRQ S*[S0S/SST,TET_T nTxTT TTTT*T TT UU3U78U`N3sLT19{6Hg"!$0^ u<}Onp_&+mi(:>/,d5.z'of@ZxkU=X~A WyhCt*avKjPbeGlE2-8]V[%BSwJ ? \q;MQ|Ir)RDcF#7Y4 to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsAdd BookmarkAdd NoteAdd Tag LinkAdd a BookmarkAdd new linkAdd search plugin into your browser:Add to WatchlistAddressAddress was not foundAll BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksBookmarks from other users for this tagCSV file (for spreadsheet tools)CancelChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedConfirm PasswordCopyCould not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link Between TagsDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Link Between TagsEdit Tag Common DescriptionEdit Tag DescriptionEdit linkEdit your personal description of this tagEnableError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLastLast SearchesLast modification:LineLinked TagsLog InLog OutMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew password generated and sent to %sNextNoNo bookmarks availableNo certificates registeredNo linksNo matches found for that username.Not AvailableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: france=frenchcountryNote: use ">" to include one tag in another. e.g.: europe>france>parisNumber of bookmarks for this queryOldOnly your bookmarks for this tagPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPopular TagsPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivatePrivate RSS FeedProfilePropulsed by PublicRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRenameRename TagRename TagsRequiredSQL ErrorSSL client certificatesSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSee all tags from this userSee all your tagsSelect the default privacy setting for your imported bookmarksShared with Watch ListSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksSuggested anchors: Synonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThe secret tag "system:imported" allows you to find imported bookmarks.The secret tag "system:unfiled" allows you to find bookmarks without tags.There was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This username already exists, please make another choice.This username has been reserved, please make another choice.TipsTitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.Top of the pageUpdateUser added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou can use anchors to delimite attributes. for example: [publisher]blah[/publisher] You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour browser does not provide a certificate.Your new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbycreated inedit common descriptioninis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyouyou can freely host it on your own web server.Project-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2008-04-24 19:07+0100 Last-Translator: BenjaminHKB Language-Team: fr-FR Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: French X-Poedit-Country: FRANCE Plural-Forms: nplurals=2; plural=(n != 1); pour commencer à employer %s !%1$s supporte la plupart de l'API del.icio.us.Informations du compte de %s%s: Signets récentsPartagez vos signets avec tout le monde, avec les utilisateurs autorisés ou gardez-les pour vous.Conservez tous vos signets au même endroit, accessibles de partout. Marquez vos signets avec autant de labels que vous le souhaitez au lieu de les hiérarchiser avec des dossiers.À proposDétail du compteAjouter signetAjouter un commentaireAjout d'un lien entre mots-clésAjouter un signetCréer un lienAjoutez le module de recherche à votre navigateur web:Ajouter à la liste des consultésAdresseL'adresse n'a pas été trouvée.Tous les signetsTous les mots-clésTous les utilisateursAlphabetUne erreur critique s'est produite.Une erreur s'est produite.Une erreur s'est produite pendant l'enregistrement de vos modifications.La réponse antispam n'est pas valide. Veuillez réessayer.Question antispamEtes-vous sûr ?DisponibleDescription commune du signet mise à jour.Signet importé.Signet enregistré.Signet %s non trouvéBookmarkletSignetsSignets des autres utilisateurs pour ce mot-cléFichier CSV (pour les classeurs)AnnulerModifications enregistrées.Cliquez sur Parcourir... pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excèder 1MoCliquez sur Parcourir... pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excèder 1MoCliquez sur Importer pour débuter l'import des signets; cette opération peut prendre quelques minutesSéparés par des virgulesConfirmer le mot de passeCopierImpossible d'ouvrir le flux XML.CréerCréer un lien vers un autre mot-cléCréer un nouveau lienCréer un nouveau lienErreur critique.Information critique.Mode de débogage.DateSupprimerSupprimer le signetEffacer un lien entre mots-clésSupprimer le mot-cléSupprimer un lienSupprimer le lienDescriptionNe pas demander mon mot de passe pendant 2 semainesDéplacez l'un des 'bookmarklet' suivants dans les marques-pages de votre navigateur et cliquez dessus chaque fois que vous souhaitez ajouter un signet pour la page courante dans %s E-mailAdresse de courrier électronique invalide.Adresse de courrier électronique invalide. Veuilez réessayer.EditerEditer le signetEditer la description commune du signetEditer un lien entre mots-clésEditer la description commune du mot-cléEditer la description du mot-cléEditer un lienModifier la description privée de ce mot-cléActiverErreur pendant l'enregistrement de votre signet.Liens existants :Exporter les signetsExporter vos signets dans un fichier depuis votre navigateurImpossible de créer le lienErreur dans la suppression du signetImpossible d'effacer le lienImpossible d'effacer le mot-cléErreur dans le renommage du mot-cléErreur dans la mise à jour de la description du signetImpossible de mettre à jour la description commune du mot-cléImpossible de mettre à jour la description du mot-cléFichierPremièreMot de passe oubliéAvez-vous oublié votre mot de passe ?Pour les GeeksErreur générale.Erreur généralisée du serveur.Générer un mot de passeAller aux signetsFichier HTML (pour navigateurs)HistoriqueHistorique de %sPage personnelleSi vous avez oublié votre mot de passe, %s peut en générer un nouveau. Entrez le nom d'utilisateur et l'adresse email de votre compte dans le formulaire ci-dessous et nous vous enverrons un nouveau mot de passe.ImporterImporter les signets depuis un fichierImporter les signet depuis del.icio.usImporter les signets depuis un fichierImporter les signets depuis del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox et NetscapeInternet Explorer: Ficher > Importer et Exporter... > Exporter les favorisDernièreDernières recherchesDernière modification :LigneMots-clés structurésSe connecterQuitterMembre depuisMots-clés MenuMozilla Firefox: Marques-pages > Gérer les marques-pages... > Fichier > Exporter...Mes signetsMon ProfilMes signets surveillésNomNetscape: Marques-pages > Gérer les marques-pages... > Outils > Exporter...NouveauNouveau mot de passeNouveau mot de passe généré et envoyé à l'adresse %sSuivantNonPas de signets disponibles.Aucun certificat enregistréPas de liensRien de trouvé pour ce nom d'utilisateur.Non DisponibleNon trouvéNote : inclure un mot-clé dans le mot-clé '%s' (e.g. %s>countries) affiche ce mot-clé dans la boîte de menuNote : utiliser "=" pour rendre deux mots-clés synonymes ex: europe=euNote: utiliser ">" pour inclure un mot-clé dans un autre. ex: europe>france>parisNombre de signets pour cette rechercheAncienUniquement vos signets pour ce mot-cléPage %d de %dMot de passeLe mot de passe et sa vérification ne correspondent pas.Le mot de passe doit avoir au moins 6 caractères.Permission non accordée.Détails personnelsMots-clés populairesPopularitéAjouter à %sAjouter à %s (Pop-up)PrécédentVisionPrivéeFil RSS privéProfilPropulsé parPubliqueMots-clés récentsSignets ajoutés récemment à %sS'enregistrerS'enregistrer maintenantEnregistrement raté. Veuillez rééssayer.Mots-clés en relationEnlever de la liste des consultésRenommerRenommer le mot-cléRenommer les mots-clésRequisErreur SQLCertificats SSLEnregistrer les modificationsEnregistrer le fichier XML résultant sur votre ordinateurChercherRecherche de signetsRésultats de rechercheVoir tous les mots-clés de cet utilisateurVoir tous vos mots-clésSelectionnez la vision par défaut à appliquer à vos signets importésPartagé avec liste d'accèsEnregistrez-vous ici pour créer un compte gratuit %s. Toutes les informations requises ci-dessous sont nécessaires.Classer par :Conservez, partagez et libellez vos liens favorisAncres suggéres: Synonymes :Editer la description commune du mot-cléMot-clé effacéDescription du mot-clé mise à jourLien entre mot-clé créé.Effacement d'un lien entre mots-clésMot-clé renomméMots-clésMots-clés inclus dans le mot-clé '%s'Les informations que vous avez entrées sont incorrectes. Veuillez recommencer.L'URL demandée n'a pas été trouvée.L'URL demandée n'a pas été trouvée sur ce serveur.Le mot-clé caché system:imported vous permet de repérerles signets importésLe mot-clé caché system:unfiled vous permet de repérerles signets sans mot-cléIl y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou contacter votre administrateur.Il y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou contacter votre administrateur.Ce nom d'utilisateur existe déjà, veuillez en choisir un autre.Ce nom d'utilisateur existe déjà, veuillez en choisir un autre.AstucesTitrePour garder vos signets sûrs, vous devriez changer ce mot de passe dans votre profil lors de votre prochaine authentification.Revenir en haut de la pageMettre à jourUtilisateur ajouté à la liste des consultés.Utilisateur enlevé de votre liste des consultésL'utilisateur %s n'a pas été trouvé.Nom d'utilisateurLe nom d'utilisateur n'a pas été spécifié.UtilisateursÀ surveillerErreur XML: %s à la ligne %dFichier XML (comme del.icio.us)OuiVous devez saisir un nom d'utilisateur, un mot de passe, un nom et un e-mailVous n'êtes pas autorisés à supprimer ce signetVous n'êtes pas autorisé à éditer ce signet.Vous pouvez utilisez des ancres pour spécifiez certains champs. Par exemble: [publisher]blah[/publisher¸] Vous avez déjà enregistré ce signet.Vous êtes maintenant déconnecté.Votre inscription a bien été prise en compte !Vous devez être authentifié avant de pouvoir ajouter des signets.Vous devez saisir une E-mail.Vous devez entrer votre nom d'utilisateur.Votre signet doit avoir un titre et une adresse.Votre navigateur n'a pas octroyé de certificatVotre nouveau mot de passe est:tous les signetstous les mots-clés de cet utilisateurTous vos mots-cléssignetSignetssignet(s)signetsparCréé en éditer la description communedansest sous licencemessage_die() was called multiple times. ?mes signetsma liste de suiviProfilles signets de cet utilisateurvousvous pouvez librement l'installer sur votre serveur Websemanticscuttle-0.98.5+dfsg/data/locales/fr_CA/LC_MESSAGES/messages.po000066400000000000000000001413021227405131600252060ustar00rootroot00000000000000# Scuttle fr-FR Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # # nitram # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2008-04-24 19:07+0100\n" "Last-Translator: BenjaminHKB \n" "Language-Team: fr-FR \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() was called multiple times. ?" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "Erreur SQL" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Ligne" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Fichier" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Information" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Information critique." #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Une erreur s'est produite." #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Erreur générale." #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Une erreur critique s'est produite." #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Erreur critique." #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "Mode de débogage." #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Conservez tous vos signets au même endroit, accessibles de " "partout. " #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Partagez vos signets avec tout le monde, avec les " "utilisateurs autorisés ou gardez-les pour vous." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Marquez vos signets avec autant de labels que vous le " "souhaitez au lieu de les hiérarchiser avec des dossiers." #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "S'enregistrer maintenant" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "pour commencer à employer %s !" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Pour les Geeks" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "est sous licence" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "vous pouvez librement l'installer sur votre serveur Web" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s supporte la plupart de l'API del.icio.us." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "Astuces" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "Ajoutez le module de recherche à votre navigateur web:" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" "Le mot-clé caché system:unfiled vous permet de repérerles signets " "sans mot-clé" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" "Le mot-clé caché system:imported vous permet de repérerles signets " "importés" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Nom d'utilisateur" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "signet(s)" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Etes-vous sûr ?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Supprimer" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Instructions" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Titre" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Description" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "Dernière modification :" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "Mettre à jour" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "Annuler" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Déplacez l'un des 'bookmarklet' suivants dans les marques-pages de votre " "navigateur et cliquez dessus chaque fois que vous souhaitez ajouter un " "signet pour la page courante dans %s " #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Déplacez l'un des 'bookmarklet' suivants dans les marques-pages de votre " "navigateur et cliquez dessus chaque fois que vous souhaitez ajouter un " "signet pour la page courante dans %s " #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Ajouter à %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Ajouter à %s (Pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 #, fuzzy msgid "Edit the common description of this tag" msgstr "Modifier la description public de ce mot-clé" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 #, fuzzy msgid "Edit the common description of this bookmark" msgstr "éditer la description commune" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "Modifier la description privée de ce mot-clé" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Classer par :" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Date" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "Signets des autres utilisateurs pour ce mot-clé" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "Uniquement vos signets pour ce mot-clé" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "Première" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Précédent" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Suivant" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Dernière" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Page %d de %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Mots-clés" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Editer" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "par" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "vous" #: data/templates/default/bookmarks.tpl.php:333 #, fuzzy, php-format msgid " and %s1 other%s" msgstr " et les autres %s" #: data/templates/default/bookmarks.tpl.php:336 #, fuzzy, php-format msgid " and %2$s%1$s others%3$s" msgstr " et les autres %s" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Importer les signets depuis un fichier" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Copier" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "Vous n'êtes pas autorisé à éditer ce signet." #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "Revenir en haut de la page" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Pas de signets disponibles." #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "À propos" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "Propulsé par" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "signet" msgstr[1] "Signets" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Mots-clés populaires" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Mots-clés populaires" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Adresse" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Requis" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "Ajouter un commentaire" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" "Vous pouvez utilisez des ancres pour spécifiez certains champs. Par exemble: " "[publisher]blah[/publisher¸] " #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "Ancres suggéres: " #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Privée" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Mots-clés" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Séparés par des virgules" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" "Note: utiliser \">\" pour inclure un mot-clé dans un autre. ex: " "europe>france>paris" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" "Note : utiliser \"=\" pour rendre deux mots-clés synonymes ex: " "europe=eu" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Vision" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Publique" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Partagé avec liste d'accès" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privée" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Supprimer le signet" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "éditer la description commune" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importer" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Importer les signets depuis un fichier" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox et Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importer les signets depuis del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "Certificats SSL" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Nom" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "E-mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Supprimer" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "Aucun certificat enregistré" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "Votre navigateur n'a pas octroyé de certificat" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Détail du compte" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Nom d'utilisateur" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Nouveau mot de passe" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Confirmer le mot de passe" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 msgid "Private RSS Feed" msgstr "Fil RSS privé" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "Activer" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Générer une nouvelle clé" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Détails personnels" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Page personnelle" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Enregistrer les modifications" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 #, fuzzy msgid "Actions" msgstr "Instructions" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "Exporter les signets" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "Fichier HTML (pour navigateurs)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "Fichier XML (comme del.icio.us)" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "Fichier CSV (pour les classeurs)" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Non trouvé" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "L'URL demandée n'a pas été trouvée sur ce serveur." #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Erreur généralisée du serveur." #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "L'URL demandée n'a pas été trouvée." #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "Partagé avec liste d'accès" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instructions" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Se connecter à la page d'export " "de del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Enregistrer le fichier XML " "résultant sur votre ordinateur" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Cliquez sur Parcourir... pour trouver le fichier sur votre " "ordinateur. La taille maximale du fichier ne peut excèder 1Mo" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "Selectionnez la vision par défaut à appliquer à vos signets importés" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Cliquez sur Importer pour débuter l'import des signets; cette " "opération peut prendre quelques minutes" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Exporter vos signets dans un fichier depuis votre navigateur" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: Ficher > Importer et Exporter... > Exporter " "les favoris" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Marques-pages > Gérer les marques-pages... > " "Fichier > Exporter..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Marques-pages > Gérer les marques-pages... > Outils " "> Exporter..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Cliquez sur Parcourir... pour trouver le fichier sur votre " "ordinateur. La taille maximale du fichier ne peut excèder 1Mo" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Mot de passe" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Ne pas demander mon mot de passe pendant 2 semaines" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Se connecter" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Avez-vous oublié votre mot de passe ?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Si vous avez oublié votre mot de passe, %s peut en générer un nouveau. " "Entrez le nom d'utilisateur et l'adresse email de votre compte dans le " "formulaire ci-dessous et nous vous enverrons un nouveau mot de passe." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Générer un mot de passe" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Membre depuis" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 #, fuzzy msgid "Watching" msgstr "Éléments surveillés" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 #, fuzzy msgid "Watched By" msgstr "Surveillé par" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Signets" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "Aller aux signets" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Enregistrez-vous ici pour créer un compte gratuit %s. Toutes les " "informations requises ci-dessous sont nécessaires." #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "Question antispam" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "S'enregistrer" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "Chercher..." #: data/templates/default/search.menu.php:28 msgid "in" msgstr "dans" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "les signets de cet utilisateur" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "mes signets" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "ma liste de suivi" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "tous les signets" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Chercher" #: data/templates/default/sidebar.block.linked.php:23 msgid "Linked Tags" msgstr "Mots-clés structurés" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "Créer un lien" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "Supprimer un lien" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "Mots-clés inclus dans le mot-clé '%s'" #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "Mots-clés Menu" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "Voir tous vos mots-clés" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "Tous vos mots-clés" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "Voir tous les mots-clés de cet utilisateur" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "tous les mots-clés de cet utilisateur" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "Voir tous vos mots-clés" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Menu de mot-clé" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Mots-clés récents" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Mots-clés en relation" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "Dernières recherches" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "Nombre de signets pour cette recherche" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Renommer le mot-clé" msgstr[1] "Renommer les mots-clés" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "Supprimer le mot-clé" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "Editer la description du mot-clé" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "Editer la description commune du mot-clé" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "Créer un lien vers un autre mot-clé" #: data/templates/default/sidebar.block.users.php:14 #, fuzzy msgid "New Users" msgstr "Nouveaux utilisateurs" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "signets" #: data/templates/default/sidebar.block.users.php:30 #, fuzzy msgid "See all users" msgstr "Voir tous vos mots-clés" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "Tous les utilisateurs" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Enlever de la liste des consultés" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Enlever de la liste des consultés" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Ajouter à la liste des consultés" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "Editer un lien" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "Synonymes :" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "Créer un nouveau lien" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" "Note : inclure un mot-clé dans le mot-clé '%s' (e.g. " "%s>countries) affiche ce mot-clé dans la boîte de menu" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "Créer" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "Liens existants :" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "Pas de liens" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Oui" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Non" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "Supprimer le lien" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "Créer un nouveau lien" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "Ancien" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "Nouveau" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "Renommer" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alphabet" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Popularité" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Accueil" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "À surveiller" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profil" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Ajouter un signet" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Quitter" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "Profil" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "Créé en " #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Vous n'êtes pas autorisés à supprimer ce signet" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Erreur dans la suppression du signet" #: www/alltags.php:50 msgid "All Tags" msgstr "Tous les mots-clés" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "L'utilisateur %s n'a pas été trouvé." #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "Permission non accordée." #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "Description commune du signet mise à jour." #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "Erreur dans la mise à jour de la description du signet" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "Editer la description commune du signet" #: www/bookmarks.php:114 www/tags.php:47 #, fuzzy msgid "Remove the tag from the selection" msgstr "Voir tous les mots-clés de cet utilisateur" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Votre signet doit avoir un titre et une adresse." #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Signet enregistré." #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Il y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou " "contacter votre administrateur." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Ajouter signet" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Vous devez être authentifié avant de pouvoir ajouter des signets." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Mes signets" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Editer le signet" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Signet %s non trouvé" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Vous n'êtes pas autorisé à éditer ce signet." #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Erreur pendant l'enregistrement de votre signet." #: www/history.php:61 msgid "History" msgstr "Historique" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "Historique de %s" #: www/history.php:84 msgid "Address was not found" msgstr "L'adresse n'a pas été trouvée." #: www/import.php:47 msgid "Could not open XML input" msgstr "Impossible d'ouvrir le flux XML." #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "Erreur XML: %s à la ligne %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Importer les signet depuis del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Vous avez déjà enregistré ce signet." #: www/import.php:104 msgid "Bookmark imported." msgstr "Signet importé." #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Vous avez déjà enregistré ce signet." #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "Pas de signets trouvés" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Signet importé." #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Importer les signets depuis un fichier" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 #, fuzzy msgid "New links between tags: " msgstr "Effacer un lien entre mots-clés" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Vous êtes maintenant déconnecté." #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Signets récents" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Signets récents" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Conservez, partagez et libellez vos liens favoris" #: www/index.php:97 msgid "All Bookmarks" msgstr "Tous les signets" #: www/jsScuttle.php:71 msgid "Available" msgstr "Disponible" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Non Disponible" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "" "Les informations que vous avez entrées sont incorrectes. Veuillez " "recommencer." #: www/password.php:36 msgid "You must enter your username." msgstr "Vous devez entrer votre nom d'utilisateur." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "Vous devez saisir une E-mail." #: www/password.php:48 msgid "No matches found for that username." msgstr "Rien de trouvé pour ce nom d'utilisateur." #: www/password.php:51 #, fuzzy msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Nous n'avons rien trouvé pour cette combinaison de nom d'utilisateur et " "d'e-mail." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Il y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou " "contacter votre administrateur." #: www/password.php:63 msgid "Your new password is:" msgstr "Votre nouveau mot de passe est:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Pour garder vos signets sûrs, vous devriez changer ce mot de passe dans " "votre profil lors de votre prochaine authentification." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "Informations du compte de %s" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Nouveau mot de passe généré et envoyé à l'adresse %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Mot de passe oublié" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Le nom d'utilisateur n'a pas été spécifié." #: www/profile.php:70 msgid "My Profile" msgstr "Mon Profil" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Le mot de passe et sa vérification ne correspondent pas." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Le mot de passe doit avoir au moins 6 caractères." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Adresse de courrier électronique invalide." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "" "Une erreur s'est produite pendant l'enregistrement de vos modifications." #: www/profile.php:129 msgid "Changes saved." msgstr "Modifications enregistrées." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 #, fuzzy msgid "Failed to delete SSL client certificate." msgstr "Impossible d'effacer le mot-clé" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "Vous devez saisir un nom d'utilisateur, un mot de passe, un nom et " "un e-mail" #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "Ce nom d'utilisateur existe déjà, veuillez en choisir un autre." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Ce nom d'utilisateur existe déjà, veuillez en choisir un autre." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "Ce nom d'utilisateur existe déjà, veuillez en choisir un autre." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "Adresse de courrier électronique invalide. Veuilez réessayer." #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "La réponse antispam n'est pas valide. Veuillez réessayer." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Votre inscription a bien été prise en compte !" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Enregistrement raté. Veuillez rééssayer." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Signets ajoutés récemment à %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Recherche de signets" #: www/search.php:89 msgid "Search Results" msgstr "Résultats de recherche" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "Lien entre mot-clé créé." #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "Impossible de créer le lien" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "Ajout d'un lien entre mots-clés" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "Effacement d'un lien entre mots-clés" #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "Impossible d'effacer le lien" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "Effacer un lien entre mots-clés" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "Editer un lien entre mots-clés" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "Editer la description commune du mot-clé" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "Impossible de mettre à jour la description commune du mot-clé" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "Mot-clé effacé" #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "Impossible d'effacer le mot-clé" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "Description du mot-clé mise à jour" #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "Impossible de mettre à jour la description du mot-clé" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "Mot-clé renommé" #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "Erreur dans le renommage du mot-clé" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "Utilisateurs" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Utilisateur enlevé de votre liste des consultés" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Utilisateur ajouté à la liste des consultés." #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Mes signets surveillés" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "for" #~ msgstr "pour" #~ msgid "URL" #~ msgstr "URL" #~ msgid "to" #~ msgstr "dans" #~ msgid "Last Users" #~ msgstr "Derniers utilisateurs" #~ msgid "Recent Bookmarks" #~ msgstr "Signets récents" #~ msgid "plus" #~ msgstr "plus" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Enregistrez-vous maintenant pour poster vos " #~ "propres signets sur %s !" #~ msgid "" #~ "Semantic " #~ "Scuttle is licensed under the GNU General Public " #~ "License (you can host it on your own web server)." #~ msgstr "" #~ "Semantic " #~ "Scuttle, sous license GNU General Public " #~ "License (vous pouvez donc l'héberger sur votre propre serveur)." #~ msgid "edit" #~ msgstr "éditer" #~ msgid "User with username %s not was not found" #~ msgstr "L'utilisateur %s n'a pas été trouvé." #~ msgid "%s Bookmarks" #~ msgstr "Signets de %s" #~ msgid "E-mail" #~ msgstr "E-mail" semanticscuttle-0.98.5+dfsg/data/locales/fr_FR/000077500000000000000000000000001227405131600212755ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/fr_FR/LC_MESSAGES/000077500000000000000000000000001227405131600230625ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/fr_FR/LC_MESSAGES/messages.mo000066400000000000000000000647251227405131600252440ustar00rootroot000000000000006 | "O3+x</SnW%g}  &5 F$Sx  \j s},/ . 8 #H l  %  ' !4! N!o!v!#!t!f"N"x"M#"\#Q# #"#$$#$%($N$g$n$$$$$ $$$$$ % %'% 7%%C%i%%%.&?& D& R&s&&& &,&'&*'E' K'l'|'1'''' (&(0?(+p($(((((( ) )$)9)K)[)t)|)))M))*"*!**#*!+ A+ M+/Z+L+ +&+ , ,, 2,>, C,O,V, ^, k, x,Q, , , ,,K,J- N- [-e-%~-----j-#7. [. i.Ws.B.F/"U/x/ |/ / //'/,/0*0;0 S0`0 |0 00000 00 00 111 +171U1 ^1&k1 11!1111 2 2 2\)2222 22 222>3C3Z3Yp33)33 44 :4F4^4o4 4444=4(4.5GM5J5W5H86,6=696<&7fc777h7:>8y8+8"88-8 9 *9#K9o9x999 999%9 99 : :$:@:@D:+:):U:31;)e;;(;3;H<M<.k<< << << < = = ==3=6=(M= v= ====.==??e?5$@Z@z@A/-A]A"rAdAVAQB BBBBCC0CBCXC4gCCC!CCCCD DDD#DEH)E;rEEE EE+EF.FBF XFdFlF+FF=FFG!G1>GpGGrzHHI.I`I EJPJoJJJ"J JJ JK.KEKVKlKK KKKKKK K3K2LL+L@M]MdM'uMM$MMM*N'3N.[NN0NNN<N&O$COhOOO7O:O24PgPwP PP&PPP!P Q#Q5Q UQ`QqQyQ_QQR&R&RS&/S'VS ~S S.SUST,+T XTbTxTTTT TTT T Ub U oU {U UUZUUUV%V9?VyVVV VXV*W2W AW`MWAWMW&>XeX"lXX X X9X2X&Y@YTYlY*|Y Y YY YYY YZZ+Z2ZAZJZ cZ!qZ ZZ+ZZZ [,[?[!H[j[ q[|[j[\\#\ ;\%G\m\\\H\\]u3] ]/]] ]$ ^ /^;^[^s^ ^^^^O^'_6@_Mw_L_g`gz`.`MaA_aAawa[bcbibKb 5c;Bc.~cc5c#c#d':dbd.td dd d dd#de e*e3eQeqeue2e0)fiZf5f'f#"g0FgCwgQg* h08hihh h hh hhh hhii*.i Yi eiriyii7i )=_'h/B>mVG *{}%3D]C 14SfOA85n!7K \ &"E.Tk$ #eHL!F+-;IJR%tP z&c.?1/*<0('v"6, w2Noi(Y ` pXag3M,+ux|6s0 #5@dj~Z92^q [rWQU$)byl-4: and %2$s%1$s others%3$s and %s1 other%s at least 5 characters, alphanumeric (no spaces, no dots or other special ones) to send you your password if you forget it to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s and all his bookmarks and tags were deleted.%s: Recent bookmarks(Come back to previous page.)Share your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd NoteAdd Tag LinkAdd a BookmarkAdd a contact...Add new linkAdd search plugin into your browser:Add to WatchlistAddressAddress was not foundAdminAdmin tips: Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.php.All BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBad indentationBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksBookmarks found: Bookmarks from other users for this tagBookmarks imported: Bookmarks on this page are managed by an admin user.CSV file (for spreadsheet tools)CancelChanges saved.Check all URLs (May take some time)Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteClick one of the following bookmarklets to add a button you can click whenever you want to add the page you are on to %sClose contactsClose contacts are mutual contactsCollaborative description: these fields can be viewed and modified by every usersCome back to Come back to the top of this page.Comma-separatedConfirm PasswordCopyCopy this bookmark to YOUR bookmarks.Could not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link Between TagsDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Link Between TagsEdit Tag Common DescriptionEdit Tag DescriptionEdit linkEdit the common description of this bookmarkEdit the common description of this tagEdit your personal description of this tagEmailError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFeatured Menu TagsFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomeHomepageIf no result appears, check that all the urls are valid in the admin section.If you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport StructureImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesInvalid TokenJust visible by you and your contacts.LastLast SearchesLast modification:Last updateLineLinked TagsLog InLog OutManage usersMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew UsersNew links between tags: New password generated and sent to %sNextNoNo bookmarks availableNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: france=frenchcountryNote: use ">" to include one tag in another. e.g.: europe>france>parisNumber of bookmarks for this queryOldOnly your bookmarks for this tagOther actionsPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPlease activate cookiesPopular TagsPopular Tags From All UsersPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivatePrivate NotePrivate Note on this bookmarkProblem with ProfilePropulsed by PublicPublic/Shared/PrivateRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRemove the tag from the selectionRemove this contactRenameRename TagRename TagsRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSearch...See all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksShared with Watch ListShared with WatchlistSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksSuggested anchors: Synonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'Tags:The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThe secret tag "system:imported" allows you to find imported bookmarks.The secret tag "system:unfiled" allows you to find bookmarks without tags.There was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This bookmark is certified by an admin user.This menu is composed of keywords (tags) organized by admins.This username already exists, please make another choice.This username has been reserved, please make another choice.This username is not valid (too short, too long, forbidden characters...), please make another choice.TipsTitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.To refresh manually Google Custom Search Engine, goes to: Top of the pageType a username to add it to your contacts.Unsatisfied? You can also try our UpdateUse of the API calls requires authentication.User added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersUsers managementVote againstVote forVotingVoting %dWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou can use anchors to delimite attributes. for example: [publisher]blah[/publisher] You have already submitted some of these bookmarks.You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbycreated inedit common descriptioninis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyouyou can freely host it on your own web server.Project-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2009-11-16 21:14+0100 Last-Translator: BenjaminHKB Language-Team: fr-FR Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: French X-Poedit-Country: FRANCE Plural-Forms: nplurals=2; plural=(n != 1); et %2$s%1$s autres%3$s et %s1 autre%s au moins 5 caractères, alphanumériques (pas d'espaces, pas de points ou autre caractère spécial) pour vous envoyer votre mot de passe en cas de pertepour commencer à employer %s !%1$s supporte la plupart de l'API del.icio.us.Informations du compte de %s%s, ses signets et ses tags ont été effacés.%s: Signets récents(Revenir à la page précédente.)Partagez vos signets avec tout le monde, avec vos contacts ou gardez-les pour vous.Conservez tous vos signets au même endroit, accessibles de partout. Taggez vos signets avec autant de labels que vous le souhaitez au lieu de les hiérarchiser avec des dossiers.À proposDétail du compteActionsAjouter signetAjouter une noteAjout d'un lien entre tagsAjouter un signetAjouter un contact...Créer un lienAjouter un plugin de recherche à votre navigateur :Ajouter aux contactsAdresseL'adresse n'a pas été trouvée.AdminConseil pour admin:Admins, votre installation est en "Mode Debug" ($debugMode = true). Pour passer en "Mode Normal" et cacher les messages de debuggage, changez $debugMode à false dans config.inc.php.Tous les signetsTous les tagsTous les utilisateursAlphabetUne erreur critique s'est produite.Une erreur s'est produite.Une erreur s'est produite pendant l'enregistrement de vos modifications.La réponse antispam n'est pas valide. Veuillez réessayer.Question antispamEtes-vous sûr ?DisponibleMauvaise indentationDescription commune du signet mise à jour.Signet importé.Signet enregistré.Signet %s non trouvéBookmarkletSignetsSignets trouvés :Signets des autres utilisateurs pour ce tagSignets importés :Les signets de cette page sont gérés par un administrateur.Fichier CSV (pour tableurs)AnnulerModifications enregistrées.Vérifier toutes les URLs (Peut prendre du temps)Cliquez sur Parcourir... pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excèder 1MoCliquez sur Parcourir... pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excèder 1MoCliquez sur Importer pour débuter l'import des signets; cette opération peut prendre quelques minutesDéplacez l'un des 'bookmarklet' suivants dans les marques-pages de votre navigateur et cliquez dessus chaque fois que vous souhaitez ajouter un signet pour la page courante dans %s Contacts prochesLes contacts proches sont des contacts mutuelsDescription collaborative : ces champs peuvent être vus et modifiés par tous les utilisateurs.Revenir àRevenir en haut de cette page.Séparés par des virgulesConfirmer le mot de passeCopierCopier ce signet dans VOS signets.Impossible d'ouvrir le flux XML.CréerCréer un lien vers un autre tagCréer un nouveau lienCréer un nouveau lienErreur critique.Information critique.Mode de débogage.DateSupprimerSupprimer le signetEffacer un lien entre tagsSupprimer le tagSupprimer un lienSupprimer le lienDescriptionNe pas demander mon mot de passe pendant 2 semainesDéplacez l'un des 'bookmarklet' suivants dans les marques-pages de votre navigateur et cliquez dessus chaque fois que vous souhaitez ajouter un signet pour la page courante dans %s E-mailAdresse de courrier électronique invalide.Adresse de courrier électronique invalide. Veuillez réessayer.EditerEditer le signetEditer la description commune du signetEditer un lien entre tagsEditer la description commune du tagEditer la description du tagEditer un lienEditer la description commune de ce signetEditer la description commune de ce tagEditer votre description personnelle de ce tagE-mailErreur pendant l'enregistrement de votre signet.Liens existants :Exporter les signetsExporter vos signets dans un fichier depuis votre navigateurImpossible de créer le lienErreur dans la suppression du signetImpossible d'effacer le lienImpossible d'effacer le tagErreur dans le renommage du tagErreur dans la mise à jour de la description du signetImpossible de mettre à jour la description commune du tagImpossible de mettre à jour la description du tagTags PrincipauxFichierPremièreMot de passe oubliéAvez-vous oublié votre mot de passe ?Pour les GeeksErreur générale.Erreur généralisée du serveur.Générer un mot de passeAller aux signetsFichier HTML (pour navigateurs)HistoriqueHistorique de %sAccueilPage personnelleSi aucun résultat apparaît, vérifier que toutes les urls sont valides dans la section admin.Si vous avez oublié votre mot de passe, %s peut en générer un nouveau. Entrez le nom d'utilisateur et l'adresse email de votre compte dans le formulaire ci-dessous et nous vous enverrons un nouveau mot de passe.ImporterImporter les signets depuis un fichierImporter les signet depuis del.icio.usImporter une structureImporter les signets depuis un fichierImporter les signets depuis del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox et NetscapeInternet Explorer: Ficher > Importer et Exporter... > Exporter les favorisToken invalideVisible uniquement par vous et vos contacts.DernièreDernières recherchesDernière modification :Date de dernière mise à jourLigneTags structurésSe connecterQuitterGérer les utilisateursMembre depuisTags MenuMozilla Firefox: Marques-pages > Gérer les marques-pages... > Fichier > Exporter...Mes signetsMon ProfilMes ContactsNomNetscape: Marques-pages > Gérer les marques-pages... > Outils > Exporter...NouveauNouveau mot de passeNouveaux UtilisateursNouveau lien entre tags :Nouveau mot de passe généré et envoyé à l'adresse %sSuivantNonPas de signets disponibles.Pas de liensPas d'entrée pour ce nom d'utilisateur et cet e-mail.Rien de trouvé pour ce nom d'utilisateur.Non DisponibleNon trouvéNote : inclure un tag dans le tag '%s' (e.g. %s>countries) affiche ce tag dans la boîte de menuNote : utiliser "=" pour rendre deux tags synonymes ex: europe=euNote: utiliser ">" pour inclure un tag dans un autre. ex: europe>france>parisNombre de signets pour cette rechercheAncienUniquement vos signets pour ce tagAutres actionsPage %d de %dMot de passeLe mot de passe et sa vérification ne correspondent pas.Le mot de passe doit avoir au moins 6 caractères.Permission non accordée.Détails personnelsSVP activez les cookiesTags populairesTags populaires pour tous les utilisateursPopularitéAjouter à %sAjouter à %s (Pop-up)PrécédentAccèsPrivéeNote privéeNote privée sur ce signetProblème avec ProfilPropulsé par PubliquePublique/Partagé/PrivéTags récentsSignets ajoutés récemment à %sS'enregistrerS'enregistrer maintenantEnregistrement raté. Veuillez rééssayer.Tags en relationEnlever des contactsRetirer le tag de la sélectionEnlever ce contactRenommerRenommer le tagRenommer les tagsRequisErreur SQLEnregistrer les modificationsEnregistrer le fichier XML résultant sur votre ordinateurChercherRecherche de signetsRésultats de rechercheChercher...Voir tous les tags de cet utilisateurVoir tous les utilisateursVoir tous vos tagsVoir les tags populairesSelectionnez la vision par défaut à appliquer à vos signets importésPartagé avec mes contactsPartagé avec mes contactsEnregistrez-vous ici pour créer un compte gratuit %s. Toutes les informations requises ci-dessous sont nécessaires.Classer par :Conservez, partagez et taggez vos liens favorisBalises suggérées : Synonymes :Editer la description commune du tagTag effacéDescription du tag mise à jourLien entre tags créé.Effacement d'un lien entre tagsTag renomméTagsTags inclus dans le tag '%s'Tags:Les informations que vous avez entrées sont incorrectes. Veuillez recommencer.L'URL demandée n'a pas été trouvée.L'URL demandée n'a pas été trouvée sur ce serveur.Le tag secret "system:imported" vous permet de trouver les signets importés.Le tag secret "system:unfiled" vous permet de trouver les signets sans tags.Il y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou contacter votre administrateur.Il y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou contacter votre administrateur.Ce signet est certifié par un administrateur.Ce menu est composé de mots-clefs (tags) organisés par les administrateurs.Ce nom d'utilisateur existe déjà, veuillez en choisir un autre.Ce nom d'utilisateur existe déjà, veuillez en choisir un autre.Ce nom d'utilisateur n'est pas valide (trop court, trop long, caractères interdits...), Merci de faire un autre choix.AstucesTitrePour garder vos signets sûrs, vous devriez changer ce mot de passe dans votre profil lors de votre prochaine authentification.Pour rafraîchir manuellement le moteur de Google Custom Search, allez à :Haut de pageEntrer un nom d'utilisateur pour l'ajouter à vos contacts.Insatisfait ? Vous pouvez aussi essayer notre Mettre à jourL'utilisation de l'API requiert une authentification.Utilisateur ajouté à vos contactsUtilisateur enlevé de vos contactsL'utilisateur %s n'a pas été trouvé.Nom d'utilisateurLe nom d'utilisateur n'a pas été spécifié.UtilisateursGestion des utilisateursVote contreVote pourVoteVote %dDans les contacts deMes contactsContactsErreur XML: %s à la ligne %dFichier XML (comme del.icio.us)OuiVous devez saisir un nom d'utilisateur, un mot de passe, un nom et un e-mailVous n'êtes pas autorisés à supprimer ce signetVous n'êtes pas autorisé à éditer ce signet.Vous pouvez utiliser des balises pour délimiter des attributs. Par exemple : [publisher]blah[/publisher]Vous avez déjà enregistré certains de ces signets.Vous avez déjà enregistré ce signet.Vous êtes maintenant déconnecté.Votre inscription a bien été prise en compte !Vous devez être authentifié avant de pouvoir ajouter des signets.Vous devez saisir une E-mail.Vous devez entrer votre nom d'utilisateur.Votre signet doit avoir un titre et une adresse.Votre nouveau mot de passe est:tous les signetstous les tags de cet utilisateurTous vos tagssignetSignetssignet(s)signetsparCréé en éditer la description communedansest sous licencemessage_die() was called multiple times. ?mes signetsmes contactsProfilles signets de cet utilisateurvousvous pouvez librement l'installer sur votre serveur Websemanticscuttle-0.98.5+dfsg/data/locales/fr_FR/LC_MESSAGES/messages.po000066400000000000000000001425041227405131600252370ustar00rootroot00000000000000# Scuttle fr-FR Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # # nitram # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2009-11-16 21:14+0100\n" "Last-Translator: BenjaminHKB \n" "Language-Team: fr-FR \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() was called multiple times. ?" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "Erreur SQL" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Ligne" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Fichier" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Information" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Information critique." #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Une erreur s'est produite." #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Erreur générale." #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Une erreur critique s'est produite." #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Erreur critique." #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "Mode de débogage." #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Conservez tous vos signets au même endroit, accessibles de " "partout. " #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Partagez vos signets avec tout le monde, avec vos contacts " "ou gardez-les pour vous." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Taggez vos signets avec autant de labels que vous le " "souhaitez au lieu de les hiérarchiser avec des dossiers." #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "S'enregistrer maintenant" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "pour commencer à employer %s !" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Pour les Geeks" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "est sous licence" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "vous pouvez librement l'installer sur votre serveur Web" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s supporte la plupart de l'API del.icio.us." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "Astuces" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "Ajouter un plugin de recherche à votre navigateur :" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" "Le tag secret \"system:unfiled\" vous permet de trouver les signets sans " "tags." #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" "Le tag secret \"system:imported\" vous permet de trouver les signets " "importés." #: data/templates/default/admin.tpl.php:5 msgid "Users management" msgstr "Gestion des utilisateurs" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "Publique/Partagé/Privé" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "signet(s)" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Etes-vous sûr ?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Supprimer" #: data/templates/default/admin.tpl.php:27 msgid "Other actions" msgstr "Autres actions" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "Vérifier toutes les URLs (Peut prendre du temps)" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" "Description collaborative : ces champs peuvent être vus et modifiés par tous " "les utilisateurs." #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Titre" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Description" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "Dernière modification :" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "Mettre à jour" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "Annuler" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Déplacez l'un des 'bookmarklet' suivants dans les marques-pages de votre " "navigateur et cliquez dessus chaque fois que vous souhaitez ajouter un " "signet pour la page courante dans %s " #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Déplacez l'un des 'bookmarklet' suivants dans les marques-pages de votre " "navigateur et cliquez dessus chaque fois que vous souhaitez ajouter un " "signet pour la page courante dans %s " #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Ajouter à %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Ajouter à %s (Pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "Vote %d" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "Vote pour" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "Vote contre" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "Les signets de cette page sont gérés par un administrateur." #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "Editer la description commune de ce tag" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "Editer la description commune de ce signet" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "Editer votre description personnelle de ce tag" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Classer par :" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Date" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "Vote" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "Signets des autres utilisateurs pour ce tag" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "Uniquement vos signets pour ce tag" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "Première" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Précédent" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Suivant" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Dernière" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Page %d de %d" #: data/templates/default/bookmarks.tpl.php:295 msgid "Tags:" msgstr "Tags:" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Editer" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "Date de dernière mise à jour" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "par" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "vous" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr " et %s1 autre%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " et %2$s%1$s autres%3$s" #: data/templates/default/bookmarks.tpl.php:350 msgid "Copy this bookmark to YOUR bookmarks." msgstr "Copier ce signet dans VOS signets." #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Copier" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "Ce signet est certifié par un administrateur." #: data/templates/default/bookmarks.tpl.php:430 msgid "Private Note on this bookmark" msgstr "Note privée sur ce signet" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "Revenir en haut de cette page." #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "Haut de page" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Pas de signets disponibles." #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "À propos" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "Propulsé par " #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "signet" msgstr[1] "Signets" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Tags populaires" #: data/templates/default/dynamictags.inc.php:108 msgid "Popular Tags From All Users" msgstr "Tags populaires pour tous les utilisateurs" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Adresse" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Requis" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "Ajouter une note" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" "Vous pouvez utiliser des balises pour délimiter des attributs. Par exemple : " "[publisher]blah[/publisher]" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "Balises suggérées : " #: data/templates/default/editbookmark.tpl.php:76 msgid "Private Note" msgstr "Note privée" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "Visible uniquement par vous et vos contacts." #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Tags" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Séparés par des virgules" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" "Note: utiliser \">\" pour inclure un tag dans un autre. ex: " "europe>france>paris" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "Note : utiliser \"=\" pour rendre deux tags synonymes ex: europe=eu" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Accès" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Publique" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Partagé avec mes contacts" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privée" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Supprimer le signet" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "éditer la description commune" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importer" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Importer les signets depuis un fichier" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox et Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importer les signets depuis del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Nom" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 msgid "Email" msgstr "E-mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Supprimer" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Détail du compte" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Nom d'utilisateur" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Nouveau mot de passe" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Confirmer le mot de passe" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Note privée" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Générer un mot de passe" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Détails personnels" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Page personnelle" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Enregistrer les modifications" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Actions" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "Exporter les signets" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "Fichier HTML (pour navigateurs)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "Fichier XML (comme del.icio.us)" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "Fichier CSV (pour tableurs)" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Non trouvé" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "L'URL demandée n'a pas été trouvée sur ce serveur." #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Erreur généralisée du serveur." #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "L'URL demandée n'a pas été trouvée." #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "Partagé avec mes contacts" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instructions" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Se connecter à la page d'export " "de del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Enregistrer le fichier XML " "résultant sur votre ordinateur" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Cliquez sur Parcourir... pour trouver le fichier sur votre " "ordinateur. La taille maximale du fichier ne peut excèder 1Mo" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "Selectionnez la vision par défaut à appliquer à vos signets importés" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Cliquez sur Importer pour débuter l'import des signets; cette " "opération peut prendre quelques minutes" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Exporter vos signets dans un fichier depuis votre navigateur" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: Ficher > Importer et Exporter... > Exporter " "les favoris" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Marques-pages > Gérer les marques-pages... > " "Fichier > Exporter..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Marques-pages > Gérer les marques-pages... > Outils " "> Exporter..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Cliquez sur Parcourir... pour trouver le fichier sur votre " "ordinateur. La taille maximale du fichier ne peut excèder 1Mo" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "SVP activez les cookies" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Mot de passe" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Ne pas demander mon mot de passe pendant 2 semaines" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Se connecter" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Avez-vous oublié votre mot de passe ?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Si vous avez oublié votre mot de passe, %s peut en générer un nouveau. " "Entrez le nom d'utilisateur et l'adresse email de votre compte dans le " "formulaire ci-dessous et nous vous enverrons un nouveau mot de passe." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Générer un mot de passe" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Membre depuis" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Mes contacts" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Dans les contacts de" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Signets" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "Aller aux signets" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Enregistrez-vous ici pour créer un compte gratuit %s. Toutes les " "informations requises ci-dessous sont nécessaires." #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" " au moins 5 caractères, alphanumériques (pas d'espaces, pas de points ou " "autre caractère spécial)" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr " pour vous envoyer votre mot de passe en cas de perte" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "Question antispam" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "S'enregistrer" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "Chercher..." #: data/templates/default/search.menu.php:28 msgid "in" msgstr "dans" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "les signets de cet utilisateur" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "mes signets" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "mes contacts" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "tous les signets" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Chercher" #: data/templates/default/sidebar.block.linked.php:23 msgid "Linked Tags" msgstr "Tags structurés" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "Créer un lien" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "Supprimer un lien" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "Tags inclus dans le tag '%s'" #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "Tags Menu" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "Voir tous vos tags" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "Tous vos tags" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "Voir tous les tags de cet utilisateur" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "tous les tags de cet utilisateur" #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "Voir les tags populaires" #: data/templates/default/sidebar.block.menu2.php:21 msgid "Featured Menu Tags" msgstr "Tags Principaux" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" "Ce menu est composé de mots-clefs (tags) organisés par les administrateurs." #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Tags récents" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Tags en relation" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "Dernières recherches" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "Nombre de signets pour cette recherche" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Renommer le tag" msgstr[1] "Renommer les tags" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "Supprimer le tag" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "Editer la description du tag" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "Editer la description commune du tag" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "Créer un lien vers un autre tag" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "Nouveaux Utilisateurs" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "signets" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "Voir tous les utilisateurs" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "Tous les utilisateurs" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "Les contacts proches sont des contacts mutuels" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "Contacts proches" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "Ajouter un contact..." #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "Entrer un nom d'utilisateur pour l'ajouter à vos contacts." #: data/templates/default/sidebar.block.watchlist.php:44 msgid "Remove this contact" msgstr "Enlever ce contact" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Enlever des contacts" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Ajouter aux contacts" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "Editer un lien" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "Synonymes :" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "Créer un nouveau lien" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" "Note : inclure un tag dans le tag '%s' (e.g. %s>countries) affiche ce tag " "dans la boîte de menu" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "Créer" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "Liens existants :" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "Pas de liens" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Oui" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Non" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "Supprimer le lien" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "Créer un nouveau lien" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "Ancien" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "Nouveau" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "Renommer" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alphabet" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Popularité" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 msgid "Home" msgstr "Accueil" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Contacts" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profil" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Ajouter un signet" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Quitter" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "Admin" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" "Admins, votre installation est en \"Mode Debug\" ($debugMode = true). Pour " "passer en \"Mode Normal\" et cacher les messages de debuggage, changez " "$debugMode à false dans config.inc.php." #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "Profil" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "Créé en " #: www/admin.php:32 msgid "Manage users" msgstr "Gérer les utilisateurs" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "%s, ses signets et ses tags ont été effacés." #: www/admin.php:76 msgid "Problem with " msgstr "Problème avec " #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Vous n'êtes pas autorisés à supprimer ce signet" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Erreur dans la suppression du signet" #: www/alltags.php:50 msgid "All Tags" msgstr "Tous les tags" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "L'utilisateur %s n'a pas été trouvé." #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "Permission non accordée." #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "Description commune du signet mise à jour." #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "Erreur dans la mise à jour de la description du signet" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "Editer la description commune du signet" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "Retirer le tag de la sélection" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Votre signet doit avoir un titre et une adresse." #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Signet enregistré." #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "(Revenir à la page précédente.)" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Il y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou " "contacter votre administrateur." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Ajouter signet" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Vous devez être authentifié avant de pouvoir ajouter des signets." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Mes signets" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Editer le signet" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Signet %s non trouvé" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Vous n'êtes pas autorisé à éditer ce signet." #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Erreur pendant l'enregistrement de votre signet." #: www/history.php:61 msgid "History" msgstr "Historique" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "Historique de %s" #: www/history.php:84 msgid "Address was not found" msgstr "L'adresse n'a pas été trouvée." #: www/import.php:47 msgid "Could not open XML input" msgstr "Impossible d'ouvrir le flux XML." #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "Erreur XML: %s à la ligne %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Importer les signet depuis del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Vous avez déjà enregistré ce signet." #: www/import.php:104 msgid "Bookmark imported." msgstr "Signet importé." #: www/importNetscape.php:95 msgid "You have already submitted some of these bookmarks." msgstr "Vous avez déjà enregistré certains de ces signets." #: www/importNetscape.php:115 msgid "Bookmarks found: " msgstr "Signets trouvés :" #: www/importNetscape.php:116 msgid "Bookmarks imported: " msgstr "Signets importés :" #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Importer les signets depuis un fichier" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "Mauvaise indentation" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "Nouveau lien entre tags :" #: www/importStructure.php:72 msgid "Import Structure" msgstr "Importer une structure" #: www/index.php:38 msgid "You have now logged out" msgstr "Vous êtes maintenant déconnecté." #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Signets récents" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Signets récents" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Conservez, partagez et taggez vos liens favoris" #: www/index.php:97 msgid "All Bookmarks" msgstr "Tous les signets" #: www/jsScuttle.php:71 msgid "Available" msgstr "Disponible" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Non Disponible" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "" "Les informations que vous avez entrées sont incorrectes. Veuillez " "recommencer." #: www/password.php:36 msgid "You must enter your username." msgstr "Vous devez entrer votre nom d'utilisateur." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "Vous devez saisir une E-mail." #: www/password.php:48 msgid "No matches found for that username." msgstr "Rien de trouvé pour ce nom d'utilisateur." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Pas d'entrée pour ce nom d'utilisateur et cet e-" "mail." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Il y a eu une erreur en enregistrant ce signet. Veuillez rééssayer ou " "contacter votre administrateur." #: www/password.php:63 msgid "Your new password is:" msgstr "Votre nouveau mot de passe est:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Pour garder vos signets sûrs, vous devriez changer ce mot de passe dans " "votre profil lors de votre prochaine authentification." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "Informations du compte de %s" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Nouveau mot de passe généré et envoyé à l'adresse %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Mot de passe oublié" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Le nom d'utilisateur n'a pas été spécifié." #: www/profile.php:70 msgid "My Profile" msgstr "Mon Profil" #: www/profile.php:110 msgid "Invalid Token" msgstr "Token invalide" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Le mot de passe et sa vérification ne correspondent pas." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Le mot de passe doit avoir au moins 6 caractères." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Adresse de courrier électronique invalide." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "" "Une erreur s'est produite pendant l'enregistrement de vos modifications." #: www/profile.php:129 msgid "Changes saved." msgstr "Modifications enregistrées." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 #, fuzzy msgid "Failed to delete SSL client certificate." msgstr "Impossible d'effacer le tag" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "Vous devez saisir un nom d'utilisateur, un mot de passe, un nom et " "un e-mail" #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "Ce nom d'utilisateur existe déjà, veuillez en choisir un autre." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Ce nom d'utilisateur existe déjà, veuillez en choisir un autre." #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "Ce nom d'utilisateur n'est pas valide (trop court, trop long, caractères " "interdits...), Merci de faire un autre choix." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "Adresse de courrier électronique invalide. Veuillez réessayer." #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "La réponse antispam n'est pas valide. Veuillez réessayer." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Votre inscription a bien été prise en compte !" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Enregistrement raté. Veuillez rééssayer." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Signets ajoutés récemment à %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Recherche de signets" #: www/search.php:89 msgid "Search Results" msgstr "Résultats de recherche" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "Insatisfait ? Vous pouvez aussi essayer notre " #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "Lien entre tags créé." #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "Impossible de créer le lien" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "Ajout d'un lien entre tags" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "Effacement d'un lien entre tags" #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "Impossible d'effacer le lien" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "Effacer un lien entre tags" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "Editer un lien entre tags" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "Editer la description commune du tag" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "Impossible de mettre à jour la description commune du tag" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "Tag effacé" #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "Impossible d'effacer le tag" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "Description du tag mise à jour" #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "Impossible de mettre à jour la description du tag" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "Tag renommé" #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "Erreur dans le renommage du tag" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "Utilisateurs" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Utilisateur enlevé de vos contacts" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Utilisateur ajouté à vos contacts" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Mes Contacts" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "L'utilisation de l'API requiert une authentification." #: www/gsearch/index.php:51 msgid "Come back to " msgstr "Revenir à" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "Conseil pour admin:" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" "Pour rafraîchir manuellement le moteur de Google Custom Search, allez à :" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" "Si aucun résultat apparaît, vérifier que toutes les urls sont valides dans " "la section admin." #~ msgid "Add this tag to the query" #~ msgstr "Ajouter ce tag à la requête" #~ msgid "Last Users" #~ msgstr "Derniers utilisateurs" #, fuzzy #~ msgid "Watched by" #~ msgstr "Consultés" #~ msgid "URL" #~ msgstr "URL" #~ msgid "for" #~ msgstr "pour" #~ msgid "Recent Bookmarks" #~ msgstr "Signets récents" #~ msgid "plus" #~ msgstr "plus" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Enregistrez-vous maintenant pour poster vos " #~ "propres signets sur %s !" #~ msgid "" #~ "Semantic " #~ "Scuttle is licensed under the GNU General Public " #~ "License (you can host it on your own web server)." #~ msgstr "" #~ "Semantic " #~ "Scuttle, sous license GNU General Public " #~ "License (vous pouvez donc l'héberger sur votre propre serveur)." #~ msgid "edit" #~ msgstr "éditer" #~ msgid "User with username %s not was not found" #~ msgstr "L'utilisateur %s n'a pas été trouvé." #~ msgid "%s Bookmarks" #~ msgstr "Signets de %s" #~ msgid "E-mail" #~ msgstr "E-mail" semanticscuttle-0.98.5+dfsg/data/locales/hi_IN/000077500000000000000000000000001227405131600212655ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/hi_IN/LC_MESSAGES/000077500000000000000000000000001227405131600230525ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/hi_IN/LC_MESSAGES/messages.mo000066400000000000000000000537431227405131600252320ustar00rootroot00000000000000   x <SnhWg/  $,5 b pz%  tf\N"'@O dot{ %@G.d  11 J Ucxa"h!#!  / L< Q   &K+ w%j#4 X f p~',   $-5=E LXv&   \FM^>mY)&P=U(.WHC9h5 Rs| @+ )5)_(3HG .e    ( !!'!$"#E0#,v&9&'&((*)%*5O*<*?* +# +0+ D+3Q+#++!H,j,6},9,o,5^-+-@-`.$b/0:^11L1"2%#2I2`2s2522o2<3 454Z 5f55y5i56L677".7AQ727(7872(8[8n888 d:sq:O:}5;O;<</<<===="==8>(?/E? u??;@c[@ @ @L@&AlAFBfB&BBlBm*C1C"CC& D93DmD}D DDDDkDdEbzE"E<F=F+PF+|FFNG>aGGG@_HH.uII VNtVVPV8'W/`WRW_=G) s6(7K 1MFB';km`?y024 Xd lNc^[R]SrjfA8a%,Q-v\~P}Hguw{UWYL J"bqhE&/o!n95#*T$ZC<e3D>+xztIO|@:pi.V and %2$s%1$s others%3$s and %s1 other%s%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAddress was not foundAll TagsAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Are you sure?AvailableBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedCopyCould not open XML inputCritical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkError while saving your bookmarkExport your bookmarks from your browser to a fileFailed to delete bookmarkFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordHistoryHistory for %sHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLastLineLog InLog OutMember SinceMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...New PasswordNew password generated and sent to %sNextNoNo bookmarks availableNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Personal DetailsPopular TagsPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRecent TagsRecent bookmarks posted to %sRegisterRegistration failed. Please try again.Related TagsRemove from WatchlistRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSelect the default privacy setting for your imported bookmarksShared with Watch ListSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksTagsThe details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This username already exists, please make another choice.TitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.User added to your watchlistUser removed from your watchlistUsernameUsername was not specifiedWatched ByWatchingXML error: %s at line %dYesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksbookmarkbookmarksbymessage_die() was called multiple times.my bookmarksmy watchlistthis user's bookmarksProject-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-04-16 21:56-0800 Last-Translator: Marcus Campbell Language-Team: hi-IN Debashish Chakrabarty Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Hindi X-Poedit-Country: India Plural-Forms: nplurals=2; plural=(n != 1); तथा %2$s%1$s अन्य%3$s तथा %s1 अन्य%s%1$s में प्रायः सभी del.icio.us एपीआई का समर्थन मिलता है. उस तंत्र के लिए बनाए गए प्रायः सभी औजारों को %1$s के लिए कार्य करने लायक परिवर्धित किया जा सकता है. यदि आपको कोई औजार ऐसा मिलता है जो आपको एपीआई पता बदलने नहीं देता है तो उसके सृजक को इस विन्यास को जोड़ने के लिए कहें. कौन जाने वे ऐसा भी कर लें.%s खाते की जानकारी%s: हालिया पृष्ठ-स्मृतिअपने पृष्ठ-स्मृति कड़ियों को सबके साथ, अपने निगरानी सूची के मित्रों के साथ साझा करें या निजी इस्तेमाल करेंअपनी पसंद की कड़ियों को कहीं से भी पहुँच योग्य बनाने के लिए एक ही स्थल परसंचितकरें.अपनी पृष्ठ-स्मृति कड़ियों को किसी फोल्डर में ठूंसने के बजाए चाहे जितने लेबलों के साथटैग कर सकते हैं.के बारे मेंखाते की जानकारीपृष्ठ-स्मृति जोड़ेंएक पृष्ठ-स्मृति जोड़ेंनिगरानी सूची में जोड़ेंपतापता नहीं मिलासभी टैगवर्णएक गंभीर त्रुटि हुईएक त्रुटि हुईआपके द्वारा किए गए परिवर्तनों को सहेजने के दौरान त्रुटि हुई.पक्की बात ना?उपलब्धपृष्ठ-स्मृति आयातित.पृष्ठ-स्मृति सहेजी गईपहचान चिह्न %s युक्त पृष्ठ-स्मृति नहीं मिलापृष्ठ-स्मृति चिह्नकपृष्ठ-स्मृतियाँपरिवर्तनों को सहेजा गया.अपने कम्प्यूटर में सहेजे गए पृष्ठ-स्मृति फ़ाइलों को ढूंढने के लिए ब्राउज़... पर क्लिक करें. फ़ाइल का अधिकतम आकार 1मे.बा. तक हो सकता है.इस फ़ाइल को अपने कम्प्यूटर पर ढूंढने के लिए ब्राउज़... पर क्लिक करें. फ़ाइल का अधिकतम आकार 1 मे.बा. तक हो सकता हैपृष्ठ-स्मृति आयात चालू करने के लिए आयात पर क्लिक करें, इसमें कुछ समय लग सकता हैअल्पविराम से अलग की गईनक़ल करेंएक्सएमएल इनपुट खोल नहीं सकतागंभीर त्रुटिजरूरी जानकारीडिबग मोडतारीख़मिटाएँपृष्ठ-स्मृति मिटाएँवर्णनकूटशब्द के लिए मुझसे 2 सप्ताह तक नहीं पूछेंनिम्न पृष्ठ-स्मृति चिह्नकों में से किसी एक को अपने ब्राउज़र के पृष्ठ-स्मृति में खींच लाएँ व जब भी आप %s पर हों व कोई पृष्ठ जोड़ना चाहेँ तो उस पर क्लिक करेंईमेलईमेल पता वैध नहीं है.ईमेल पता वैध नहीं है.संपादनपृष्ठ-स्मृति संपादनपृष्ठ-स्मृति सहेजने के दौरान त्रुटि हुईअपने ब्राउज़र से अपने पृष्ठ-स्मृति को एक फ़ाइल में निर्यात करेंपृष्ठ-स्मृति मिटाने में असफलफ़ाइलप्रथमभूला कूटशब्दअपना कूटशब्द भूल गये हैं?विद्वानों का खजानासामान्य त्रुटिसामान्य सर्वर त्रुटिनया कूटशब्द बनायेंइतिहास%s का इतिहासगृहपृष्ठअगर आप अपना कूटशब्द भूल गये हों तो %s आपके एक नया कूटशब्द बना सकता है। खाते से संबद्ध अपना उपयोक्ता नाम और ईमेल पता नीचे प्रविष्ट करें और हम आपको एक नया कूटशब्द ईमेल कर देंगे.आयातब्राउज़र फ़ाइल से पृष्ठ-स्मृति को आयात करेंdel.icio.us से पृष्ठ-स्मृति आयात करेंपृष्ठ-स्मृति को पृष्ठ-स्मृति फ़ाइल से आयात करेंdel.icio.us से पृष्ठ-स्मृति आयात करेंजानकारीनिर्देशइंटरनेट एक्सप्लोरर, मॉज़िल्ला फ़ॉयरफ़ॉक्स तथा नेटस्केपइंटरनेट एक्सप्लोरर: फ़ाइल > आयात व निर्यात... > पृष्ठ-स्मृतियाँ निर्यात करेंअंतिमपंक्तिलॉग इनलॉग आउटसदस्यता अवधिमॉज़िल्ला फ़ॉयरफ़ॉक्स: पृष्ठ-स्मृतियाँ > पृष्ठ-स्मृति प्रबंधन... > फ़ाइल > निर्यात...मेरी पृष्ठ-स्मृतियाँमेरा प्रोफ़ाइलमेरी निगरानी सूचीनामनेटस्केप: पृष्ठ-स्मृतियाँ > पृष्ठ-स्मृति प्रबंधन... > औजार > निर्यात...नया कूटशब्दनया कूटशब्द बना कर %s को भेज दिया गया है.अगलानहींकोई पृष्ठ-स्मृति उपलब्ध नहींइस उपयोक्ता तथा ईमेल पते से मेल खाता कोई जोड़ नहीं मिला.इस से मेल खाता कोई उपयोक्ता नाम नहीं मिला.उपलब्ध नहींनहीं मिला%d में से पृष्ठ %dकूटशब्दकूटशब्द तथा उसका पुष्टिकरण मेल नहीं खातेकूटशब्द को कम से कम 6 अक्षर लंबा होना चाहिएव्यक्तिगत जानकारीलोकप्रिय टैगलोकप्रियता%s को पोस्ट करें%s को पोस्ट करें (पॉप-अप)पिछलागोपनीयतानिजीप्रोफ़ाइलसार्वजनिकहालिया टैग%s को पोस्ट की गईं हालिया पृष्ठ-स्मृतियाँ पंजीकरणपंजीकरण असफल. कृपया फिर से कोशिश करें.सम्बंधित टैगनिगरानी सूची से मिटाएँआवश्यकएसक्यूएल त्रुटिपरिवर्तन सहेजेंपरिणाम एक्सएमएल को अपने कम्प्यूटर पर सहेजेंढूंढेंपृष्ठ-स्मृतियाँ ढूंढेंखोज परिणामआपके आयातित पृष्ठ-स्मृति के डिफ़ॉल्ट गोपनीयता विन्यास चुनेंनिगरानी सूची के साथ साझामुफ़्त %s खाता बनाने के लिए यहाँ साइन करें. नीचे निवेदित सभी जानकारियाँ आवश्यक हैंइस आधार पर छांटें:अपनी मनपसंद पृष्ठ-स्मृतियाँ सहेजें, साझा करें और टैग करेंटैगआपने जो विवरण भरे हैं वे गलत हैं. कृपया पुनः प्रयास करें.निवेदित यूआरएल को प्रोसेस नहीं किया जा सकाइस सर्वर पर निवेदित यूआरएल नहीं मिलाआपकी पृष्ठ-स्मृति को सहेजने के दौरान एक त्रुटि हुई. कृपया फिर से कोशिश करें या प्रशासक से सम्पर्क साधें.आपका नया कूटशब्द बनाने समय कोई त्रुटि हुई है। कृपया पुनः प्रयास करें।यह उपयोक्ता नाम पहले ही मौजूद है, कृपया कोई दूसरा चुनें.शीर्षकअपनी पृष्ठ-स्मृतियाँ सुरक्षित रखने के लिये, जब आप अगली बार लॉगिन करें तो अपने प्रोफाईल में जाकर अपना कूटशब्द अवश्य बदल लें.उपयोक्ता को आपकी निगरानी सूची में जोड़ाआपकी निगरानी सूची से उपयोक्ता को मिटाया गयाउपयोक्ता नामउपयोक्ता नाम निर्दिष्ट नहीं हैद्वारा देखा गयानिगरानी मेंएक्सएमएल त्रुटि: %s में पंक्ति %d परहाँआपको उपयोक्ता नाम, कूटशब्द तथा ईमेल पता भरना आवश्यक हैआपको इस पृष्ठ-स्मृति को मिटाने की अनुमति नहीं है.आप इस पृष्ठ-स्मृति को संपादित नही कर सकतेआप इस पृष्ठ-स्मृति को पहले ही पेश कर चुके हैंअब आप लॉग आउट हैंआप सफलता पूर्वक पंजीकृत हो गए हैं. बधाई!पृष्ठ-स्मृति जोड़ने से पहले आपका लॉगइन होना आवश्यक है.ईमेल पता भरना आवश्यक है.आपका उपयोक्ता नाम प्रविष्ट करना ज़रूरी है.आपकी पृष्ठ-स्मृति के लिए एक शीर्षक तथा एक पता होना आवश्यक हैआपका नया कूटशब्द हैःसभी पृष्ठ-स्मृतियाँपृष्ठ-स्मृतिपृष्ठ-स्मृतियाँद्वाराmessage_die() को कई मर्तबा काल किया गया.मेरी पृष्ठ-स्मृतियाँमेरी निगरानी सूचीइस उपयोक्ता की पृष्ठ-स्मृतियाँsemanticscuttle-0.98.5+dfsg/data/locales/hi_IN/LC_MESSAGES/messages.po000066400000000000000000001600311227405131600252220ustar00rootroot00000000000000# Scuttle hi-IN Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # Debashish Chakrabarty # Ravishankar Shrivastava # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-04-16 21:56-0800\n" "Last-Translator: Marcus Campbell \n" "Language-Team: hi-IN Debashish Chakrabarty \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Hindi\n" "X-Poedit-Country: India\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() को कई मर्तबा काल किया गया." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "एसक्यूएल त्रुटि" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "पंक्ति" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "फ़ाइल" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "जानकारी" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "जरूरी जानकारी" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "एक त्रुटि हुई" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "सामान्य त्रुटि" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "एक गंभीर त्रुटि हुई" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "गंभीर त्रुटि" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "डिबग मोड" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "अपनी पसंद की कड़ियों को कहीं से भी पहुँच योग्य बनाने के लिए एक ही स्थल परसंचितकरें." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "अपने पृष्ठ-स्मृति कड़ियों को सबके साथ, अपने निगरानी सूची के मित्रों के साथ साझा करें या निजी इस्तेमाल करें" #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "अपनी पृष्ठ-स्मृति कड़ियों को किसी फोल्डर में ठूंसने के बजाए चाहे जितने लेबलों के " "साथटैग कर सकते हैं." #: data/templates/default/about.tpl.php:9 #, fuzzy msgid "Register now" msgstr "पंजीकरण" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "विद्वानों का खजाना" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s में प्रायः सभी del.icio.us " "एपीआई का समर्थन " "मिलता है. उस तंत्र के लिए बनाए गए प्रायः सभी औजारों को %1$s के लिए कार्य करने लायक " "परिवर्धित किया जा सकता है. यदि आपको कोई औजार ऐसा मिलता है जो आपको एपीआई पता " "बदलने नहीं देता है तो उसके सृजक को इस विन्यास को जोड़ने के लिए कहें. कौन जाने वे ऐसा भी कर " "लें." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "उपयोक्ता नाम" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "पृष्ठ-स्मृति" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "पक्की बात ना?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "मिटाएँ" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "निर्देश" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "शीर्षक" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "वर्णन" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "पृष्ठ-स्मृति चिह्नक" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "निम्न पृष्ठ-स्मृति चिह्नकों में से किसी एक को अपने ब्राउज़र के पृष्ठ-स्मृति में खींच लाएँ व जब भी " "आप %s पर हों व कोई पृष्ठ जोड़ना चाहेँ तो उस पर क्लिक करें" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "निम्न पृष्ठ-स्मृति चिह्नकों में से किसी एक को अपने ब्राउज़र के पृष्ठ-स्मृति में खींच लाएँ व जब भी " "आप %s पर हों व कोई पृष्ठ जोड़ना चाहेँ तो उस पर क्लिक करें" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "%s को पोस्ट करें" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "%s को पोस्ट करें (पॉप-अप)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "इस आधार पर छांटें:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "तारीख़" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "प्रथम" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "पिछला" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "अगला" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "अंतिम" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "%d में से पृष्ठ %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "टैग" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "संपादन" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "द्वारा" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr " तथा %s1 अन्य%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " तथा %2$s%1$s अन्य%3$s" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "पृष्ठ-स्मृति को पृष्ठ-स्मृति फ़ाइल से आयात करें" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "नक़ल करें" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "आप इस पृष्ठ-स्मृति को संपादित नही कर सकते" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "कोई पृष्ठ-स्मृति उपलब्ध नहीं" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "के बारे में" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "पृष्ठ-स्मृति" msgstr[1] "पृष्ठ-स्मृतियाँ" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "लोकप्रिय टैग" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "लोकप्रिय टैग" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "पता" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "आवश्यक" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "निजी" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "टैग" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "अल्पविराम से अलग की गई" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "गोपनीयता" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "सार्वजनिक" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "निगरानी सूची के साथ साझा" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "निजी" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "पृष्ठ-स्मृति मिटाएँ" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "आयात" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "पृष्ठ-स्मृति को पृष्ठ-स्मृति फ़ाइल से आयात करें" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "इंटरनेट एक्सप्लोरर, मॉज़िल्ला फ़ॉयरफ़ॉक्स तथा नेटस्केप" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "del.icio.us से पृष्ठ-स्मृति आयात करें" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "नाम" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "ईमेल" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "मिटाएँ" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "खाते की जानकारी" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "उपयोक्ता नाम" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "नया कूटशब्द" #: data/templates/default/editprofile.tpl.php:22 #, fuzzy msgid "Confirm Password" msgstr "नया कूटशब्द सत्यापित करें" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "ईमेल" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "निजी" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "नया कूटशब्द बनायें" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "व्यक्तिगत जानकारी" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "गृहपृष्ठ" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "परिवर्तन सहेजें" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 #, fuzzy msgid "Actions" msgstr "निर्देश" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "मेरी पृष्ठ-स्मृतियाँ" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "नहीं मिला" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "इस सर्वर पर निवेदित यूआरएल नहीं मिला" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "सामान्य सर्वर त्रुटि" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "निवेदित यूआरएल को प्रोसेस नहीं किया जा सका" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "निगरानी सूची के साथ साझा" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "निर्देश" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "del.icio.us के निर्यात पृष्ठ पर " "लॉगइन करें" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "परिणाम एक्सएमएल को अपने " "कम्प्यूटर पर सहेजें" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "इस फ़ाइल को अपने कम्प्यूटर पर ढूंढने के लिए ब्राउज़... पर क्लिक करें. फ़ाइल का " "अधिकतम आकार 1 मे.बा. तक हो सकता है" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "आपके आयातित पृष्ठ-स्मृति के डिफ़ॉल्ट गोपनीयता विन्यास चुनें" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "पृष्ठ-स्मृति आयात चालू करने के लिए आयात पर क्लिक करें, इसमें कुछ समय लग सकता है" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "अपने ब्राउज़र से अपने पृष्ठ-स्मृति को एक फ़ाइल में निर्यात करें" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "इंटरनेट एक्सप्लोरर: फ़ाइल > आयात व निर्यात... > पृष्ठ-स्मृतियाँ निर्यात करें" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "मॉज़िल्ला फ़ॉयरफ़ॉक्स: पृष्ठ-स्मृतियाँ > पृष्ठ-स्मृति प्रबंधन... > फ़ाइल > " "निर्यात..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "नेटस्केप: पृष्ठ-स्मृतियाँ > पृष्ठ-स्मृति प्रबंधन... > औजार > निर्यात..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "अपने कम्प्यूटर में सहेजे गए पृष्ठ-स्मृति फ़ाइलों को ढूंढने के लिए ब्राउज़... पर क्लिक " "करें. फ़ाइल का अधिकतम आकार 1मे.बा. तक हो सकता है." #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "कूटशब्द" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "कूटशब्द के लिए मुझसे 2 सप्ताह तक नहीं पूछें" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "लॉग इन" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "अपना कूटशब्द भूल गये हैं?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "अगर आप अपना कूटशब्द भूल गये हों तो %s आपके एक नया कूटशब्द बना सकता है। खाते से संबद्ध " "अपना उपयोक्ता नाम और ईमेल पता नीचे प्रविष्ट करें और हम आपको एक नया कूटशब्द ईमेल कर देंगे." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "नया कूटशब्द बनायें" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "सदस्यता अवधि" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "निगरानी में" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "द्वारा देखा गया" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "पृष्ठ-स्मृतियाँ" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "मेरी पृष्ठ-स्मृतियाँ" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "मुफ़्त %s खाता बनाने के लिए यहाँ साइन करें. नीचे निवेदित सभी जानकारियाँ आवश्यक हैं" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "पंजीकरण" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "ढूंढें" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "पंक्ति" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "इस उपयोक्ता की पृष्ठ-स्मृतियाँ" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "मेरी पृष्ठ-स्मृतियाँ" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "मेरी निगरानी सूची" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "सभी पृष्ठ-स्मृतियाँ" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "ढूंढें" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "सम्बंधित टैग" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "मिटाएँ" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "हालिया टैग" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "लोकप्रिय टैग" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "सम्बंधित टैग" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "हालिया टैग" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "सम्बंधित टैग" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "ढूंढें" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "कोई पृष्ठ-स्मृति नहीं मिली" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "सम्बंधित टैग" msgstr[1] "सम्बंधित टैग" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "मिटाएँ" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "वर्णन" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "पृष्ठ-स्मृति" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "निगरानी सूची से मिटाएँ" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "निगरानी सूची से मिटाएँ" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "निगरानी सूची में जोड़ें" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "संपादन" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "हाँ" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "नहीं" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "उपयोक्ता नाम" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "वर्ण" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "लोकप्रियता" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "गृहपृष्ठ" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 #, fuzzy msgid "Watchlist" msgstr "निगरानी सूची" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "प्रोफ़ाइल" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "एक पृष्ठ-स्मृति जोड़ें" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "लॉग आउट" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "प्रोफ़ाइल" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "आपको इस पृष्ठ-स्मृति को मिटाने की अनुमति नहीं है." #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "पृष्ठ-स्मृति मिटाने में असफल" #: www/alltags.php:50 msgid "All Tags" msgstr "सभी टैग" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, fuzzy, php-format msgid "User with username %s was not found" msgstr "%s नाम का कोई भी उपयोक्ता नहीं मिला" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "पृष्ठ-स्मृति मिटाने में असफल" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "आपकी पृष्ठ-स्मृति के लिए एक शीर्षक तथा एक पता होना आवश्यक है" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "पृष्ठ-स्मृति सहेजी गई" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "आपकी पृष्ठ-स्मृति को सहेजने के दौरान एक त्रुटि हुई. कृपया फिर से कोशिश करें या प्रशासक से " "सम्पर्क साधें." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "पृष्ठ-स्मृति जोड़ें" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "पृष्ठ-स्मृति जोड़ने से पहले आपका लॉगइन होना आवश्यक है." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "मेरी पृष्ठ-स्मृतियाँ" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "पृष्ठ-स्मृति संपादन" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "पहचान चिह्न %s युक्त पृष्ठ-स्मृति नहीं मिला" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "आप इस पृष्ठ-स्मृति को संपादित नही कर सकते" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "पृष्ठ-स्मृति सहेजने के दौरान त्रुटि हुई" #: www/history.php:61 msgid "History" msgstr "इतिहास" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "%s का इतिहास" #: www/history.php:84 msgid "Address was not found" msgstr "पता नहीं मिला" #: www/import.php:47 msgid "Could not open XML input" msgstr "एक्सएमएल इनपुट खोल नहीं सकता" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "एक्सएमएल त्रुटि: %s में पंक्ति %d पर" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "del.icio.us से पृष्ठ-स्मृति आयात करें" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "आप इस पृष्ठ-स्मृति को पहले ही पेश कर चुके हैं" #: www/import.php:104 msgid "Bookmark imported." msgstr "पृष्ठ-स्मृति आयातित." #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "आप इस पृष्ठ-स्मृति को पहले ही पेश कर चुके हैं" #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "कोई पृष्ठ-स्मृति नहीं मिली" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "पृष्ठ-स्मृति आयातित." #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "ब्राउज़र फ़ाइल से पृष्ठ-स्मृति को आयात करें" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "अब आप लॉग आउट हैं" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: हालिया पृष्ठ-स्मृति" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: हालिया पृष्ठ-स्मृति" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "अपनी मनपसंद पृष्ठ-स्मृतियाँ सहेजें, साझा करें और टैग करें" #: www/index.php:97 #, fuzzy msgid "All Bookmarks" msgstr "सभी पृष्ठ-स्मृतियाँ" #: www/jsScuttle.php:71 msgid "Available" msgstr "उपलब्ध" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "उपलब्ध नहीं" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "आपने जो विवरण भरे हैं वे गलत हैं. कृपया पुनः प्रयास करें." #: www/password.php:36 msgid "You must enter your username." msgstr "आपका उपयोक्ता नाम प्रविष्ट करना ज़रूरी है." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "ईमेल पता भरना आवश्यक है." #: www/password.php:48 msgid "No matches found for that username." msgstr "इस से मेल खाता कोई उपयोक्ता नाम नहीं मिला." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "इस उपयोक्ता तथा ईमेल पते से मेल खाता कोई " "जोड़ नहीं मिला." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "आपका नया कूटशब्द बनाने समय कोई त्रुटि हुई है। कृपया पुनः प्रयास करें।" #: www/password.php:63 msgid "Your new password is:" msgstr "आपका नया कूटशब्द हैः" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "अपनी पृष्ठ-स्मृतियाँ सुरक्षित रखने के लिये, जब आप अगली बार लॉगिन करें तो अपने प्रोफाईल में " "जाकर अपना कूटशब्द अवश्य बदल लें." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%s खाते की जानकारी" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "नया कूटशब्द बना कर %s को भेज दिया गया है." #: www/password.php:75 msgid "Forgotten Password" msgstr "भूला कूटशब्द" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "उपयोक्ता नाम निर्दिष्ट नहीं है" #: www/profile.php:70 msgid "My Profile" msgstr "मेरा प्रोफ़ाइल" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "कूटशब्द तथा उसका पुष्टिकरण मेल नहीं खाते" #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "कूटशब्द को कम से कम 6 अक्षर लंबा होना चाहिए" #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "ईमेल पता वैध नहीं है." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "आपके द्वारा किए गए परिवर्तनों को सहेजने के दौरान त्रुटि हुई." #: www/profile.php:129 msgid "Changes saved." msgstr "परिवर्तनों को सहेजा गया." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "आपको उपयोक्ता नाम, कूटशब्द तथा ईमेल पता " "भरना आवश्यक है" #: www/register.php:56 #, fuzzy msgid "This username has been reserved, please make another choice." msgstr "यह उपयोक्ता नाम पहले ही मौजूद है, कृपया कोई दूसरा चुनें." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "यह उपयोक्ता नाम पहले ही मौजूद है, कृपया कोई दूसरा चुनें." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "यह उपयोक्ता नाम पहले ही मौजूद है, कृपया कोई दूसरा चुनें." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "ईमेल पता वैध नहीं है." #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "ईमेल पता वैध नहीं है." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "आप सफलता पूर्वक पंजीकृत हो गए हैं. बधाई!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "पंजीकरण असफल. कृपया फिर से कोशिश करें." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "%s को पोस्ट की गईं हालिया पृष्ठ-स्मृतियाँ " #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "पृष्ठ-स्मृतियाँ ढूंढें" #: www/search.php:89 msgid "Search Results" msgstr "खोज परिणाम" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "पृष्ठ-स्मृति मिटाने में असफल" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "पृष्ठ-स्मृति मिटाने में असफल" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "पृष्ठ-स्मृति मिटाने में असफल" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "पृष्ठ-स्मृति मिटाने में असफल" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "पृष्ठ-स्मृति मिटाने में असफल" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "उपयोक्ता नाम" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "आपकी निगरानी सूची से उपयोक्ता को मिटाया गया" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "उपयोक्ता को आपकी निगरानी सूची में जोड़ा" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "मेरी निगरानी सूची" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "User with username %s not was not found" #~ msgstr "%s नाम का कोई भी उपयोक्ता नहीं मिला" #~ msgid "Recent Bookmarks" #~ msgstr "हालिया पृष्ठ-स्मृतियाँ" #~ msgid "for" #~ msgstr "के लिए" #~ msgid "%s Bookmarks" #~ msgstr "%s पृष्ठ-स्मृतियाँ" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "तुरंत पंजीकृत हों %s का इस्तेमाल " #~ "करने के लिए!" #~ msgid "" #~ "%s is based on an " #~ "open-source project licensed under the GNU " #~ "General Public License. This means you can host it on your own web " #~ "server for free, whether it is on the Internet, a private network or just " #~ "your own computer." #~ msgstr "" #~ "%s एक मुक्त स्रोत " #~ "परियोजना पर आधारित है तथा इसेग्नू जनरल पब्लिक लाइसेंस के तहत जारी किया गया है. इसका अर्थ है कि आप इसे अपने स्वयं के वेब सर्वर पर चाहे " #~ "इंटरनेट पर हो या निजी नेटवर्क पर या आपके व्यक्तिगत कम्प्यूटर पर, होस्ट कर सकते हैं." #~ msgid "URL" #~ msgstr "यूआरएल" #~ msgid "E-mail" #~ msgstr "ईमेल" semanticscuttle-0.98.5+dfsg/data/locales/it_IT/000077500000000000000000000000001227405131600213075ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/it_IT/LC_MESSAGES/000077500000000000000000000000001227405131600230745ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/it_IT/LC_MESSAGES/messages.mo000066400000000000000000000176571227405131600252600ustar00rootroot00000000000000]xb Ww g 7 = J Y j r {  ,  t fc N  ) . G V k v {  % G N S a 1     ! #!= _/l     .7?GOV&_   \&->>}(.W9R3. J(X ;Zj-   "!5<r rism( @KPX j)vAHQd3  $ A b-m   "0 GRZbj s~  RFLE\*  Y2b61,^-pB+ ?MP< )%V(5/L&9Q !6Y>1@ZWTD'A:=N3G0*XU2JSI].7 84$["R; FK-OCE,#\H%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s: Recent bookmarksStore all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAll TagsAn critical error occuredAn error occuredAn error occurred while saving your changes.Bookmark savedBookmarkletClick Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedCopyCould not open XML inputCritical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailEditEdit BookmarkError while saving your bookmarkExport your bookmarks from your browser to a fileFileGeek StuffGeneral ErrorGeneral server errorHomepageImportImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInstructionsInternet Explorer, Mozilla Firefox and NetscapeLineLog InLog OutMember SinceNameNew PasswordNextNo bookmarks availablePage %d of %dPasswordPopular TagsPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRegisterRegistration failed. Please try again.Related TagsRemove from WatchlistRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSelect the default privacy setting for your imported bookmarksShared with Watch ListSort by:TagsThe requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.This username already exists, please make another choice.TitleUsernameUsername was not specifiedXML error: %s at line %dYou have now logged outYou must be logged in before you can add bookmarks.Your bookmark must have a title and an addressall bookmarksmessage_die() was called multiple times.my bookmarksProject-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-03-18 21:51-0800 Last-Translator: Marcus Campbell Language-Team: it-IT Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Italian X-Poedit-Country: ITALY Plural-Forms: nplurals=2; plural=(n != 1); %1$s supporta la maggioranza delle del.icio.us API. Praticamente tutti i tools progettati per de.icio.us possono essere modificati per funzionare con %1$s. Se trovi un tool che non lascia variare indirizzo API, chiedi a chiedi a chi lo ha realizzato di aggiungere questo settaggio.%s: Preferiti recentiArchivia i tuoi Preferiti in un unico luogo, accessibile ovunque tu sia. Tagga i tuoi Preferiti con quante etichette vuoi, anziché perdere tempo con le cartelle.InformazioniAggiungi preferitoAggiungi un preferitoMetti Sotto OsservazioneIndirizzoTutti i TagsSi è verificato un errore criticoSi è verificato un erroreSi è verificato un errore salvando le tue modifiche.Preferito salvatoBookmarkletClicca Sfoglia... per trovare il file salvato sul tuo computer. La dimensione massima consentita è 1MBClicca Sfoglia... per trovare il file nel tuo computer. La dimensione massima accettata è 1MBClicca Importa per cominciare ad importare i preferiti; questa operazione può richiedere qualche minutoSaparati da virgolaCopiaNon posso aprire la fonte XMLErrore CriticoInformazioni ImportantiMODO DEBUGDataEliminaElimina PreferitoDescrizioneNon chiedermi la password per 2 settimaneTrascina uno dei seguenti bookmarklets tra i collegamenti del tuo browser e cliccalo ogni volta che vuoi aggiungere la pagina in cui ti trovi al tuo account %s E-mailModificaModifica PreferitoErrore salvando il preferitoEsporta i tuoi preferiti dal tuo browser ad un fileFile(Geek Stuff)Errore GeneraleErrore generale del serverHomepageImportaImporta Preferiti da del.icio.usImporta preferiti da un fileImporta preferiti da del.icio.usIstruzioniInternet Explorer, Mozilla Firefox e NetscapeLineaEntraEsciIscritto DalNomeNuova PasswordSeguenteNessun preferito disponibilePagina %d di %dPasswordTags Più UtilizzatiAggiungi a %sAggiungi a %s (Pop-up)PrecedentePrivacyPrivatoProfiloPubblicoRegistratiRegistrazione fallita. Riprova.Tags CorrelatiRimuovi da Sotto OsservazioneObbligatorioErrore SQLSalva ModificheSalva il file XML nel tuo computerCercaCerca PreferitiSeleziona il livello di privacy predefinito per i preferiti importatiCondiviso con chi tieni sotto osservazioneOrdinato per:EtichetteURL non eseguibileURL non trovataSi è verificato un errore salvando il tuo preferito. Riprova o contatta l'amministratoreQuesto nome utente esiste già, scegline un altro.TitoloUsernameNome utente non specificatoErrore XML: %s alla linea %dSei uscito dal sistemaDevi essere loggato per poter aggiungere dei preferitiIl preferito deve avere un titolo ed un indirizzotutti i preferitimessage_die() è stato richiamato più volte.i miei preferitisemanticscuttle-0.98.5+dfsg/data/locales/it_IT/LC_MESSAGES/messages.po000066400000000000000000001321421227405131600252460ustar00rootroot00000000000000# Scuttle it-IT Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-03-18 21:51-0800\n" "Last-Translator: Marcus Campbell \n" "Language-Team: it-IT \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Italian\n" "X-Poedit-Country: ITALY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() è stato richiamato più volte." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "Errore SQL" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Linea" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "File" #: src/SemanticScuttle/functions.php:215 #, fuzzy msgid "Information" msgstr "Informazioni" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Informazioni Importanti" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Si è verificato un errore" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Errore Generale" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Si è verificato un errore critico" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Errore Critico" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "MODO DEBUG" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Archivia i tuoi Preferiti in un unico luogo, accessibile " "ovunque tu sia. " #: data/templates/default/about.tpl.php:7 #, fuzzy msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Condividi i tuoi Preferiti con gli altri o mantinili " "privati. Potrai restare aggiornato sui Preferiti aggiunti da altri utenti." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Tagga i tuoi Preferiti con quante etichette vuoi, anziché " "perdere tempo con le cartelle." #: data/templates/default/about.tpl.php:9 #, fuzzy msgid "Register now" msgstr "Registrati" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "(Geek Stuff)" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s supporta la maggioranza delle del.icio.us API. Praticamente tutti i tools progettati per de.icio.us possono " "essere modificati per funzionare con %1$s. Se trovi un tool che non lascia " "variare indirizzo API, chiedi a chiedi a chi lo ha realizzato di aggiungere " "questo settaggio." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Username" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "preferito" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Elimina" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Istruzioni" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Titolo" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Descrizione" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Trascina uno dei seguenti bookmarklets tra i collegamenti del tuo browser e " "cliccalo ogni volta che vuoi aggiungere la pagina in cui ti trovi al tuo " "account %s " #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Trascina uno dei seguenti bookmarklets tra i collegamenti del tuo browser e " "cliccalo ogni volta che vuoi aggiungere la pagina in cui ti trovi al tuo " "account %s " #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Aggiungi a %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Aggiungi a %s (Pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Ordinato per:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Data" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Precedente" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Seguente" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Pagina %d di %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Etichette" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Modifica" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, fuzzy, php-format msgid " and %s1 other%s" msgstr " e %s altri" #: data/templates/default/bookmarks.tpl.php:336 #, fuzzy, php-format msgid " and %2$s%1$s others%3$s" msgstr " e %s altri" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Importa preferiti da un file" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Copia" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "Non hai il permesso per modificare questo preferito" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Nessun preferito disponibile" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Informazioni" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 #, fuzzy msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "preferito" msgstr[1] "preferiti" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Tags Più Utilizzati" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Tags Più Utilizzati" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Indirizzo" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Obbligatorio" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Privato" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Etichette" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Saparati da virgola" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Privacy" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Pubblico" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Condiviso con chi tieni sotto osservazione" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privato" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Elimina Preferito" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importa" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Importa preferiti da un file" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox e Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importa preferiti da del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Nome" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "E-mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Elimina" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Username" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Nuova Password" #: data/templates/default/editprofile.tpl.php:22 #, fuzzy msgid "Confirm Password" msgstr "Conferma Nuova Password" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Privato" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Nuova Password" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Homepage" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Salva Modifiche" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 #, fuzzy msgid "Actions" msgstr "Istruzioni" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "i miei preferiti" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 #, fuzzy msgid "Not Found" msgstr "Non Trovato" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "URL non trovata" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Errore generale del server" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "URL non eseguibile" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "Condiviso con chi tieni sotto osservazione" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Istruzioni" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Fai il Log-in e vai alla export " "page di del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Salva il file XML nel tuo " "computer" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Clicca Sfoglia... per trovare il file nel tuo computer. La " "dimensione massima accettata è 1MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "Seleziona il livello di privacy predefinito per i preferiti importati" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Clicca Importa per cominciare ad importare i preferiti; questa " "operazione può richiedere qualche minuto" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Esporta i tuoi preferiti dal tuo browser ad un file" #: data/templates/default/importNetscape.tpl.php:37 #, fuzzy msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: File > Importa ed Esporta... > Esporta Preferiti" #: data/templates/default/importNetscape.tpl.php:38 #, fuzzy msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Segnalibri > Gestione Segnalibri... > File > Esporta..." #: data/templates/default/importNetscape.tpl.php:39 #, fuzzy msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Bookmarks > Gestione Bookmarks... > Strumenti > Esporta..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Clicca Sfoglia... per trovare il file salvato sul tuo computer. " "La dimensione massima consentita è 1MB" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Password" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Non chiedermi la password per 2 settimane" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Entra" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" #: data/templates/default/password.tpl.php:19 #, fuzzy msgid "Generate Password" msgstr "Nuova Password" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Iscritto Dal" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 #, fuzzy msgid "Watching" msgstr "Lista Sotto Osservazione" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 #, fuzzy msgid "Watched By" msgstr "Sotto Osservazione Di" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 #, fuzzy msgid "Bookmarks" msgstr "%s Preferiti" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "i miei preferiti" #: data/templates/default/register.tpl.php:11 #, fuzzy, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Registrati per creare un account gratuito con %s. Tutte le informazioni " "richieste sono obbligatorie." #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Registrati" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "Cerca" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "Linea" #: data/templates/default/search.menu.php:34 #, fuzzy msgid "this user's bookmarks" msgstr "%s preferiti" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "i miei preferiti" #: data/templates/default/search.menu.php:40 #, fuzzy msgid "my watchlist" msgstr "Metti Sotto Osservazione" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "tutti i preferiti" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Cerca" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "Tags Correlati" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "Elimina" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "Tags Recenti" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "Tags Più Utilizzati" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Tags Correlati" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 #, fuzzy msgid "Recent Tags" msgstr "Tags Recenti" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Tags Correlati" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "Cerca" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "Nessun preferito trovato" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Tags Correlati" msgstr[1] "Tags Correlati" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "Elimina" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "Descrizione" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "preferito" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Rimuovi da Sotto Osservazione" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Rimuovi da Sotto Osservazione" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Metti Sotto Osservazione" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "Modifica" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "Username" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 #, fuzzy msgid "Popularity" msgstr "Tags Più Utilizzati" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Homepage" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 #, fuzzy msgid "Watchlist" msgstr "Lista Sotto Osservazione" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profilo" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Aggiungi un preferito" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Esci" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "Profilo" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 #, fuzzy msgid "You are not allowed to delete this bookmark" msgstr "Non hai il permesso di eliminare questo preferito" #: www/ajaxDelete.php:41 www/edit.php:103 #, fuzzy msgid "Failed to delete bookmark" msgstr "Eliminazione del preferito fallita" #: www/alltags.php:50 msgid "All Tags" msgstr "Tutti i Tags" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, fuzzy, php-format msgid "User with username %s was not found" msgstr "L'utente %s non è stato trovato" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "Eliminazione preferito fallita" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Il preferito deve avere un titolo ed un indirizzo" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Preferito salvato" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Si è verificato un errore salvando il tuo preferito. Riprova o contatta " "l'amministratore" #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Aggiungi preferito" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Devi essere loggato per poter aggiungere dei preferiti" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 #, fuzzy msgid "My Bookmarks" msgstr "I Miei Preferiti" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Modifica Preferito" #: www/edit.php:51 #, fuzzy, php-format msgid "Bookmark with id %s not was not found" msgstr "Il preferito con id %s non è stato trovato" #: www/edit.php:57 #, fuzzy msgid "You are not allowed to edit this bookmark" msgstr "Non hai il permesso per modificare questo preferito" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Errore salvando il preferito" #: www/history.php:61 msgid "History" msgstr "" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "" #: www/history.php:84 msgid "Address was not found" msgstr "" #: www/import.php:47 msgid "Could not open XML input" msgstr "Non posso aprire la fonte XML" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "Errore XML: %s alla linea %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Importa Preferiti da del.icio.us" #: www/import.php:93 #, fuzzy msgid "You have already submitted this bookmark." msgstr "Hai già inserito questo preferito" #: www/import.php:104 #, fuzzy msgid "Bookmark imported." msgstr "Preferito importato" #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Hai già inserito questo preferito" #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "Nessun preferito trovato" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Preferito importato" #: www/importNetscape.php:117 www/importNetscape.php:122 #, fuzzy msgid "Import Bookmarks from Browser File" msgstr "Importa Preferiti da un File del Browser" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Sei uscito dal sistema" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Preferiti recenti" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Preferiti recenti" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "" #: www/index.php:97 #, fuzzy msgid "All Bookmarks" msgstr "tutti i preferiti" #: www/jsScuttle.php:71 msgid "Available" msgstr "" #: www/jsScuttle.php:74 #, fuzzy msgid "Not Available" msgstr "Nessun preferito disponibile" #: www/login.php:48 #, fuzzy msgid "The details you have entered are incorrect. Please try again." msgstr "Le informazioni che hai fornito non sono corrette. Riprova." #: www/password.php:36 msgid "You must enter your username." msgstr "" #: www/password.php:40 #, fuzzy msgid "" "You must enter your e-mail address." msgstr "" "Devi inserire un nome utente, una password, un nome ed un indirizzo " "e-mail." #: www/password.php:48 msgid "No matches found for that username." msgstr "" #: www/password.php:51 #, fuzzy msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Devi inserire un nome utente, una password, un nome ed un indirizzo " "e-mail." #: www/password.php:59 #, fuzzy msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Si è verificato un errore salvando il tuo preferito. Riprova o contatta " "l'amministratore" #: www/password.php:63 #, fuzzy msgid "Your new password is:" msgstr "Conferma Nuova Password" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" #: www/password.php:66 #, fuzzy, php-format msgid "%s Account Information" msgstr "Informazioni" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "" #: www/password.php:75 #, fuzzy msgid "Forgotten Password" msgstr "Nuova Password" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Nome utente non specificato" #: www/profile.php:70 #, fuzzy msgid "My Profile" msgstr "Profilo" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 #, fuzzy msgid "Password and confirmation do not match." msgstr "La password e la sua conferma non coincidono." #: www/profile.php:119 #, fuzzy msgid "Password must be at least 6 characters long." msgstr "La password deve essere lunga almeno 6 caratteri." #: www/profile.php:123 #, fuzzy msgid "E-mail address is not valid." msgstr "Indirizzo e-mail non valido." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Si è verificato un errore salvando le tue modifiche." #: www/profile.php:129 #, fuzzy msgid "Changes saved." msgstr "Modifiche salvate." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 #, fuzzy msgid "You must enter a username, password and e-mail address." msgstr "" "Devi inserire un nome utente, una password, un nome ed un indirizzo " "e-mail." #: www/register.php:56 #, fuzzy msgid "This username has been reserved, please make another choice." msgstr "Questo nome utente esiste già, scegline un altro." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Questo nome utente esiste già, scegline un altro." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "Questo nome utente esiste già, scegline un altro." #: www/register.php:68 #, fuzzy msgid "E-mail address is not valid. Please try again." msgstr "Indirizzo e-mail non valido." #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "Indirizzo e-mail non valido." #: www/register.php:90 #, fuzzy msgid "You have successfully registered. Enjoy!" msgstr "Ti sei registrato con successo. Buon divertimento!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Registrazione fallita. Riprova." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, fuzzy, php-format msgid "Recent bookmarks posted to %s" msgstr "Preferiti inseriti di recente" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Cerca Preferiti" #: www/search.php:89 #, fuzzy msgid "Search Results" msgstr "Risultati della Ricerca" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "Eliminazione preferito fallita" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "Eliminazione preferito fallita" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "Eliminazione preferito fallita" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "Eliminazione preferito fallita" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "Eliminazione preferito fallita" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "Username" #: www/watch.php:54 #, fuzzy msgid "User removed from your watchlist" msgstr "Utente rimosso dalla tua watchlist" #: www/watch.php:56 #, fuzzy msgid "User added to your watchlist" msgstr "Utente aggiunto alla tua watchlist" #: www/watchlist.php:104 #, fuzzy msgid "My Watchlist" msgstr "Lista Sotto Osservazione" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "User with username %s not was not found" #~ msgstr "L'utente %s non è stato trovato" #~ msgid "Recent Bookmarks" #~ msgstr "Preferiti Recenti" #~ msgid "for" #~ msgstr "per" #~ msgid "%s Bookmarks" #~ msgstr "%s Preferiti" #, fuzzy #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Registrati ora per iniziare " #~ "ad utilizzare %s!" #~ msgid "" #~ "%s is based on an " #~ "open-source project licensed under the GNU " #~ "General Public License. This means you can host it on your own web " #~ "server for free, whether it is on the Internet, a private network or just " #~ "your own computer." #~ msgstr "" #~ "%s è basato su un " #~ "progetto open-source." #~ msgid "URL" #~ msgstr "URL" #~ msgid "E-mail" #~ msgstr "E-mail" semanticscuttle-0.98.5+dfsg/data/locales/ja_JP/000077500000000000000000000000001227405131600212625ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/ja_JP/LC_MESSAGES/000077500000000000000000000000001227405131600230475ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/ja_JP/LC_MESSAGES/messages.mo000066400000000000000000000571011227405131600252170ustar00rootroot00000000000000$[,xP/gnWgs  /<MUk q ,/# 5 C#Mq%  '  ?FtUfN1%(9H ]hmt   %`g.   ,'3*[ 1  4 N g 0 $     ! !&!;!M!]!v!~!!!!R""Y"!|""#"!" " #/#L>## ##### # # #Q# ;$ H$ S$`$Ke$$ $ $%$$$$%j%#% % %"%% % & &%&'.&,V&&& && & &&&' ' ' '>'F'M' c'o'' '&' ''!'(#(*(A( J( T(\a(((( (( ))+)><){))Y)*) * 5*A* Y*e*j*=p*(*.*W+H^+9+<+f,,h,,+-0-7- T-#u----- -- -- .'.@+.+l.).3.). /(8/3a/H//./+0 A0O0 g0u0 0 0000(0 0 11111.51d1!3?3&Y3?35<56}566:7778!8=8P8i888 8$8889%9>9'T9|9'9Z9:7:N:6a:3:':7:,;H;[;<v;2;8; <,<K<==F>\>o>>N> >?*?9?X?u???? ?!???@,@;3@o@?A<OAZA A!A*BAB`B6yB*B0B C*CGC-[CQC'C0D'4D$\D'D?D-D E $E.E%DEjEEEE!E&EF F +F5F2HF{GNG<GHN6H<HHH0H{I }II II IIIIImJsJJJJoJ8KiKZDv*Y=y(4 <Bg!M k\N.6qrP,`GH']/J8U;[}mo?z Qj{@$wl2RC and %2$s%1$s others%3$s and %s1 other%s to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s and all his bookmarks and tags were deleted.%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd NoteAdd a BookmarkAdd a contact...Add new linkAdd to WatchlistAddressAddress was not foundAdminAll BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksBookmarks found: Bookmarks from other users for this tagBookmarks imported: CSV file (for spreadsheet tools)CancelChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteClose contactsComma-separatedConfirm PasswordCopyCopy this bookmark to YOUR bookmarks.Could not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Tag DescriptionEdit linkEdit the common description of this bookmarkEdit the common description of this tagEdit your personal description of this tagEmailError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag descriptionFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomeHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport StructureImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLastLast SearchesLast modification:LineLog InLog OutManage usersMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew UsersNew password generated and sent to %sNextNoNo bookmarks availableNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundNumber of bookmarks for this queryOldOnly your bookmarks for this tagOther actionsPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPopular TagsPopular Tags From All UsersPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivatePrivate NotePrivate Note on this bookmarkProfilePublicPublic/Shared/PrivateRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRemove the tag from the selectionRemove this contactRenameRename TagRename TagsRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSearch...See all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksShared with Watch ListShared with WatchlistSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksTag deletedTag description updatedTag renamedTagsTags:The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This username already exists, please make another choice.This username has been reserved, please make another choice.This username is not valid (too short, too long, forbidden characters...), please make another choice.TitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.Top of the pageType a username to add it to your contacts.UpdateUser added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersUsers managementWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted some of these bookmarks.You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbyedit common descriptionis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyouyou can freely host it on your own web server.Project-Id-Version: semanticscuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2009-05-30 02:29+0900 Last-Translator: Tadashi Jokagi Language-Team: Japanese Language: ja MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=1; plural=0 X-Poedit-Language: Japanese X-Poedit-Country: JAPAN とその他 %2$s%1$s 人%3$sとその他%sひとり%sで %s の利用を始められます!%1$s はほとんどの del.icio.us API をサポートします。そのシステムのために作成された適切なツールのほぼ全ては、代わりにAAAAで動作するように修正することができます。あなたが API アドレスを変更することができないツールを見つけたら、製作者にこの設定を加えるよう頼んでください。どうなるかわかりませんが、彼らは対応するかもしれません。%sアカウント情報%s とすべてのブックマークを削除しました。%s: 最近のブックマークブックマークをプライベートで、注目一覧で友達と、すべての人と共有します。いかなる場所からもアクセス可能な 1 つの場所に、好きなリンクをすべて保管します。フォルダーと格闘する代わりに、望むならいくつかのラベルととしてブックマークのタグを付けてください。このサイトについてアカウントの詳細操作ブックマークを追加するノートの追加ブックマーク追加連絡簿に追加する...新規リンクを追加する注目一覧に追加アドレスアドレスは見つかりません管理すべてのブックマークすべてのタグすべてのユーザーアルファベット重大なエラーが発生しましたエラーが発生しました変更の保存中にエラーです。スパム対策の回答が正しくありません。もう一度試してください。スパム対策の質問本当にしますか?利用できますブックマーク共通の説明を更新しましたブックマークをインポートしました。ブックマークを保存しましたID「%s」とブックマークは見つかりませんブックマークレットブックマークブックマーク発見: このタグのその他のユーザーのブックマークブックマークをインポートしました: CSV ファイル (スプレッドシート ツール用)取り消し変更を保存しました。コンピューター上に保存されたブックマークを見つけるために 参照... をクリックします。ファイルの最大サイズは 1MB です。コンピューター上のこのファイルを見つけるために 参照... をクリックします。ファイルの最大サイズは 1MB です。インポートする をクリックするとブックマークのインポートを開始します。しばらくかかるかもしれません。連絡簿を閉じるカンマ区切りパスワード(確認)コピーするあなたのブックマークにこのブックマークをコピーします入力の XML を開けません作成別のタグへのリンクを作成する新規リンクを作成する新しいリンクの作成:重大なエラー重要な情報デバッグモード日付削除するブックマークを削除するタグを削除するリンクを削除するリンクを作成する説明2 週間自分のパスワードを問い合わせませんブラウザーのブックマークに次のブックマークレットのうちの 1 つをドラッグします。%s にページを追加したい場合、常にそれをクリックしてください。電子メール電子メールアドレスが有効ではありません。電子メールアドレスは有効ではありません。再度試してください。編集するブックマークを編集するブックマーク共通の説明の編集タグの説明を編集するリンクを編集するこのブックマークの共通説明を編集するこのタグの共通説明を編集するこのタグの個人的に説明を編集する電子メールブックマークの保存中にエラー既存のリンク:ブックマークをエクスポートするブラウザーからファイルにブックマークをエクスポートするリンクの削除に失敗しましたブックマークの削除に失敗しましたリンクの削除に失敗しましたタグの削除に失敗しましたタグ名の変更に失敗しましたブックマーク共通の説明の更新に失敗しましたタグの説明の更新に失敗しましたファイル最初へパスワード忘れパスワードを忘れましたか?ギークスタッフ一般エラーサーバー全体のエラーパスワードを生成するブックマークに移動するHTML ファイル (ブラウザー用)履歴%s の履歴ホームホームページパスワードを忘れてしまった場合、%s は新しいパスワードを生成できます。アカウントのユーザー名と電子メールアドレスを下のフォームに入力してください。そうすれば、新しいパスワードを電子メールで送信するでしょう。インポートするブラウザーのファイルからブックマークをインポートするdel.icio.us からブックマークをインポートする構造のインポートブックマークファイルからブックマークをインポートするdel.icio.us からブックマークをインポートする情報手順Internet Explorer、Mozilla Firefox と NetscapeInternet Explorer: ファイル > インポートとエクスポート... > お気に入りのエクスポート最後へ最後の検索最終更新:行ログインログアウトユーザー管理メンバー登録日タグのメニューMozilla Firefox: ブックマーク > ブックマークの管理... > ファイル > Export...自分のブックマーク自分のプロフィール自分の注目一覧名前Netscape: ブックマーク > ブックマークの管理... > ツール > エクスポート...新新規パスワード新規ユーザー新規アカウントを生成し、%s に送信しました次へいいえブックマークに登録されていませんリンクなし一致する電子メールアドレスとユーザー名の組み合わせが見つかりませんでした。一致するユーザー名が見つかりません。利用できません見つかりませんこの問い合わせのブックマーク数旧このタグはあなたのブックマークのみですその他の操作ページ (%d/%d)パスワードパスワードと確認パスワードが一致しません。パスワードは少なくとも 6 文字以上です。権限がありません。個人の詳細人気のタグすべてのユーザーで人気のタグ人気%s に投稿する%s に投稿する (ポップアップ)前へプライバシープライベートプライベートノートこのブックマークのプライベートノートプロフィール公開公開/共有/プライベート最近のタグ最近のブックマークを %s に投稿しました登録する今すぐ登録する登録に失敗しました。再度試してください。関連するタグ注目一覧から削除する選択からタグを削除する連絡簿から削除する名前を変更するタグを変更する必須SQL エラー変更を保存する結果の XML ファイルをコンピューターに保存します。検索ブックマークを検索する検索結果検索...このユーザーのすべてのタグを見るすべてのユーザーを見るすべてのタグを見る人気のタグを見るインポートしたブックマークの標準プライバシー設定を選択します。注目リストで共有注目リストで共有ここでサインアップし、%s のアカウントを自由に作成できます。下記で要求された情報はすべて必須です。並べ替えの基準:お気に入りのリンクの保存、共有、タグ付けをします。タグを削除しましたタグの説明を更新しましたタグ名を変更しましたタグタグ:入力した詳細は正しくありません。再度試してください。要求された URL は処理できません要求された URL はこのサーバーで見つかりませんブックマークの保存中にエラーです。再度試すか、管理者に連絡してください。新規パスワードの生成中にエラーです。再度試してください。このユーザー名は既に存在します。ほかの名前を選んでください。このユーザー名は予約されています。ほかの名前を選んでください。このユーザー名は正しくありません (短すぎる、長すぎる、禁止文字...)。他を選んでください。題名ブックマークの安全性を維持するために、次回のログイン時にプロフィールのこのパスワードを変えるべきです。ページの先頭連絡簿に追加するユーザー名を入力します。更新注目一覧にユーザーを追加しました注目一覧からユーザーを削除しましたユーザー名が「%s」のユーザーは見つけられませんでしたユーザー名ユーザー名が指定されていませんユーザーユーザー管理注目している人:注目一覧注目一覧XML エラー: %s の %d 行目XML ファイル (del.icio.us のような)はいユーザー名、パスワード、名前と電子メールアドレスを入力しなければなりません。このブックマークの削除は許可されていませんこのブックマークの編集は許可されていませんブックマークのうちいくつかは既に登録済みです。このブックマークは既に送信しました。ログアウトしました登録に成功しました。楽しんでください!ブックマークを追加する前にログインしなければなりません。電子メールアドレスを入力しなければなりません。ユーザー名を入力してください。ブックマークは題名とアドレスがなければなりません新しいパスワード:すべてのブックマークこのユーザーのほかのタグあなたのすべてのタグブックマークブックマークブックマーク登録者:共通説明の編集は次のライセンスで利用できます: message_die() は複数回呼ばれました。自分のブックマーク自分の注目一覧プロフィールこのユーザーのブックマークあなたあなたのウェブサーバーで自由に運営できます。semanticscuttle-0.98.5+dfsg/data/locales/ja_JP/LC_MESSAGES/messages.po000066400000000000000000001437571227405131600252370ustar00rootroot00000000000000# Scuttle ja-JP Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # Tadashi Jokagi , 2005-2009. # msgid "" msgstr "" "Project-Id-Version: semanticscuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2009-05-30 02:29+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0\n" "X-Poedit-Language: Japanese\n" "X-Poedit-Country: JAPAN\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() は複数回呼ばれました。" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "SQL エラー" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "行" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "ファイル" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "情報" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "重要な情報" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "エラーが発生しました" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "一般エラー" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "重大なエラーが発生しました" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "重大なエラー" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "デバッグモード" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "いかなる場所からもアクセス可能な 1 つの場所に、好きなリンクをすべて保" "管します。" #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "ブックマークをプライベートで、注目一覧で友達と、すべての人と共有します。" #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "フォルダーと格闘する代わりに、望むならいくつかのラベルととしてブックマークの" "タグを付けてください。" #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "今すぐ登録する" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "で %s の利用を始められます!" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "ギークスタッフ" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "は次のライセンスで利用できます: " #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "あなたのウェブサーバーで自由に運営できます。" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s はほとんどの del.icio.us " "API をサポートし" "ます。そのシステムのために作成された適切なツールのほぼ全ては、代わりにAAAAで" "動作するように修正することができます。あなたが API アドレスを変更することがで" "きないツールを見つけたら、製作者にこの設定を加えるよう頼んでください。どうな" "るかわかりませんが、彼らは対応するかもしれません。" #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 msgid "Users management" msgstr "ユーザー管理" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "公開/共有/プライベート" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "ブックマーク" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "本当にしますか?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "削除する" #: data/templates/default/admin.tpl.php:27 msgid "Other actions" msgstr "その他の操作" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "題名" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "説明" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "最終更新:" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "更新" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "取り消し" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "ブックマークレット" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "ブラウザーのブックマークに次のブックマークレットのうちの 1 つをドラッグしま" "す。%s にページを追加したい場合、常にそれをクリックしてください。" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "ブラウザーのブックマークに次のブックマークレットのうちの 1 つをドラッグしま" "す。%s にページを追加したい場合、常にそれをクリックしてください。" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "%s に投稿する" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "%s に投稿する (ポップアップ)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "このタグの共通説明を編集する" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "このブックマークの共通説明を編集する" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "このタグの個人的に説明を編集する" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "並べ替えの基準:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "日付" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "このタグのその他のユーザーのブックマーク" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "このタグはあなたのブックマークのみです" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "最初へ" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "前へ" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "次へ" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "最後へ" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "ページ (%d/%d)" #: data/templates/default/bookmarks.tpl.php:295 msgid "Tags:" msgstr "タグ:" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "編集する" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "登録者:" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "あなた" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr "とその他%sひとり%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr "とその他 %2$s%1$s 人%3$s" #: data/templates/default/bookmarks.tpl.php:350 msgid "Copy this bookmark to YOUR bookmarks." msgstr "あなたのブックマークにこのブックマークをコピーします" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "コピーする" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 msgid "Private Note on this bookmark" msgstr "このブックマークのプライベートノート" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "ページの先頭" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "ブックマークに登録されていません" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "このサイトについて" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "ブックマーク" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "人気のタグ" #: data/templates/default/dynamictags.inc.php:108 msgid "Popular Tags From All Users" msgstr "すべてのユーザーで人気のタグ" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "アドレス" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "必須" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "ノートの追加" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 msgid "Private Note" msgstr "プライベートノート" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "タグ" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "カンマ区切り" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "プライバシー" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "公開" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "注目リストで共有" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "プライベート" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "ブックマークを削除する" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "共通説明の編集" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "インポートする" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "ブックマークファイルからブックマークをインポートする" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer、Mozilla Firefox と Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "del.icio.us からブックマークをインポートする" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "名前" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 msgid "Email" msgstr "電子メール" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "削除する" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "アカウントの詳細" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "ユーザー名" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "新規パスワード" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "パスワード(確認)" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "電子メール" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "プライベートノート" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "パスワードを生成する" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "個人の詳細" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "ホームページ" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "変更を保存する" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "操作" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "ブックマークをエクスポートする" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "HTML ファイル (ブラウザー用)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "XML ファイル (del.icio.us のような)" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "CSV ファイル (スプレッドシート ツール用)" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "見つかりません" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "要求された URL はこのサーバーで見つかりません" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "サーバー全体のエラー" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "要求された URL は処理できません" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "注目リストで共有" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "手順" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "del.icio.us のエクスポートページ" " にログインします。" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "結果の XML ファイルをコン" "ピューターに保存します。" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "コンピューター上のこのファイルを見つけるために 参照... をクリック" "します。ファイルの最大サイズは 1MB です。" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "インポートしたブックマークの標準プライバシー設定を選択します。" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "インポートする をクリックするとブックマークのインポートを開始しま" "す。しばらくかかるかもしれません。" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "ブラウザーからファイルにブックマークをエクスポートする" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: ファイル > インポートとエクスポート... > お気に" "入りのエクスポート" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: ブックマーク > ブックマークの管理... > ファイル " "> Export..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: ブックマーク > ブックマークの管理... > ツール > エク" "スポート..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "コンピューター上に保存されたブックマークを見つけるために 参照... " "をクリックします。ファイルの最大サイズは 1MB です。" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "パスワード" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "2 週間自分のパスワードを問い合わせません" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "ログイン" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "パスワードを忘れましたか?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "パスワードを忘れてしまった場合、%s は新しいパスワードを生成できます。アカウン" "トのユーザー名と電子メールアドレスを下のフォームに入力してください。そうすれ" "ば、新しいパスワードを電子メールで送信するでしょう。" #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "パスワードを生成する" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "メンバー登録日" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "注目一覧" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "注目している人:" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "ブックマーク" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "ブックマークに移動する" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "ここでサインアップし、%s のアカウントを自由に作成できます。下記で要求された情" "報はすべて必須です。" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "スパム対策の質問" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "登録する" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "検索..." #: data/templates/default/search.menu.php:28 msgid "in" msgstr "" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "このユーザーのブックマーク" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "自分のブックマーク" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "自分の注目一覧" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "すべてのブックマーク" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "検索" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "関連するタグ" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "新規リンクを追加する" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "リンクを削除する" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "タグのメニュー" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "すべてのタグを見る" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "あなたのすべてのタグ" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "このユーザーのすべてのタグを見る" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "このユーザーのほかのタグ" #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "人気のタグを見る" #: data/templates/default/sidebar.block.menu2.php:21 msgid "Featured Menu Tags" msgstr "" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "最近のタグ" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "関連するタグ" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "最後の検索" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "この問い合わせのブックマーク数" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "タグを変更する" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "タグを削除する" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "タグの説明を編集する" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "別のタグへのリンクを作成する" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "新規ユーザー" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "ブックマーク" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "すべてのユーザーを見る" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "すべてのユーザー" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "連絡簿を閉じる" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "連絡簿に追加する..." #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "連絡簿に追加するユーザー名を入力します。" #: data/templates/default/sidebar.block.watchlist.php:44 msgid "Remove this contact" msgstr "連絡簿から削除する" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "注目一覧から削除する" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "注目一覧に追加" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "リンクを編集する" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "新しいリンクの作成:" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "作成" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "既存のリンク:" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "リンクなし" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "はい" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "いいえ" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "リンクを作成する" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "新規リンクを作成する" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "旧" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "新" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "名前を変更する" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "アルファベット" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "人気" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 msgid "Home" msgstr "ホーム" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "注目一覧" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "プロフィール" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "ブックマーク追加" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "ログアウト" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "管理" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "プロフィール" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "ユーザー管理" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "%s とすべてのブックマークを削除しました。" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "このブックマークの削除は許可されていません" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "ブックマークの削除に失敗しました" #: www/alltags.php:50 msgid "All Tags" msgstr "すべてのタグ" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "ユーザー名が「%s」のユーザーは見つけられませんでした" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "権限がありません。" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "ブックマーク共通の説明を更新しました" #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "ブックマーク共通の説明の更新に失敗しました" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "ブックマーク共通の説明の編集" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "選択からタグを削除する" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "ブックマークは題名とアドレスがなければなりません" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "ブックマークを保存しました" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "ブックマークの保存中にエラーです。再度試すか、管理者に連絡してください。" #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "ブックマークを追加する" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "ブックマークを追加する前にログインしなければなりません。" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "自分のブックマーク" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "ブックマークを編集する" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "ID「%s」とブックマークは見つかりません" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "このブックマークの編集は許可されていません" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "ブックマークの保存中にエラー" #: www/history.php:61 msgid "History" msgstr "履歴" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "%s の履歴" #: www/history.php:84 msgid "Address was not found" msgstr "アドレスは見つかりません" #: www/import.php:47 msgid "Could not open XML input" msgstr "入力の XML を開けません" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XML エラー: %s の %d 行目" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "del.icio.us からブックマークをインポートする" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "このブックマークは既に送信しました。" #: www/import.php:104 msgid "Bookmark imported." msgstr "ブックマークをインポートしました。" #: www/importNetscape.php:95 msgid "You have already submitted some of these bookmarks." msgstr "ブックマークのうちいくつかは既に登録済みです。" #: www/importNetscape.php:115 msgid "Bookmarks found: " msgstr "ブックマーク発見: " #: www/importNetscape.php:116 msgid "Bookmarks imported: " msgstr "ブックマークをインポートしました: " #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "ブラウザーのファイルからブックマークをインポートする" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "構造のインポート" #: www/index.php:38 msgid "You have now logged out" msgstr "ログアウトしました" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: 最近のブックマーク" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: 最近のブックマーク" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "お気に入りのリンクの保存、共有、タグ付けをします。" #: www/index.php:97 msgid "All Bookmarks" msgstr "すべてのブックマーク" #: www/jsScuttle.php:71 msgid "Available" msgstr "利用できます" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "利用できません" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "入力した詳細は正しくありません。再度試してください。" #: www/password.php:36 msgid "You must enter your username." msgstr "ユーザー名を入力してください。" #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "電子メールアドレスを入力しなければなりませ" "ん。" #: www/password.php:48 msgid "No matches found for that username." msgstr "一致するユーザー名が見つかりません。" #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "一致する電子メールアドレスとユーザー名の組" "み合わせが見つかりませんでした。" #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "新規パスワードの生成中にエラーです。再度試してください。" #: www/password.php:63 msgid "Your new password is:" msgstr "新しいパスワード:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "ブックマークの安全性を維持するために、次回のログイン時にプロフィールのこのパ" "スワードを変えるべきです。" #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%sアカウント情報" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "新規アカウントを生成し、%s に送信しました" #: www/password.php:75 msgid "Forgotten Password" msgstr "パスワード忘れ" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "ユーザー名が指定されていません" #: www/profile.php:70 msgid "My Profile" msgstr "自分のプロフィール" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "パスワードと確認パスワードが一致しません。" #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "パスワードは少なくとも 6 文字以上です。" #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "電子メールアドレスが有効ではありません。" #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "変更の保存中にエラーです。" #: www/profile.php:129 msgid "Changes saved." msgstr "変更を保存しました。" #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 #, fuzzy msgid "Failed to delete SSL client certificate." msgstr "タグの削除に失敗しました" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "ユーザー名、パスワード、名前と電子メールアドレスを入力しなければなりません。" #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "このユーザー名は予約されています。ほかの名前を選んでください。" #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "このユーザー名は既に存在します。ほかの名前を選んでください。" #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "このユーザー名は正しくありません (短すぎる、長すぎる、禁止文字...)。他を選ん" "でください。" #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "電子メールアドレスは有効ではありません。再度試してください。" #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "スパム対策の回答が正しくありません。もう一度試してください。" #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "登録に成功しました。楽しんでください!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "登録に失敗しました。再度試してください。" #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "最近のブックマークを %s に投稿しました" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "ブックマークを検索する" #: www/search.php:89 msgid "Search Results" msgstr "検索結果" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "リンクの削除に失敗しました" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "リンクの削除に失敗しました" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "タグを削除しました" #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "タグの削除に失敗しました" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "タグの説明を更新しました" #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "タグの説明の更新に失敗しました" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "タグ名を変更しました" #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "タグ名の変更に失敗しました" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "ユーザー" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "注目一覧からユーザーを削除しました" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "注目一覧にユーザーを追加しました" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "自分の注目一覧" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "Last Users" #~ msgstr "最後のユーザー" #~ msgid "for" #~ msgstr "キーワード" #~ msgid "URL" #~ msgstr "URL" #~ msgid "User with username %s not was not found" #~ msgstr "ユーザー名が「%s」のユーザーは見つけられませんでした" #~ msgid "Recent Bookmarks" #~ msgstr "最近のブックマーク" #~ msgid "%s Bookmarks" #~ msgstr "%sブックマーク" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "%s を使い始めるには今すぐ登録してくだ" #~ "さい!" #~ msgid "" #~ "%s is based on an " #~ "open-source project licensed under the GNU " #~ "General Public License. This means you can host it on your own web " #~ "server for free, whether it is on the Internet, a private network or just " #~ "your own computer." #~ msgstr "" #~ "%s は オープンソース" #~ "に基づいた、GNUGeneral Public License の元でラ" #~ "イセンスされています。これは、インターネットや個人のネットワーク、あるいは" #~ "自分のコンピュータや、自分のウェブサーバで無料で運営することができることを" #~ "意味します。" #~ msgid "E-mail" #~ msgstr "電子メール" semanticscuttle-0.98.5+dfsg/data/locales/lt_LT/000077500000000000000000000000001227405131600213155ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/lt_LT/LC_MESSAGES/000077500000000000000000000000001227405131600231025ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/lt_LT/LC_MESSAGES/messages.mo000066400000000000000000000347601227405131600252600ustar00rootroot00000000000000<\   x|nWgo "*@IRl,}  %   t/fN Zj{  %.  1 Rlqw  "!#!* L X/eL Q Z g rK % j"#   ',5 F S ^i} &  " + 5\B>Yv)=(.WDH9h% #  (2K@O+)) (( 3Q H  . ! 1!?!R!(U! ~! !!! c###,%D%W%X%D&&&&&&!'1'9' O' ]'h' '!' '''' ' (((c-(c([(Q)f) }) )))))) ))%*** **5*"+ )+7+3T++++++++&,9,P, Y, e,o,>-%G-!m-#-!- - -.-L. i.t. |. . .Q. . ///K%/q/./// /|/7H0000 0-0/0 11 31@10_1 1 111111 1,1&2"62 Y2*c22Y2233?.3n3U~33I304;84 t4$4X4K52_5 55-,6.Z6!6 66 66 66 77+7)7#78')89Q8V8%879!@9b9r9 9*9 999a ?I+ u8*9M 3OHD)=mob A#{246!Zf nPe`]T_UtlhC:c'.S/x^RJiwy}WY[NL$dsjG(1q"p;7%,V&\E>g5F@-z|vKQ~B<rk0X and %2$s%1$s others%3$s and %s1 other%s%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAddress was not foundAll TagsAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Are you sure?AvailableBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedConfirm PasswordCopyCould not open XML inputCritical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkError while saving your bookmarkExport your bookmarks from your browser to a fileFailed to delete bookmarkFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordHistoryHistory for %sHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLastLineLog InLog OutMember SinceMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...New PasswordNew password generated and sent to %sNextNoNo bookmarks availableNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Personal DetailsPopular TagsPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRecent TagsRecent bookmarks posted to %sRegisterRegistration failed. Please try again.Related TagsRemove from WatchlistRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSelect the default privacy setting for your imported bookmarksShared with Watch ListSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksTagsThe details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This username already exists, please make another choice.TitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.User added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedWatched ByWatchingWatchlistXML error: %s at line %dYesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksbookmarkbookmarksbymessage_die() was called multiple times.my bookmarksmy watchlistthis user's bookmarksProject-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-03-26 14:26-0800 Last-Translator: Marcus Campbell Language-Team: lt-LT Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Lithuanian X-Poedit-Country: LITHUANIA Plural-Forms: nplurals=2; plural=(n != 1); bei dar %2$s%1$s vartotojai%3$s bei dar %s1 vartotojas%s%1$s palaiko del.icio.us API. Daugumą šiai sistemai skirtų įrankių galiama pakoreguoti taip, kad jie veiktų su %1$s. Jei radote įrankį, kuriame negalima pakeisti API adreso, paprašykite jo kūrėjų tai padaryti. Jie tikrai neatsilaikys Jūsų kerams.%s paskyros informacija%s: naujos žymėsDalinkitės savo žymėmis su visais ar į tik bičiulių sąrašą įtrauktais draugais arba laikykite jas asmeniniam naudojimui.Kaupkite Jus dominančias žymes vienoje, bet kur pasiekiamoje vietoje.Grupuokite savo žymes gairių pagalba. Jų galite sukurti tiek, kiek Jums reikia. Pamirškite nelanksčius katalogus!ApiePaskyris informacijaVeiksmaiPridėti žymęPridėti žymęĮtraukti į bičiulių sąrašąAdresasAdreso nepavyko rastiVisos gairėsAbėcėlėĮvyko kritinė klaidaĮvyko klaidaSaugant pakeitimus įvyko klaida.Ar tikrai?YraŽymė importuota.Žymė išsaugotaŽymės su id %s nepavyko rastiŽymeklisŽymėsPakeitimai išsaugoti.Paspauskite Browse... ir raskite žymes savo kompiuteryje. Maksimalus failo dydis - 1MB.Paspauskite Browse... ir raskite šį failą kompiuteryje. Maksimalus failo dydis - 1 MBNorėdami importuoti žymes, spauskite Importuoti; tai gali šiek tiek užtruktiSkiriamos kableliaisPakartoti slaptažodįKopijuotiNepavyko atidaryti XML įvestiesKritinė klaidaKritinė informacijaDerinimo rėžimasdatąTrintiTrinti žymęAprašasNeklausti slaptažodžio dvi savaitesPerkelkite šį žymeklįį Jūsų naršyklėje esantį žymių katalogą ir naudokite, kai norėsite pridėti naują puslapį į %sEl. paštasNeteisingas el. pašto adresas.El. pašto adresas neteisingas. Bandykite dar kartą.KeistiKeisti žymęSaugant žymę įvyko klaidaEksportuokite savo žymes iš naršyklės į failąNepavyko ištrinti žymėsFailasPirmasUžmirštas slaptažodisPamiršote slaptažodį?Techninė informacijaBendro pobūdžio klaidaBendro pobūdžio darbo stoties klaidaGeneruoti slaptažodįIstorija%s istorijaSvetainėJei pamiršote savo slaptažodį, %s gali sukurti Jums naują. Įrašykite savo paskyros vartotojo vardą ir mums pateikto el. pašto adresą ir mes Jums persiųsime naująjį slaptažodį.ImportasImportuoti žymes iš naryklės failoImportuoti žymes iš del.icio.usImportuoti žymes iš žymių failoImportuoti žymes iš del.icio.usInformacijaInstrukcijaInternet Explorer, Mozilla Firefox ir NetscapeInternet Explorer: File > Import and Export... > Export FavoritesPaskutinisEilutėPrisijungtiAtsijungtiDalyvauja nuoMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...Mano žymėsMano profilisMano bičiuliaiVardasNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...Naujas slaptažodisNaujas slaptažodis sukurtas ir išsiųstas %sKitasNeŽymių nėraNepavyko rasti įrašų, susijusių su šiuo vartotojo vardu ir el. pašto adresu.Nepavyko rasti įrašų, susijusių su šiuo vartotoju.NėraNėra%d iš %d puslapiųSlaptažodisĮrašyti slaptažodžio variantai nesutampa.Slaptažodis turi būti bent 6 simbolių ilgio.Asmeniniai duomenysPopuliarios gairėsPopuliarumasSiųsti į %sSiųsti į %s (atskirame lange)AnkstesnisPrivatumasPrivatiProfilisViešaNaujos gairėsNaujos, %s išsiųstos gairėsRegistracijaRegistracija nepavyko. Bandykite dar kartą.Susiję gairėsPašalinti iš bičiulių sąrašoPrivalomamessage_die() buvo iškviesta daug kartų.Išsaugoti pakeitimusIšsaugoti XML failą Jūsų kompiuteryjeIeškotiIeškoti žymėsePaieškos rezultataiPasirinkite bazines privatumo nuostatas importuojamoms žymėmsTik bičiuliamsNorėdami prisiregistruoti %s užlipdykite žemiau esančią anketąRūšiuoti pagal:Kaupkite, dalinkites ir aprašinėkite savo svarbiausias interneto žymesGairėsJūsų įrašyti duomenys neteisingi. Bandykite dar kartą.Užklausa negali būti įvykdytaUžklausto saito darbo stotyje nėraSaugant žymę įvyko klaida. Bandykite dar kartą arba kreipkitės į administratorių.Generuojant naują Jūsų slaptažodį įvyko klaida. Bandykite dar kartą.Toks vartotojas jau yra, prašom pasirinkti kitą.pavadinimąVardan Jūsų kaupiamos informacijos saugumo, rekomenduojame pasikeisti slaptažodį, kai kitą kartą prisijungsite prie vartotojo profilio.Vartotojas įtrauktas į bičiulių sąrašąVartotojas išbrauktas iš bičiulių sąrašoNepavyko rasti vartotojo vardu %sVartotojasNenurodytas vartotojo vardasYra stebimasStebiBičiuliaiXML klaida: %s eilutėje %dTaipPrivalote įrašyti vartotojo vardą, slaptažodį, vardą ir el. pašto adresą.Jums neturite teisės ištrinti šį žymęJūs neturite teisės keisti šią žymęJūs jau išsaugojote šią žymę.Jūs dabar atsijungėteSveikiname sėkmingai užsiregistravus!Jei norite pridėti naujas žymes, privalote prisijungti.Privalote įrašyti savo el. pašto adresą.Privalote įrašyti vartotojo vardą.Įrašoma žymė privalo turėti pavadinimą ir adresąJūsų naujasis slaptažodis yra:visose žymėsežymėžymės įrašėmessage_die() buvo iškviesta daug kartų.mano žymėsebičiulių žymėsešio vartotojo žymėsesemanticscuttle-0.98.5+dfsg/data/locales/lt_LT/LC_MESSAGES/messages.po000066400000000000000000001333161227405131600252600ustar00rootroot00000000000000# Scuttle lt-LT Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # Audrius Radzevičius # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-03-26 14:26-0800\n" "Last-Translator: Marcus Campbell \n" "Language-Team: lt-LT \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Lithuanian\n" "X-Poedit-Country: LITHUANIA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() buvo iškviesta daug kartų." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "message_die() buvo iškviesta daug kartų." #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Eilutė" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Failas" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Informacija" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Kritinė informacija" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Įvyko klaida" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Bendro pobūdžio klaida" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Įvyko kritinė klaida" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Kritinė klaida" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "Derinimo rėžimas" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Kaupkite Jus dominančias žymes vienoje, bet kur " "pasiekiamoje vietoje." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Dalinkitės savo žymėmis su visais ar į tik bičiulių sąrašą " "įtrauktais draugais arba laikykite jas asmeniniam naudojimui." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Grupuokite savo žymes gairių pagalba. Jų galite sukurti " "tiek, kiek Jums reikia. Pamirškite nelanksčius katalogus!" #: data/templates/default/about.tpl.php:9 #, fuzzy msgid "Register now" msgstr "Registracija" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Techninė informacija" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s palaiko del.icio.us API. Daugumą šiai sistemai skirtų įrankių galiama pakoreguoti taip, kad jie " "veiktų su %1$s. Jei radote įrankį, kuriame negalima " "pakeisti API adreso, paprašykite jo kūrėjų tai padaryti. Jie tikrai " "neatsilaikys Jūsų kerams." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Vartotojas" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "žymė" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Ar tikrai?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Trinti" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Instrukcija" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "pavadinimą" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Aprašas" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Žymeklis" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Perkelkite šį žymeklįį Jūsų naršyklėje esantį žymių katalogą ir naudokite, " "kai norėsite pridėti naują puslapį į %s" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Perkelkite šį žymeklįį Jūsų naršyklėje esantį žymių katalogą ir naudokite, " "kai norėsite pridėti naują puslapį į %s" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Siųsti į %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Siųsti į %s (atskirame lange)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Rūšiuoti pagal:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "datą" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "Pirmas" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Ankstesnis" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Kitas" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Paskutinis" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "%d iš %d puslapių" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Gairės" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Keisti" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr " įrašė" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr " bei dar %s1 vartotojas%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " bei dar %2$s%1$s vartotojai%3$s" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Importuoti žymes iš žymių failo" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Kopijuoti" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "Jūs neturite teisės keisti šią žymę" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Žymių nėra" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Apie" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "žymė" msgstr[1] "žymės" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Populiarios gairės" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Populiarios gairės" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Adresas" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Privaloma" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Privati" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Gairės" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Skiriamos kableliais" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Privatumas" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Vieša" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Tik bičiuliams" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privati" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Trinti žymę" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importas" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Importuoti žymes iš žymių failo" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox ir Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importuoti žymes iš del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Vardas" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "El. paštas" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Trinti" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Paskyris informacija" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Vartotojas" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Naujas slaptažodis" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Pakartoti slaptažodį" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "El. paštas" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Privati" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Generuoti slaptažodį" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Asmeniniai duomenys" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Svetainė" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Išsaugoti pakeitimus" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Veiksmai" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "mano žymėse" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Nėra" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "Užklausto saito darbo stotyje nėra" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Bendro pobūdžio darbo stoties klaida" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "Užklausa negali būti įvykdyta" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "Tik bičiuliams" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instrukcija" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Prisijunkite prie del.icio.us " "eksporto puslapio" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Išsaugoti XML failą Jūsų " "kompiuteryje" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Paspauskite Browse... ir raskite šį failą kompiuteryje. " "Maksimalus failo dydis - 1 MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "Pasirinkite bazines privatumo nuostatas importuojamoms žymėms" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Norėdami importuoti žymes, spauskite Importuoti; tai gali šiek " "tiek užtrukti" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Eksportuokite savo žymes iš naršyklės į failą" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: File > Import and Export... > Export Favorites" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Paspauskite Browse... ir raskite žymes savo kompiuteryje. " "Maksimalus failo dydis - 1MB." #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Slaptažodis" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Neklausti slaptažodžio dvi savaites" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Prisijungti" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Pamiršote slaptažodį?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Jei pamiršote savo slaptažodį, %s gali sukurti Jums naują. " "Įrašykite savo paskyros vartotojo vardą ir mums pateikto el. pašto adresą ir " "mes Jums persiųsime naująjį slaptažodį." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Generuoti slaptažodį" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Dalyvauja nuo" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Stebi" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Yra stebimas" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Žymės" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "mano žymėse" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Norėdami prisiregistruoti %s užlipdykite žemiau esančią " "anketą" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Registracija" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "Ieškoti" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "Eilutė" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "šio vartotojo žymėse" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "mano žymėse" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "bičiulių žymėse" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "visose žymėse" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Ieškoti" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "Susiję gairės" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "Trinti" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "Naujos gairės" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "Populiarios gairės" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Susiję gairės" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Naujos gairės" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Susiję gairės" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "Ieškoti" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "Žymių nėra" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Susiję gairės" msgstr[1] "Susiję gairės" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "Trinti" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "Aprašas" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "žymė" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Pašalinti iš bičiulių sąrašo" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Pašalinti iš bičiulių sąrašo" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Įtraukti į bičiulių sąrašą" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "Keisti" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Taip" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Ne" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "Vartotojas" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Abėcėlė" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Populiarumas" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Svetainė" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Bičiuliai" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profilis" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Pridėti žymę" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Atsijungti" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "Profilis" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Jums neturite teisės ištrinti šį žymę" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Nepavyko ištrinti žymės" #: www/alltags.php:50 msgid "All Tags" msgstr "Visos gairės" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "Nepavyko rasti vartotojo vardu %s" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "Žymės ištrinti nepavyko" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Įrašoma žymė privalo turėti pavadinimą ir adresą" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Žymė išsaugota" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Saugant žymę įvyko klaida. Bandykite dar kartą arba kreipkitės į " "administratorių." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Pridėti žymę" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Jei norite pridėti naujas žymes, privalote prisijungti." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Mano žymės" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Keisti žymę" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Žymės su id %s nepavyko rasti" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Jūs neturite teisės keisti šią žymę" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Saugant žymę įvyko klaida" #: www/history.php:61 msgid "History" msgstr "Istorija" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "%s istorija" #: www/history.php:84 msgid "Address was not found" msgstr "Adreso nepavyko rasti" #: www/import.php:47 msgid "Could not open XML input" msgstr "Nepavyko atidaryti XML įvesties" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XML klaida: %s eilutėje %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Importuoti žymes iš del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Jūs jau išsaugojote šią žymę." #: www/import.php:104 msgid "Bookmark imported." msgstr "Žymė importuota." #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Jūs jau išsaugojote šią žymę." #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "Žymių nėra" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Žymė importuota." #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Importuoti žymes iš naryklės failo" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Jūs dabar atsijungėte" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: naujos žymės" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: naujos žymės" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Kaupkite, dalinkites ir aprašinėkite savo svarbiausias interneto žymes" #: www/index.php:97 #, fuzzy msgid "All Bookmarks" msgstr "visose žymėse" #: www/jsScuttle.php:71 msgid "Available" msgstr "Yra" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Nėra" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "Jūsų įrašyti duomenys neteisingi. Bandykite dar kartą." #: www/password.php:36 msgid "You must enter your username." msgstr "Privalote įrašyti vartotojo vardą." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "Privalote įrašyti savo el. pašto " "adresą." #: www/password.php:48 msgid "No matches found for that username." msgstr "Nepavyko rasti įrašų, susijusių su šiuo vartotoju." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Nepavyko rasti įrašų, susijusių su šiuo vartotojo vardu ir el. pašto adresu." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "Generuojant naują Jūsų slaptažodį įvyko klaida. Bandykite dar kartą." #: www/password.php:63 msgid "Your new password is:" msgstr "Jūsų naujasis slaptažodis yra:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Vardan Jūsų kaupiamos informacijos saugumo, rekomenduojame pasikeisti " "slaptažodį, kai kitą kartą prisijungsite prie vartotojo profilio." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%s paskyros informacija" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Naujas slaptažodis sukurtas ir išsiųstas %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Užmirštas slaptažodis" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Nenurodytas vartotojo vardas" #: www/profile.php:70 msgid "My Profile" msgstr "Mano profilis" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Įrašyti slaptažodžio variantai nesutampa." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Slaptažodis turi būti bent 6 simbolių ilgio." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Neteisingas el. pašto adresas." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Saugant pakeitimus įvyko klaida." #: www/profile.php:129 msgid "Changes saved." msgstr "Pakeitimai išsaugoti." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "Privalote įrašyti vartotojo vardą, slaptažodį, vardą ir el. pašto adresą." #: www/register.php:56 #, fuzzy msgid "This username has been reserved, please make another choice." msgstr "Toks vartotojas jau yra, prašom pasirinkti kitą." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Toks vartotojas jau yra, prašom pasirinkti kitą." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "Toks vartotojas jau yra, prašom pasirinkti kitą." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "El. pašto adresas neteisingas. Bandykite dar kartą." #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "El. pašto adresas neteisingas. Bandykite dar kartą." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Sveikiname sėkmingai užsiregistravus!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Registracija nepavyko. Bandykite dar kartą." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Naujos, %s išsiųstos gairės" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Ieškoti žymėse" #: www/search.php:89 msgid "Search Results" msgstr "Paieškos rezultatai" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "Žymės ištrinti nepavyko" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "Žymės ištrinti nepavyko" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "Žymės ištrinti nepavyko" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "Žymės ištrinti nepavyko" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "Žymės ištrinti nepavyko" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "Vartotojas" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Vartotojas išbrauktas iš bičiulių sąrašo" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Vartotojas įtrauktas į bičiulių sąrašą" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Mano bičiuliai" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "User with username %s not was not found" #~ msgstr "Nepavyko rasti vartotojo vardu %s" #~ msgid "Recent Bookmarks" #~ msgstr "Naujos žymės" #~ msgid "for" #~ msgstr "teksto" #~ msgid "%s Bookmarks" #~ msgstr "%s žymės" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Registruokitės dabar ir " #~ "pradėkite darbą su %s!" #~ msgid "" #~ "%s is based on an " #~ "open-source project licensed under the GNU " #~ "General Public License. This means you can host it on your own web " #~ "server for free, whether it is on the Internet, a private network or just " #~ "your own computer." #~ msgstr "" #~ "%s veikia pagal GNU GPL " #~ "licenciją sukurto atvirojo kodo projekto pagrindu. Tai reiškia, kad Jūs galite šią " #~ "sistemą nemokamai naudoti ir talpinti internete, vidaus tinkle ar savo " #~ "kompiuteryje." #~ msgid "URL" #~ msgstr "adresą" #~ msgid "E-mail" #~ msgstr "El. paštas" semanticscuttle-0.98.5+dfsg/data/locales/messages.po000066400000000000000000001120501227405131600224450ustar00rootroot00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 msgid "Users management" msgstr "" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "" #: data/templates/default/admin.tpl.php:27 msgid "Other actions" msgstr "" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "" #: data/templates/default/bookmarklet.inc.php:11 #, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "" #: data/templates/default/bookmarks.tpl.php:295 msgid "Tags:" msgstr "" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr "" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr "" #: data/templates/default/bookmarks.tpl.php:350 msgid "Copy this bookmark to YOUR bookmarks." msgstr "" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 msgid "Private Note on this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "" msgstr[1] "" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "" #: data/templates/default/dynamictags.inc.php:108 msgid "Popular Tags From All Users" msgstr "" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 msgid "Private Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 msgid "Email" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 msgid "delete" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "" #: data/templates/default/editprofile.tpl.php:32 msgid "Private RSS Feed" msgstr "" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 msgid "Generate New Key" msgstr "" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "" #: data/templates/default/importDelicious.tpl.php:33 msgid "" "Log in to the export page " "at del.icio.us" msgstr "" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "" #: data/templates/default/search.menu.php:28 msgid "in" msgstr "" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "" #: data/templates/default/sidebar.block.linked.php:23 msgid "Linked Tags" msgstr "" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "" #: data/templates/default/sidebar.block.menu2.php:21 msgid "Featured Menu Tags" msgstr "" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "" msgstr[1] "" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 msgid "Remove this contact" msgstr "" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 msgid "Home" msgstr "" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "" #: www/alltags.php:50 msgid "All Tags" msgstr "" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "" #: www/history.php:61 msgid "History" msgstr "" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "" #: www/history.php:84 msgid "Address was not found" msgstr "" #: www/import.php:47 msgid "Could not open XML input" msgstr "" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "" #: www/import.php:104 msgid "Bookmark imported." msgstr "" #: www/importNetscape.php:95 msgid "You have already submitted some of these bookmarks." msgstr "" #: www/importNetscape.php:115 msgid "Bookmarks found: " msgstr "" #: www/importNetscape.php:116 msgid "Bookmarks imported: " msgstr "" #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "" #: www/index.php:58 #, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "" #: www/index.php:97 msgid "All Bookmarks" msgstr "" #: www/jsScuttle.php:71 msgid "Available" msgstr "" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "" #: www/password.php:36 msgid "You must enter your username." msgstr "" #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" #: www/password.php:48 msgid "No matches found for that username." msgstr "" #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" #: www/password.php:63 msgid "Your new password is:" msgstr "" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "" #: www/password.php:75 msgid "Forgotten Password" msgstr "" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "" #: www/profile.php:70 msgid "My Profile" msgstr "" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "" #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "" #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "" #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "" #: www/profile.php:129 msgid "Changes saved." msgstr "" #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "" #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "" #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "" #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "" #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "" #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "" #: www/search.php:89 msgid "Search Results" msgstr "" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" semanticscuttle-0.98.5+dfsg/data/locales/nl_NL/000077500000000000000000000000001227405131600213015ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/nl_NL/LC_MESSAGES/000077500000000000000000000000001227405131600230665ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/nl_NL/LC_MESSAGES/messages.mo000066400000000000000000000131021227405131600252270ustar00rootroot00000000000000C4YL   t%fNP`e~ %OV [1i#! / L3  Q  K 7 D [ i r         \ S >d       3 .3 b p } .DM`v  cYW o#}  6 ' ,> X.dL QEKJ   $ ,9K hrj[`y~7-$3B/ )$ %?>2 , @8'963&.(: "1-; 40<C#5!A7+=*%s: Recent bookmarksAboutAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAll TagsBookmark savedBookmarkletClick Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedCopyCould not open XML inputDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailEditEdit BookmarkExport your bookmarks from your browser to a fileFileHomepageImportImport bookmarks from bookmark fileImport bookmarks from del.icio.usInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLog InMember SinceMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...NameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...New PasswordNo bookmarks availablePage %d of %dPasswordPopular TagsPost to %sPost to %s (Pop-up)PrivacyPrivateProfilePublicRelated TagsRemove from WatchlistRequiredSave ChangesSave the resulting XML file to your computerSearch BookmarksSelect the default privacy setting for your imported bookmarksShared with Watch ListTagsTitleUsernameXML error: %s at line %dYou have now logged outYou must be logged in before you can add bookmarks.Your bookmark must have a title and an addressall bookmarksmy bookmarksProject-Id-Version: scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-03-18 21:46-0800 Last-Translator: Marcus Campbell Language-Team: nl-NL Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Dutch X-Poedit-Country: NETHERLANDS Plural-Forms: nplurals=2; plural=(n != 1); %s: Recente bookmarksOver onsBookmark toevoegenVoeg een bookmark toeVoeg toe aan 'watch-list'AdresAlle tagsBookmark opgeslagenBookmarkletKlik vervolgens op Bladeren... om het opgeslagen bookmark bestand op de computer te vinden. De maximum toegelaten bestandsgrootte op onze server is 1MBKlik vervolgens op Bladeren... om dit opgeslagen bestand op de computer te vinden. De maximum toegelaten bestandsgrootte op onze server is 1MBKlik op Importeren om het importeren te starten. Dit kan enkele minuten duren.Door comma's gescheidenKopiërenXML bestand kon niet geopend wordenDatumVerwijderenBookmark VerwijderenOmschrijvingWachtwoord de komende 2 weken niet nog een keer vragenSleep een van de volgende 'bookmarklets' naar de link-balk van je browser, en klik er vervolgens op als je je op een pagina bevind die je aan %s wilt toevoegenEmailBewerkenBookmark BewerkenBookmarks exporteren vanuit een browserBestandHomepageImporterenImporteer bookmarks uit een bookmark bestandImporteer van del.icio.usInstructiesInternet Explorer, Mozilla Firefox en NetscapeInternet Explorer: File > Import and Export... > Export FavoritesInloggenLid sindsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...NaamNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...Nieuw wachtwoordGeen bookmarks beschikbaarPagina %d van %dWachtwoordPopulaire TagsPlaats op %sPlaats op %s (pop-up)PrivacyPriv&egrav;ProfielPubliekelijkGerelateerde TagsVan 'watch-list' verwijderenVerplichtVeranderingen opslaanSla het resulterende XML bestand op, op de locale computerBookmarks zoekenSelecteer welke privacy instelling moet worden toegepast op de geïmporteerde bookmarksGedeeld met 'watch list'TagsTitelGebruikersnaamXML fout: %s op regel %dJe bent uitgelogdJe moet ingelogd zijn om bookmarks toe te kunnen voegenJe bookmarks moeten een titel en adres hebbenAlle bookmarksMijn bookmarkssemanticscuttle-0.98.5+dfsg/data/locales/nl_NL/LC_MESSAGES/messages.po000066400000000000000000001254251227405131600252460ustar00rootroot00000000000000# Scuttle nl-NL Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # # msgid "" msgstr "" "Project-Id-Version: scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-03-18 21:46-0800\n" "Last-Translator: Marcus Campbell \n" "Language-Team: nl-NL \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Dutch\n" "X-Poedit-Country: NETHERLANDS\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Bestand" #: src/SemanticScuttle/functions.php:215 #, fuzzy msgid "Information" msgstr "Instructies" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" #: data/templates/default/about.tpl.php:7 #, fuzzy msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Deel je bookmarks met iedereen, met gebruikers op jouw 'watch-list' of hou " "ze gewoon voor jezelf" #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Gebruikersnaam" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "%s Bookmarks" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Verwijderen" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Instructies" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Titel" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Omschrijving" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Sleep een van de volgende 'bookmarklets' naar de link-balk van je browser, " "en klik er vervolgens op als je je op een pagina bevind die je aan %s wilt " "toevoegen" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Sleep een van de volgende 'bookmarklets' naar de link-balk van je browser, " "en klik er vervolgens op als je je op een pagina bevind die je aan %s wilt " "toevoegen" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Plaats op %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Plaats op %s (pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Datum" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Pagina %d van %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Tags" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Bewerken" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr "" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr "" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Importeer bookmarks uit een bookmark bestand" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Kopiëren" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "De bookmark kon niet worden verwijderd" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Geen bookmarks beschikbaar" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Over ons" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 #, fuzzy msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "%s Bookmarks" msgstr[1] "%s Bookmarks" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Populaire Tags" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Populaire Tags" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Adres" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Verplicht" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Priv&egrav;" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Tags" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Door comma's gescheiden" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Privacy" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Publiekelijk" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Gedeeld met 'watch list'" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Priv&egrav;" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Bookmark Verwijderen" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importeren" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Importeer bookmarks uit een bookmark bestand" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox en Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importeer van del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Naam" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "Email" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Verwijderen" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Gebruikersnaam" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Nieuw wachtwoord" #: data/templates/default/editprofile.tpl.php:22 #, fuzzy msgid "Confirm Password" msgstr "Bevestiging nieuw wachtwoord" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "Email" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Priv&egrav;" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Nieuw wachtwoord" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Homepage" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Veranderingen opslaan" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 #, fuzzy msgid "Actions" msgstr "Instructies" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "Mijn bookmarks" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 #, fuzzy msgid "Not Found" msgstr "Gebruiker werd niet gevonden" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "Gedeeld met 'watch list'" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instructies" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Log in op de export pagina op " "del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Sla het resulterende XML " "bestand op, op de locale computer" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Klik vervolgens op Bladeren... om dit opgeslagen bestand op de " "computer te vinden. De maximum toegelaten bestandsgrootte op onze server is " "1MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "" "Selecteer welke privacy instelling moet worden toegepast op de geï" "mporteerde bookmarks" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Klik op Importeren om het importeren te starten. Dit kan enkele " "minuten duren." #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Bookmarks exporteren vanuit een browser" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: File > Import and Export... > Export Favorites" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Klik vervolgens op Bladeren... om het opgeslagen bookmark bestand " "op de computer te vinden. De maximum toegelaten bestandsgrootte op onze " "server is 1MB" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Wachtwoord" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Wachtwoord de komende 2 weken niet nog een keer vragen" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Inloggen" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" #: data/templates/default/password.tpl.php:19 #, fuzzy msgid "Generate Password" msgstr "Nieuw wachtwoord" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Lid sinds" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 #, fuzzy msgid "Watching" msgstr "Watch List" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 #, fuzzy msgid "Watched By" msgstr "Watched" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 #, fuzzy msgid "Bookmarks" msgstr "%s Bookmarks" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "Mijn bookmarks" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "" #: data/templates/default/search.menu.php:28 msgid "in" msgstr "" #: data/templates/default/search.menu.php:34 #, fuzzy msgid "this user's bookmarks" msgstr "%s Bookmarks" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "Mijn bookmarks" #: data/templates/default/search.menu.php:40 #, fuzzy msgid "my watchlist" msgstr "Voeg toe aan 'watch-list'" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "Alle bookmarks" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "Gerelateerde Tags" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "Verwijderen" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "Gerelateerde Tags" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "Populaire Tags" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Gerelateerde Tags" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 #, fuzzy msgid "Recent Tags" msgstr "Gerelateerde Tags" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Gerelateerde Tags" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "Geen bookmarks beschikbaar" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Gerelateerde Tags" msgstr[1] "Gerelateerde Tags" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "Verwijderen" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "Omschrijving" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "%s Bookmarks" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Van 'watch-list' verwijderen" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Van 'watch-list' verwijderen" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Voeg toe aan 'watch-list'" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "Bewerken" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "Gebruikersnaam" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 #, fuzzy msgid "Popularity" msgstr "Populaire Tags" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Homepage" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 #, fuzzy msgid "Watchlist" msgstr "Watch List" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Profiel" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Voeg een bookmark toe" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "Profiel" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 #, fuzzy msgid "You are not allowed to delete this bookmark" msgstr "De bookmark kon niet worden verwijderd" #: www/ajaxDelete.php:41 www/edit.php:103 #, fuzzy msgid "Failed to delete bookmark" msgstr "Bookmark Verwijderen" #: www/alltags.php:50 msgid "All Tags" msgstr "Alle tags" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, fuzzy, php-format msgid "User with username %s was not found" msgstr "Bookmark werd niet gevonden" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "De bookmark kon niet worden verwijderd" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Je bookmarks moeten een titel en adres hebben" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Bookmark opgeslagen" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Bookmark toevoegen" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Je moet ingelogd zijn om bookmarks toe te kunnen voegen" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 #, fuzzy msgid "My Bookmarks" msgstr "%s Bookmarks" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Bookmark Bewerken" #: www/edit.php:51 #, fuzzy, php-format msgid "Bookmark with id %s not was not found" msgstr "Bookmark werd niet gevonden" #: www/edit.php:57 #, fuzzy msgid "You are not allowed to edit this bookmark" msgstr "De bookmark kon niet worden verwijderd" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "" #: www/history.php:61 msgid "History" msgstr "" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "" #: www/history.php:84 msgid "Address was not found" msgstr "" #: www/import.php:47 msgid "Could not open XML input" msgstr "XML bestand kon niet geopend worden" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XML fout: %s op regel %d" #: www/import.php:60 #, fuzzy msgid "Import Bookmarks from del.icio.us" msgstr "Importeer van del.icio.us" #: www/import.php:93 #, fuzzy msgid "You have already submitted this bookmark." msgstr "Je hebt deze bookmark al opgenomen" #: www/import.php:104 #, fuzzy msgid "Bookmark imported." msgstr "Bookmark opgeslagen" #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Je hebt deze bookmark al opgenomen" #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "Geen bookmarks beschikbaar" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Bookmark opgeslagen" #: www/importNetscape.php:117 www/importNetscape.php:122 #, fuzzy msgid "Import Bookmarks from Browser File" msgstr "Importeer bookmarks uit een bookmark bestand" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Je bent uitgelogd" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Recente bookmarks" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Recente bookmarks" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "" #: www/index.php:97 #, fuzzy msgid "All Bookmarks" msgstr "Alle bookmarks" #: www/jsScuttle.php:71 msgid "Available" msgstr "" #: www/jsScuttle.php:74 #, fuzzy msgid "Not Available" msgstr "Geen bookmarks beschikbaar" #: www/login.php:48 #, fuzzy msgid "The details you have entered are incorrect. Please try again." msgstr "De ingevoerde details zijn niet correct. Probeer het nog eens." #: www/password.php:36 msgid "You must enter your username." msgstr "" #: www/password.php:40 #, fuzzy msgid "" "You must enter your e-mail address." msgstr "" "Een gebruikersnaam, wachtwoord, naam en email adres moeten worden opgegeven" #: www/password.php:48 msgid "No matches found for that username." msgstr "" #: www/password.php:51 #, fuzzy msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Een gebruikersnaam, wachtwoord, naam en email adres moeten worden opgegeven" #: www/password.php:59 #, fuzzy msgid "" "There was an error while generating your new password. Please try again." msgstr "De ingevoerde details zijn niet correct. Probeer het nog eens." #: www/password.php:63 #, fuzzy msgid "Your new password is:" msgstr "Bevestiging nieuw wachtwoord" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" #: www/password.php:66 #, fuzzy, php-format msgid "%s Account Information" msgstr "Instructies" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "" #: www/password.php:75 #, fuzzy msgid "Forgotten Password" msgstr "Nieuw wachtwoord" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "" #: www/profile.php:70 #, fuzzy msgid "My Profile" msgstr "Profiel" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 #, fuzzy msgid "Password and confirmation do not match." msgstr "Wachtwoord en wachtwoordbevestiging komen niet overen" #: www/profile.php:119 #, fuzzy msgid "Password must be at least 6 characters long." msgstr "Wachtwoord dient minimaal 6 karakters lang te zijn" #: www/profile.php:123 #, fuzzy msgid "E-mail address is not valid." msgstr "Email adres is ongeldig" #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "" #: www/profile.php:129 #, fuzzy msgid "Changes saved." msgstr "Wijzigingen opgeslagen" #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 #, fuzzy msgid "You must enter a username, password and e-mail address." msgstr "" "Een gebruikersnaam, wachtwoord, naam en email adres moeten worden opgegeven" #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "" #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "" #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" #: www/register.php:68 #, fuzzy msgid "E-mail address is not valid. Please try again." msgstr "Email adres is ongeldig" #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "Email adres is ongeldig" #: www/register.php:90 #, fuzzy msgid "You have successfully registered. Enjoy!" msgstr "De bookmark is succesvol verwijderd" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "" #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, fuzzy, php-format msgid "Recent bookmarks posted to %s" msgstr "Recente bookmarks" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Bookmarks zoeken" #: www/search.php:89 msgid "Search Results" msgstr "" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "De bookmark kon niet worden verwijderd" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "De bookmark kon niet worden verwijderd" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "De bookmark kon niet worden verwijderd" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "De bookmark kon niet worden verwijderd" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "De bookmark kon niet worden verwijderd" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "Gebruikersnaam" #: www/watch.php:54 #, fuzzy msgid "User removed from your watchlist" msgstr "Van 'watch-list' verwijderen" #: www/watch.php:56 #, fuzzy msgid "User added to your watchlist" msgstr "Voeg toe aan 'watch-list'" #: www/watchlist.php:104 #, fuzzy msgid "My Watchlist" msgstr "Watch List" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "Recent Bookmarks" #~ msgstr "Recente bookmarks" #~ msgid "for" #~ msgstr "voor" #~ msgid "%s Bookmarks" #~ msgstr "%s Bookmarks" #, fuzzy #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Registreer nu om je eigen bookmarks op te " #~ "slaan" semanticscuttle-0.98.5+dfsg/data/locales/pt_BR/000077500000000000000000000000001227405131600213055ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/pt_BR/LC_MESSAGES/000077500000000000000000000000001227405131600230725ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/pt_BR/LC_MESSAGES/messages.mo000066400000000000000000000327361227405131600252510ustar00rootroot00000000000000| x R i n~ W gE  ",3 `n% tfFN *9 NY^e u%*1.N}  1 . 9G\nw."5!X#z!  /L V[b jQw K '%4Z_bjy#   '),Q ~   & 7DZ c m\z>=YT=(.#WRH9-h3   "+&)R)|(3Hd. ( y i!!!e#"w"###"/# R#\# o#}###;##$$7*$b$w$$}%d%&&& & G&U& o&z&&& &*&&|'0'8''')(7.(f((((( (( ((()6)!)* *!K* m* {*/*S* ++$+ 4+YA+++V+ ,#,5,>,C,_,5,-(-9-W?-,-- ---. .$.,.3. <.'J. r.1~.. . . ..b /o/u//K/*/r0 00N0+041qP1Q1L2a2~i202.3H3(Y3 3333333!4:41P4@4U4,55F5|55*55K|Y.!FI81z)5%yM]+[qxOU&4 \ (2PB-mG ,<3`HDkhV?07'Q^>SC 9JW/T~tecvf:;dLr@=AZ$sbpN6n{*#_i wolXR"Eajug}%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAll BookmarksAll TagsAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Are you sure?Bookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedCopyCould not open XML inputCritical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkError while saving your bookmarkExport your bookmarks from your browser to a fileFailed to delete bookmarkFileForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLineLog InLog OutMember SinceMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...New PasswordNew password generated and sent to %sNextNoNo bookmarks availableNo matches found for that combination of username and e-mail address.No matches found for that username.Not FoundPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Popular TagsPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRecent TagsRecent bookmarks posted to %sRegisterRegistration failed. Please try again.Related TagsRemove from WatchlistRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSelect the default privacy setting for your imported bookmarksShared with Watch ListSign up here to create a free %s account. All the information requested below is requiredSort by:TagsThe details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This username already exists, please make another choice.TitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.User added to your watchlistUser removed from your watchlistUsernameUsername was not specifiedWatched ByXML error: %s at line %dYesYou are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksmessage_die() was called multiple times.my bookmarksProject-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-04-06 17:26-0300 Last-Translator: Daniel duende Carvalho Language-Team: Portuguese/Brazil Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); O %1$s suporta a maior parte do API do del.icio.us. Quase todas as adoráveis ferramentas desenvolvidas para aquele sistema podem ser modificadas para funcionar com o %1$s. Se você encontrar uma ferramenta que não permita a mudança de seu endereço de API, solicite a seu criador para que adicione esta configuração. Nunca se sabe. Ele pode simplesmente atender a seu pedido.Informações da Conta de %s%s: Bookmarks recentesCompartilhe seus bookmarks com todo o mundo, com amigos em sua lista de observação ou guarde-os apenas para você.Agregue todos os seus links favoritos em um só local, acessível de qualquer lugar.Identifique seus bookmarks com tantos tags quanto quiser, em vez de lutar contra pastas e diretórios.SobreAdicionar BookmarkAdicione um BookmarkAdicionar à Lista de ObservaçãoEndereçoTodos os BookmarksTodos os TagsAlfabetoUm erro crítico ocorreuUm erro ocorreuUm erro ocorreu durante a gravação das suas alterações.Você tem certeza disso!?Bookmark importado.Bookmark gravadoO Bookmark com a identificação %s não foi encontradoGerador de BookmarksAlterações gravadas.Clique Procurar... para encontrar o arquivo de bookmarks gravado em seu computador. O tamanho máximo permitido para o arquivo é 1MBClique em Navegar...para encontrar este arquivo no seu computador. O tamanho máximo que o arquivo pode ter é 1MBClique em Importar para começar a importar os bookmarks. Isso pode levar um minutinho...Separados por vírgulaCopiarNão foi possível abrir a entrada XMLErro CríticoInformações ImportantesMODO DEBUGDataApagarApagar BookmarkDescriçãoNão pergunte minha senha por duas semanasArraste um dos seguintes Geradores de Bookmark para a área de favoridos de seu navegador. Clique nele toda vez que quiser adicionar a página na qual você se encontra ao %sE-mailO endereço de e-mail fornecido não é válido.Endereço de email inválido. Por favor tente novamente.EditarEditar BookmarkErro durante a gravação do seu bookmarkExporte seus bookmarks de seu navegador para um arquivoFalha ao apagar bookmarkArquivoEsquecí a SenhaEsqueceu a sua senha?Coisas de GeekErro GeralErro Geral de servidorGerar SenhaPágina na WebSe você esqueceu a sua senha, o %s pode gerar uma nova para você. Digite o seu nome de usuário e o seu endereço de e-mail no formulário abaixo e nós enviaremos a nova senha para seu e-mail.ImportarImportar Bookmarks (Favoritos) do Arquivo do NavegadorImportar Bookmarks do del.icio.usImportar bookmarks do arquivo de bookmarksImportar bookmarks do del.icio.usInformaçõesInstruçõesInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: Arquivo > Importar e Exportar... > Exportar FavoritosLinhaEntrar no sistemaSair do SistemaMembro DesdeMozilla Firefox: Bookmarks > Gerenciar Bookmarks... > Arquivo > Exportar...Meus BookmarksNomeNetscape: Bookmarks > Gerenciar Bookmarks... > Ferramentas > Exportar...Nova SenhaNova senha gerada e enviada para %sPróximoNãoNenhum bookmark disponívelNenhum resultado encontrado para esta combinação de nome de usuário e endereço de e-mail Nenhum resultado encontrado pra este nome de usuárioNão EncontradoPágina %d de %dSenhaA senha digitada não é idêntica àquela digitada no campo de confirmação de senha.A senha deve ter um mínimo de 6 caracteres.Tags popularesPopularidadePostar para %sPostar para %s (versão Pop-Up)AnteriorPrivacidadePrivadoPerfilPúblicoTags RecentesBookmarks recentemente postados para %sRegistre-seFalha ao registrar-se. Por favor tente novamente.Tags RelacionadasRemover da Lista de ObservaçãoRequeridoErro de SQLSalva AlteraçõesSalvar o arquivo XML resultante em seu computador.BuscaBusca BookmarksResultados da BuscaSelecione o status de privacidade padrão para os seus bookmarks importadosPartilhado com a sua Lista de ObservaçãoCadastre-se aqui para criar uma conta gratuita no %s. Todas as informações solicitadas abaixo são necessárias.Ordenar por:Tags (Rótulos)Os detalhes submetidos por você estão incorretos. Por favor tente novamente.A URL requisitada não pôde ser processadaA URL requisitada não foi encontrada neste servidorOcorreu um erro na gravação do seu bookmark. Por favor tente novamente ou entre em contato com o administrador.Ocorreu um erro durante a geração de sua nova senha. Por favor tente novamente.Este nome de usuário já existe. Por favor, escolha outro nome de usuário.TítuloPara manter seguros os seus bookmarks, você deveria alterar esta senha (em seu perfil) na próxima vez que entrar no sistema.Usuário adicionado à sua lista de observaçãoUsuário removido da sua lista de observaçãoNome de UsuárioO nome de usuário não foi especificadoObservado PorErro de XML: %s na linha %dSimVocê não tem permissão para apagar este bookmarkVocê não tem permissão para editar este bookmarkVocê já submeteu este Bookmark.Você saiu do sistemaVocê completou o seu registro. Agora divirta-se!Você deve dar entrada no sistema para poder adicionar bookmarksVocê tem que digitar o seu endereço de e-mail.Você tem que digitar o seu nome de usuárioO seu bookmark deve possuir um título e um endereçoA sua nova senha é:todos os bookmarksmessage_die() foi chamada múltiplas vezesmeus bookmarkssemanticscuttle-0.98.5+dfsg/data/locales/pt_BR/LC_MESSAGES/messages.po000066400000000000000000001362741227405131600252560ustar00rootroot00000000000000# Scuttle pt-BR Translation # Copyright (C) 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # Marcelo Jorge Vieira (metal) , 2006. # # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-04-06 17:26-0300\n" "Last-Translator: Daniel duende Carvalho \n" "Language-Team: Portuguese/Brazil\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" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() foi chamada múltiplas vezes" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "Erro de SQL" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Linha" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Arquivo" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Informações" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Informações Importantes" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Um erro ocorreu" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Erro Geral" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Um erro crítico ocorreu" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Erro Crítico" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "MODO DEBUG" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Agregue todos os seus links favoritos em um só local, " "acessível de qualquer lugar." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Compartilhe seus bookmarks com todo o mundo, com amigos em " "sua lista de observação ou guarde-os apenas para você." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Identifique seus bookmarks com tantos tags quanto quiser, " "em vez de lutar contra pastas e diretórios." #: data/templates/default/about.tpl.php:9 #, fuzzy msgid "Register now" msgstr "Registre-se" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Coisas de Geek" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "O %1$s suporta a maior parte do API do del.icio." "us. Quase todas as adoráveis ferramentas desenvolvidas para aquele " "sistema podem ser modificadas para funcionar com o %1$s. Se você encontrar " "uma ferramenta que não permita a mudança de seu endereço de API, solicite a " "seu criador para que adicione esta configuração. Nunca se sabe. Ele pode " "simplesmente atender a seu pedido." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "Nome de Usuário" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "bookmark" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Você tem certeza disso!?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Apagar" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "Instruções" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Título" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Descrição" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Gerador de Bookmarks" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Arraste um dos seguintes Geradores de Bookmark para a área de favoridos de " "seu navegador. Clique nele toda vez que quiser adicionar a página na qual " "você se encontra ao %s" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Arraste um dos seguintes Geradores de Bookmark para a área de favoridos de " "seu navegador. Clique nele toda vez que quiser adicionar a página na qual " "você se encontra ao %s" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Postar para %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Postar para %s (versão Pop-Up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Ordenar por:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Data" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Anterior" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Próximo" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Página %d de %d" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "Tags (Rótulos)" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Editar" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, fuzzy, php-format msgid " and %s1 other%s" msgstr "e %s outros" #: data/templates/default/bookmarks.tpl.php:336 #, fuzzy, php-format msgid " and %2$s%1$s others%3$s" msgstr "e %s outros" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "Importar bookmarks do arquivo de bookmarks" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Copiar" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "Você não tem permissão para editar este bookmark" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Nenhum bookmark disponível" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Sobre" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 #, fuzzy msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "bookmark" msgstr[1] "bookmark" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Tags populares" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "Tags populares" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Endereço" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Requerido" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "Privado" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Tags (Rótulos)" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Separados por vírgula" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Privacidade" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Público" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Partilhado com a sua Lista de Observação" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Privado" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Apagar Bookmark" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Importar" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Importar bookmarks do arquivo de bookmarks" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox and Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Importar bookmarks do del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Nome" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "E-mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Apagar" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Nome de Usuário" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Nova Senha" #: data/templates/default/editprofile.tpl.php:22 #, fuzzy msgid "Confirm Password" msgstr "Confirme a Nova Senha" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Privado" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Gerar Senha" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Página na Web" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Salva Alterações" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 #, fuzzy msgid "Actions" msgstr "Instruções" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "Seus Bookmarks" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Não Encontrado" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "A URL requisitada não foi encontrada neste servidor" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Erro Geral de servidor" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "A URL requisitada não pôde ser processada" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "Partilhado com a sua Lista de Observação" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Instruções" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Entrar na página de exportação " "do del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Salvar o arquivo XML " "resultante em seu computador." #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Clique em Navegar...para encontrar este arquivo no seu " "computador. O tamanho máximo que o arquivo pode ter é 1MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "" "Selecione o status de privacidade padrão para os seus bookmarks importados" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Clique em Importar para começar a importar os bookmarks. Isso " "pode levar um minutinho..." #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Exporte seus bookmarks de seu navegador para um arquivo" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: Arquivo > Importar e Exportar... > Exportar " "Favoritos" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Bookmarks > Gerenciar Bookmarks... > Arquivo " "> Exportar..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Bookmarks > Gerenciar Bookmarks... > Ferramentas > " "Exportar..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Clique Procurar... para encontrar o arquivo de bookmarks gravado " "em seu computador. O tamanho máximo permitido para o arquivo é 1MB" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Senha" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Não pergunte minha senha por duas semanas" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Entrar no sistema" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Esqueceu a sua senha?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Se você esqueceu a sua senha, o %s pode gerar uma nova para você. Digite o " "seu nome de usuário e o seu endereço de e-mail no formulário abaixo e nós " "enviaremos a nova senha para seu e-mail." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Gerar Senha" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Membro Desde" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 #, fuzzy msgid "Watching" msgstr "Lista de Observação" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Observado Por" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 #, fuzzy msgid "Bookmarks" msgstr "%s Bookmarks" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "%s bookmarks" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Cadastre-se aqui para criar uma conta gratuita no %s. Todas as informações " "solicitadas abaixo são necessárias." #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Registre-se" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "Busca" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "Linha" #: data/templates/default/search.menu.php:34 #, fuzzy msgid "this user's bookmarks" msgstr "%s bookmarks" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "meus bookmarks" #: data/templates/default/search.menu.php:40 #, fuzzy msgid "my watchlist" msgstr "Adicionar à Lista de Observação" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "todos os bookmarks" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Busca" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "Tags Relacionadas" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "Apagar" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "Minhas Tags" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "Tags Populares Gerais" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Tags Relacionadas" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Tags Recentes" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Tags Relacionadas" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "Busca" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "Nenhum bookmark encontrado" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Tags Relacionadas" msgstr[1] "Tags Relacionadas" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "Apagar" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "Descrição" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "bookmark" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "Remover da Lista de Observação" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Remover da Lista de Observação" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Adicionar à Lista de Observação" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "Editar" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Sim" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Não" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "Nome de Usuário" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Alfabeto" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Popularidade" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "Página na Web" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 #, fuzzy msgid "Watchlist" msgstr "Lista de Observação" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Perfil" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Adicione um Bookmark" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Sair do Sistema" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "Perfil" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Você não tem permissão para apagar este bookmark" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Falha ao apagar bookmark" #: www/alltags.php:50 msgid "All Tags" msgstr "Todos os Tags" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, fuzzy, php-format msgid "User with username %s was not found" msgstr "O Nome de Usuário %s não foi encontrado" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "Falha ao apagar o bookmark" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "O seu bookmark deve possuir um título e um endereço" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Bookmark gravado" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Ocorreu um erro na gravação do seu bookmark. Por favor tente novamente ou " "entre em contato com o administrador." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Adicionar Bookmark" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Você deve dar entrada no sistema para poder adicionar bookmarks" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Meus Bookmarks" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Editar Bookmark" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "O Bookmark com a identificação %s não foi encontrado" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Você não tem permissão para editar este bookmark" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Erro durante a gravação do seu bookmark" #: www/history.php:61 msgid "History" msgstr "" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "" #: www/history.php:84 msgid "Address was not found" msgstr "" #: www/import.php:47 msgid "Could not open XML input" msgstr "Não foi possível abrir a entrada XML" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "Erro de XML: %s na linha %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Importar Bookmarks do del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Você já submeteu este Bookmark." #: www/import.php:104 msgid "Bookmark imported." msgstr "Bookmark importado." #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "Você já submeteu este Bookmark." #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "Nenhum bookmark encontrado" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "Bookmark importado." #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Importar Bookmarks (Favoritos) do Arquivo do Navegador" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "Você saiu do sistema" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Bookmarks recentes" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Bookmarks recentes" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "" #: www/index.php:97 msgid "All Bookmarks" msgstr "Todos os Bookmarks" #: www/jsScuttle.php:71 msgid "Available" msgstr "" #: www/jsScuttle.php:74 #, fuzzy msgid "Not Available" msgstr "Nenhum bookmark disponível" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "" "Os detalhes submetidos por você estão incorretos. Por favor tente novamente." #: www/password.php:36 msgid "You must enter your username." msgstr "Você tem que digitar o seu nome de usuário" #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "" "Você tem que digitar o seu endereço de e-" "mail." #: www/password.php:48 msgid "No matches found for that username." msgstr "Nenhum resultado encontrado pra este nome de usuário" #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Nenhum resultado encontrado para esta combinação de nome de usuário e " "endereço de e-mail " #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Ocorreu um erro durante a geração de sua nova senha. Por favor tente " "novamente." #: www/password.php:63 msgid "Your new password is:" msgstr "A sua nova senha é:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Para manter seguros os seus bookmarks, você deveria alterar esta senha (em " "seu perfil) na próxima vez que entrar no sistema." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "Informações da Conta de %s" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Nova senha gerada e enviada para %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Esquecí a Senha" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "O nome de usuário não foi especificado" #: www/profile.php:70 #, fuzzy msgid "My Profile" msgstr "Perfil" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "" "A senha digitada não é idêntica àquela digitada no campo de confirmação de " "senha." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "A senha deve ter um mínimo de 6 caracteres." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "O endereço de e-mail fornecido não é válido." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Um erro ocorreu durante a gravação das suas alterações." #: www/profile.php:129 msgid "Changes saved." msgstr "Alterações gravadas." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 #, fuzzy msgid "You must enter a username, password and e-mail address." msgstr "" "Você deve digitar um nome de usuário, uma senha, seu nome e " "endereço de e-mail." #: www/register.php:56 #, fuzzy msgid "This username has been reserved, please make another choice." msgstr "" "Este nome de usuário já existe. Por favor, escolha outro nome de usuário." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "" "Este nome de usuário já existe. Por favor, escolha outro nome de usuário." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "Este nome de usuário já existe. Por favor, escolha outro nome de usuário." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "Endereço de email inválido. Por favor tente novamente." #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "Endereço de email inválido. Por favor tente novamente." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Você completou o seu registro. Agora divirta-se!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Falha ao registrar-se. Por favor tente novamente." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Bookmarks recentemente postados para %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Busca Bookmarks" #: www/search.php:89 msgid "Search Results" msgstr "Resultados da Busca" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "Falha ao apagar o bookmark" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "Falha ao apagar o bookmark" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "Falha ao apagar o bookmark" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "Falha ao apagar o bookmark" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "Falha ao apagar o bookmark" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "Nome de Usuário" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Usuário removido da sua lista de observação" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Usuário adicionado à sua lista de observação" #: www/watchlist.php:104 #, fuzzy msgid "My Watchlist" msgstr "Meus Observados" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "Online Bookmarks Manager" #~ msgstr "Gerenciador Online de Bookmarks" #~ msgid "Recent Bookmarks" #~ msgstr "Bookmarks Recentes" #~ msgid "You are already logged in." #~ msgstr "Você já entrou no sistema." #~ msgid "%s Profile" #~ msgstr "Perfil de %s" #~ msgid "Your name and e-mail address are required and must be completed." #~ msgstr "" #~ "Seu nome e endereço de email são requeridos e devem ser preenchidos." #~ msgid "my watched bookmarks" #~ msgstr "meus bookmarks observados" #~ msgid "for" #~ msgstr "por" #~ msgid "Watched Bookmarks" #~ msgstr "Bookmarks Observados" #~ msgid "%s Watched Bookmarks" #~ msgstr "%s Bookmarks Observados" #~ msgid "Your" #~ msgstr "Seu" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Registre-se agora para " #~ "começar a usar o %s!" #~ msgid "" #~ "%s is based on an " #~ "open-source project licensed under the GNU " #~ "General Public License. This means you can host it on your own web " #~ "server for free, whether it is on the Internet, a private network or just " #~ "your own computer." #~ msgstr "" #~ "O %s é baseado em um " #~ "projeto open source licenciado sob a GNU " #~ "General Public Licence. Isso significa que você pode hospedá-lo em " #~ "seu próprio servidor de rede gratuitamente, esteja ele na Internet, em " #~ "uma rede privada ou apenas em seu computador." #~ msgid "URL" #~ msgstr "URL" #~ msgid " and 1 other" #~ msgstr "e 1 outro" #~ msgid "Input the default tags you want added to your imported bookmarks" #~ msgstr "" #~ "Digite as tags padrão que você deseja que sejam adicionadas aos bookmarks " #~ "importados" #~ msgid "Show" #~ msgstr "Mostrar" #~ msgid "My Popular Tags" #~ msgstr "Minhas Tags Populares" #~ msgid "E-mail" #~ msgstr "E-mail" #~ msgid "Watched" #~ msgstr "Observado" #~ msgid "All Recent" #~ msgstr "Todos os Recentes" semanticscuttle-0.98.5+dfsg/data/locales/ru_RU/000077500000000000000000000000001227405131600213335ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/ru_RU/LC_MESSAGES/000077500000000000000000000000001227405131600231205ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/ru_RU/LC_MESSAGES/messages.mo000066400000000000000000000703511227405131600252720ustar00rootroot00000000000000u|POQ+xZ/qnWCg  !. 7DS d$q  , /M } #% '-Ujq#tfNxHWgx%}  % 0 5 < L e p | %   . ! ! $!E!\!x! !,!*!! !"&"17"i"""""0"+#$F#k#p#v## # ##### $$"$'$0$$"$!%3%#D%!h% % %/%L% &&.&U&Z& m&y&~&& & & &Q& ' ' '('K-'y' }' ''%'''''j'#f( ( (W(B(F=)")) ) ) ))'),*F*Y* j*w* * ***** ** ++ +%+ ,+8+V+ _+&l+ ++!++++ , ,\!,~,,, ,, ,,,>,;-R-h-)q- -- ---- ...;.=A.(...G.J/Wj/H/, 0980<r0f011h!1+1"111 1#2B2K2f2l2 }22 2222@2+3)A33k3)33(33 4H>44.44 44 55 15 =5G5 J5U5m5p5(5 5 5555.567^858D59>z;=;:;@2<s<== >>>!>>'>!'?"I?(l?=?5? @@ 1@<@T@d@@6@@<@i)AAAA4A, B#:B)^BB%BKB% C 1C&>C^eCCDCE"EF'G#6GZGXoG'GG4G&4H'[H#H!HHHHHI+IAI]IyI>II+IOILJ!]J2JJJ*JK;.KHjKKMK&L.LXNL*L5L*M&3M2ZMHM+M;N>N GNTNpN NNN'N$N)OAOPO iO!tOO P;P<PQL,3jb/a6K^%]J_i?Y{fIy  X.e 7C):B}(-W*=w[d0LZrO$ FG &5p~N2;q s<1og#'!M"4nUmvAtHRz at least 5 characters, alphanumeric (no spaces, no dots or other special ones) to send you your password if you forget it to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s and all his bookmarks and tags were deleted.%s: Recent bookmarks(Come back to previous page.)Share your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd NoteAdd Tag LinkAdd a BookmarkAdd a contact...Add new linkAdd search plugin into your browser:Add to WatchlistAddressAddress was not foundAdminAll BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Are you sure?AvailableBad indentationBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarksBookmarks found: Bookmarks from other users for this tagBookmarks imported: CancelChanges saved.Check all URLs (May take some time)Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteClick one of the following bookmarklets to add a button you can click whenever you want to add the page you are on to %sClose contactsComma-separatedConfirm PasswordCopyCopy this bookmark to YOUR bookmarks.Could not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link Between TagsDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Link Between TagsEdit Tag Common DescriptionEdit Tag DescriptionEdit linkEdit the common description of this bookmarkEdit your personal description of this tagEmailError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomeHomepageIf you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport StructureImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesInvalid TokenJust visible by you and your contacts.LastLast modification:Last updateLineLog InLog OutManage usersMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew UsersNew links between tags: New password generated and sent to %sNextNoNo bookmarks availableNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: france=frenchcountryNote: use ">" to include one tag in another. e.g.: europe>france>parisNumber of bookmarks for this queryOldOnly your bookmarks for this tagOther actionsPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPopular TagsPopular Tags From All UsersPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivatePrivate NotePrivate Note on this bookmarkProblem with ProfilePropulsed by PublicRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRemove the tag from the selectionRemove this contactRenameRename TagRename TagsSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSearch...See all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksShared with Watch ListShared with WatchlistSort by:Store, share and tag your favourite linksSynonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'Tags:The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThe secret tag "system:imported" allows you to find imported bookmarks.The secret tag "system:unfiled" allows you to find bookmarks without tags.There was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This bookmark is certified by an admin user.This username already exists, please make another choice.This username has been reserved, please make another choice.This username is not valid (too short, too long, forbidden characters...), please make another choice.TipsTitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.Type a username to add it to your contacts.Unsatisfied? You can also try our UpdateUser added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersUsers managementWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted some of these bookmarks.You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbycreated inedit common descriptioninis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyouyou can freely host it on your own web server.Project-Id-Version: Semantic Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2010-04-30 02:35+0400 Last-Translator: Sergey Ulitin Language-Team: Sergey Ulitin Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Poedit-Language: Russian X-Poedit-Country: Russia X-Poedit-SourceCharset: utf-8 как минимум 5 символов, буквенно-цифровой (без пробелов, без точек или других спецсимволов) чтобы выслать Вам Вамш пароль, если Вы его забудете чтобы начать пользоваться %s!%1$s поддерживает большинство del.icio.us API. Большинство инструментов сделаных для этой системы, могут быть изменены для работы с %1$s. Если Вы нашли инструмент, который не позволяет изменить адрес API, попросите авторов добавить эту настройку. Возможно они это сделают.%s просмотр информации об аккаунте%s и всего закладки и тэги удалены.%s: Недавно добавленные закладки(Вернуться на предыдущую страницу.)Делитесь ссылками со всем миром, с Вашими друзьями или оставьте их приватными.Храните Ваши любимые ссылки в одной месте, доступном отовсюду.Помечайте тэгами Ваши ссылки с таким количеством меток сколько хотите, вместо того чтобы бороться со свалкой ссылок.О сайтеДанные аккаунтаДействияДобавить закладкуДобавить заметкуДобавить тэг к ссылкеДобавить закладкуДобавить контакт...Добавить новую ссылкуДобавить плагин поиска в браузер:Добавить в список наблюденияАдресАдрес не найденАдминВсе закладкиВсе тэгиВсе пользователиАлфавитуПроизошла критическая ошибкаПроизошла ошибкаОшибка при сохранении изменений.Ответ на вопрос спам-фильтра не верен. Попробуйте еще раз.Вы уверены?ДоступноОшибка в отступеОписание закладки обновленоЗакладка импортирована.Закладка сохраненаЗакладка # %s не найденаЗакладкиНайденные закладки: Ссылки других пользователей с этим тэгомЗакладки загружены: ОтменаИзменения сохранены.Проверить все ссылки (может занять некоторое время)Нажмите Просмотр... чтобы выбрать сохраненный файл закладок на Вашем компьютере. Максимальный размер файла - 1MBYf;vbnt Просмотр... чтобы выбрать файл на Вашем компьютере. Максимальный размер файла - 1MBНажмите Импорт для начала импорта закладок; это может занять минутуКликните на один из букмарклетов чтобы добавить кнопку, на которую Вы можете нажать в любой момент когда захотите добавить страницу на которой находитесь в %sБлизкие контактыРазделенный запятымиПодтвердите парольКопироватьСкопировать эту ссылку закладку в ВАШИ закладкиНевозможно открыть XMLСоздатьСоздать ссылку на другой тэгСоздать новую ссылкуСоздать новую ссылку:Критическая ошибкаВажная информацияРежим DEBUGДатеУдалитьУдалить закладкуDelete Link between TagsУдалить тэгУдалить ссылкуУдалить ссылкуОписаниеНе запрашивать мой пароль 2 неделиE-mailНекорректный адрес E-mail.Некорректный адрес e-mail. Попробуйте еще раз.ИзменитьИзменить закладкуИзменить описание закладкиEdit Link between TagsEdit Tag common descriptionИзменить описание тэгаИзменить ссылкуИзменить описание этой закладкиИзменить личное описание этой закладкиEmailОшибка во время сохранения Вашей закладкиСуществующие ссылки:Экспорт закладокЭкспортировать Ваши закладки из браузера в файлОшибка создания ссылкиОшибка при удалении закладкиОшибка удаления ссылкиОшибка удаления тэгаОшибка переименования тэгаОшибка при изменении описания закладкиFailed to update the tag common descriptionОшибка обновления описания тэгаФайлПерваяЗабытый парольЗабыли пароль?Geek StuffОбщая ошибкаОшибка сервераСгенерировать парольПерейти к закладкамHTML файл (для браузеров)ИсторияИстория для %sДомойДомашняя страницаЕсли Вы забыли пароль, %s может создать новый. Введите имя пользователя и адрес e-mail Вашего аккаунта в форме ниже и мы вышлем Вам новый пароль.ИмпортИмпортировать закладки из файлаИмпортировать закладки из del.icio.usИмпорт структурыИмпортировать закладки из файла закладокИмпортировать закладки из del.icio.usИнформацияИнструкцииInternet Explorer, Mozilla Firefox и NetscapeInternet Explorer: File > Import and Export... > Export FavoritesНеверный символВидимо только для Вас и Ваших контактов.ПоследняяПоследнее изменение:Последнее изменениеLineВходВыйтиУправление пользователямиУчастник сМеню тэговMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...Мои закладкиМой профильМой список наблюденияИмяNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...НовыйНовый парольНовые ПользователиНовые ссылки между тэгов: Новый пароль отправлен по адресу %sСледующаяНетНи одной закладки недоступноСсылок нетНичего не найдено для этого имени пользователя и адреса e-mail.Для этого пользователя ничего не найдено.НедоступноНе найденоВнимание: включение тэга в '%s' тэг (например: %s>страны) выведет тэг в списке менюВнимание: используйте "=" чтобы сделать два тэга синонимами. например: россия=рфВнимание: используйте ">" чтобы включить один тэг в другой. например: европа>россия>москваКоличество закладок для этого запросаСтарыйТолько Ваши ссылки с этим тэгомДругие действияСтраница%d из %dПарольПароль и подтверждение пароля не совпадают.Пароль должен быть минимум 6 символов длиной.Доступ запрещен.Личные данныеПопулярные тэгиПопулярные тэги всех пользователейПопулярностиДобавить в %sДобавить в %s (pop-up)ПредыдущаяКонфиденциальностьЛичныйЛичная заметкаЛичная заметка к этой закладкеВозникла проблема сПрофильPropulsed by ПубличныйПоследние ТэгиПоследние закладки добавленные в %sРегистрацияЗарегистрируйтесь сейчасОшибка регистрации. Пожалуйста попробуйте еще раз.Связанные ТэгиУдалить из списка наблюденияRemove the tag from the selectionУдалить этот контактПереименоватьПереименовать тэгПереименовать тэгиОшибка SQLСохранить измененияСохраните полученныйXML файл на Ваш компьютерПоискПоиск закладокРезультаты поискаПоиск...Просмотреть все тэги этого пользователяПросмотреть всех пользователейПросмотреть все свои тэгиПросмотреть популярные тэгиВыберете уровень доступа, который будет применяться по умолчанию к импортируемый закладкамShared with WatchlistОткрыть для листа наблюденияСортировать по:Сохраняйте, делитесь и отмечайте Ваши любимые ссылкиСинонимы:Tag common description updatedТэг удаленОписание тэга обновленоTag link createdТэг ссылки удаленТэг переименованТэгиТэги включенные в тэг '%s'Тэги:Вы ввели некорректные данные. Попробуйте еще раз.Запрашиваемый адрес не может быть обработанЗапрашиваемый адрес не найден на сервереСекретный тэг "system:imported" позволяет Вам находить импортированные закладки.Секретный тэг "system:unfiled" позволяет Вам находить закладки без тэгов.Произошла ошибка при сохранении закладки. Попробуйте еще раз или свяжитесь с администрацией.Произошла ошибка во время генерации имени пользователя. Попробуйте еще раз.Эта закладка заверена администрацией.Это имя пользоватея уже существует, пожалуйста выберете другое.Это имя пользователя занято, пожалуйста выберете другое.Некорректное имя пользователя (слишком короткое, слишком длинное или запрещенные символы...), пожалуйста выберете другое.ПодсказкиНазваниеДля обеспечения безопасности, Вы должны изменить пароль в профиле, следующий раз когда войдете в систему.Введите имя пользователя чтобы добавить его в контакты.Неудовлетворены? Вы еще можете поробовать наш ИмзенитьПользователь добавлен в список наблюденияПользователь удален из списка наблюденияПользователь с именем %s не найденИмя пользователяИмя пользователя не введеноПользователиУправление пользователемНаблюдаетсяWatchingСписок наблюденияОшибка XML: %s в строке %dXML файл (как del.icio.us)ДаВы должны ввести имя пользователя, пароль и адрес e-mail.У Вас нет прав на удаление этой закладкиУ Вас нет доступа для редактирования этой закладкиВы уже сохранили некоторые из этих закладок.Вы уже добавили эту закладку.Вы вышлиПоздравляем! Вы успешно зарегистрировались!Вы должны войти в систему, прежде чем добавлять закладки.Вы должны ввести e-mail.Вы должны ввести имя пользователя.Закладка должна иметь название и адресВаш новый пароль:все закладкивсе тэги этого пользователявсе Ваши тэгизакладказакладкизакладка(и)закладки добавленосоздано визменит описаниевлицензировано поmessage_die() было вызвано несколько раз.мои закладкимой лист наблюденияПрофильзакладки этого пользователяВамиВы можете свободно устанавливать его на свой веб-сервер.semanticscuttle-0.98.5+dfsg/data/locales/ru_RU/LC_MESSAGES/messages.po000066400000000000000000001533221227405131600252750ustar00rootroot00000000000000# SemanticScuttle ru_RU Translation # Copyright (C) 2005 - 2009 SemanticScuttle project # This file is distributed under the same license as the SemanticScuttle package. # Sergey Ulitin # msgid "" msgstr "" "Project-Id-Version: Semantic Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2010-04-30 02:35+0400\n" "Last-Translator: Sergey Ulitin \n" "Language-Team: Sergey Ulitin \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" "X-Poedit-Language: Russian\n" "X-Poedit-Country: Russia\n" "X-Poedit-SourceCharset: utf-8\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() было вызвано несколько раз." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "Ошибка SQL" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "Line" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "Файл" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Информация" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Важная информация" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Произошла ошибка" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Общая ошибка" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Произошла критическая ошибка" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Критическая ошибка" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "Режим DEBUG" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Храните Ваши любимые ссылки в одной месте, доступном " "отовсюду." #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Делитесь ссылками со всем миром, с Вашими друзьями или " "оставьте их приватными." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Помечайте тэгами Ваши ссылки с таким количеством меток " "сколько хотите, вместо того чтобы бороться со свалкой ссылок." #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "Зарегистрируйтесь сейчас" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr " чтобы начать пользоваться %s!" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Geek Stuff" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "лицензировано по" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "Вы можете свободно устанавливать его на свой веб-сервер." #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s поддерживает большинство del.icio.us API. Большинство инструментов сделаных для этой системы, могут быть изменены " "для работы с %1$s. Если Вы нашли инструмент, который не позволяет изменить " "адрес API, попросите авторов добавить эту настройку. Возможно они это " "сделают." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "Подсказки" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "Добавить плагин поиска в браузер:" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" "Секретный тэг \"system:unfiled\" позволяет Вам находить закладки без тэгов." #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" "Секретный тэг \"system:imported\" позволяет Вам находить импортированные " "закладки." #: data/templates/default/admin.tpl.php:5 msgid "Users management" msgstr "Управление пользователем" #: data/templates/default/admin.tpl.php:14 #, fuzzy msgid "Public/Shared/Private" msgstr "Публичный/Общий/Приватный" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "закладка(и)" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Вы уверены?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Удалить" #: data/templates/default/admin.tpl.php:27 msgid "Other actions" msgstr "Другие действия" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "Проверить все ссылки (может занять некоторое время)" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 #, fuzzy msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" "Совместное описание: эти поля могут быть просмотрены и изменены любым " "пользователем" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Название" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Описание" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "Последнее изменение:" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "Имзенить" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "Отмена" #: data/templates/default/bookmarklet.inc.php:1 #, fuzzy msgid "Bookmarklet" msgstr "Закладочник" #: data/templates/default/bookmarklet.inc.php:11 #, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Кликните на один из букмарклетов чтобы добавить кнопку, на которую Вы можете " "нажать в любой момент когда захотите добавить страницу на которой " "находитесь в %s" #: data/templates/default/bookmarklet.inc.php:20 #, fuzzy, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Перетяните мышкой bookmarklets в закладки Вашего браузера и нажмите на него, " "в любой момент когда захотите добавить страницу на которой находитесь в %s" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Добавить в %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Добавить в %s (pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 #, fuzzy msgid "Bookmarks on this page are managed by an admin user." msgstr "Закладки на этой странице управляются администратором." #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 #, fuzzy msgid "Edit the common description of this tag" msgstr "Изменить описание этого тэга" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "Изменить описание этой закладки" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "Изменить личное описание этой закладки" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Сортировать по:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Дате" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "Ссылки других пользователей с этим тэгом" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "Только Ваши ссылки с этим тэгом" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "Первая" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Предыдущая" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Следующая" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Последняя" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Страница%d из %d" #: data/templates/default/bookmarks.tpl.php:295 msgid "Tags:" msgstr "Тэги:" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Изменить" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "Последнее изменение" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr " добавлено" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "Вами" #: data/templates/default/bookmarks.tpl.php:333 #, fuzzy, php-format msgid " and %s1 other%s" msgstr " и %s1 другие%s" #: data/templates/default/bookmarks.tpl.php:336 #, fuzzy, php-format msgid " and %2$s%1$s others%3$s" msgstr " и %2$s%1$s другими%3$s" #: data/templates/default/bookmarks.tpl.php:350 msgid "Copy this bookmark to YOUR bookmarks." msgstr "Скопировать эту ссылку закладку в ВАШИ закладки" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Копировать" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "Эта закладка заверена администрацией." #: data/templates/default/bookmarks.tpl.php:430 msgid "Private Note on this bookmark" msgstr "Личная заметка к этой закладке" #: data/templates/default/bookmarks.tpl.php:444 #, fuzzy msgid "Come back to the top of this page." msgstr "Вернуться наверх этой страницы." #: data/templates/default/bookmarks.tpl.php:444 #, fuzzy msgid "Top of the page" msgstr "Верх страницы" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Ни одной закладки недоступно" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "О сайте" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "Propulsed by " #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "закладка" msgstr[1] "закладки" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Популярные тэги" #: data/templates/default/dynamictags.inc.php:108 msgid "Popular Tags From All Users" msgstr "Популярные тэги всех пользователей" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Адрес" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 #, fuzzy msgid "Required" msgstr "Обязательно" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "Добавить заметку" #: data/templates/default/editbookmark.tpl.php:61 #, fuzzy msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" "Вы можете использовать \"анкоры\" чтобы разделать атрибуты, например: " "[publisher]blah[/publisher] " #: data/templates/default/editbookmark.tpl.php:64 #, fuzzy msgid "Suggested anchors: " msgstr "Предлагаемые анкоры: " #: data/templates/default/editbookmark.tpl.php:76 msgid "Private Note" msgstr "Личная заметка" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "Видимо только для Вас и Ваших контактов." #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Тэги" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Разделенный запятыми" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" "Внимание: используйте \">\" чтобы включить один тэг в другой. например: " "европа>россия>москва" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" "Внимание: используйте \"=\" чтобы сделать два тэга синонимами. например: " "россия=рф" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Конфиденциальность" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Публичный" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Shared with Watchlist" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "Личный" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Удалить закладку" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "изменит описание" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Импорт" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Импортировать закладки из файла закладок" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox и Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Импортировать закладки из del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Имя" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 msgid "Email" msgstr "Email" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Удалить" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Данные аккаунта" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Имя пользователя" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Новый пароль" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Подтвердите пароль" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Личная заметка" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Сгенерировать пароль" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Личные данные" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Домашняя страница" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Сохранить изменения" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Действия" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "Экспорт закладок" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "HTML файл (для браузеров)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "XML файл (как del.icio.us)" #: data/templates/default/editprofile.tpl.php:70 #, fuzzy msgid "CSV file (for spreadsheet tools)" msgstr "CSV файл (для табличных процессоров)" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Не найдено" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "Запрашиваемый адрес не найден на сервере" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Ошибка сервера" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "Запрашиваемый адрес не может быть обработан" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "Открыть для листа наблюдения" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Инструкции" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Войдите на страницу экспорта на " "del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Сохраните полученныйXML " "файл на Ваш компьютер" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Yf;vbnt Просмотр... чтобы выбрать файл на Вашем компьютере. " "Максимальный размер файла - 1MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "" "Выберете уровень доступа, который будет применяться по умолчанию к " "импортируемый закладкам" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Нажмите Импорт для начала импорта закладок; это может занять " "минуту" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Экспортировать Ваши закладки из браузера в файл" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: File > Import and Export... > Export Favorites" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Нажмите Просмотр... чтобы выбрать сохраненный файл закладок на " "Вашем компьютере. Максимальный размер файла - 1MB" #: data/templates/default/importStructure.tpl.php:24 #, fuzzy msgid "Create your structure into a simple text file and following this model:" msgstr "Создайте структуру в простом текстовом файле используя эту модель:" #: data/templates/default/importStructure.tpl.php:35 #, fuzzy msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" "Затем импортируйте файл. Тэги и их отношения будут добавлены в Ваш профиль." #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Пароль" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Не запрашивать мой пароль 2 недели" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Вход" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Забыли пароль?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Если Вы забыли пароль, %s может создать новый. Введите имя пользователя и " "адрес e-mail Вашего аккаунта в форме ниже и мы вышлем Вам новый пароль." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Сгенерировать пароль" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Участник с" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Watching" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Наблюдается" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Закладки" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "Перейти к закладкам" #: data/templates/default/register.tpl.php:11 #, fuzzy, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Зарегистрируйтесь здесь, чтобы создать бесплатный %s аккаунт. Вся поля " "обязательны для заполнения" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" " как минимум 5 символов, буквенно-цифровой (без пробелов, без точек или " "других спецсимволов)" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr " чтобы выслать Вам Вамш пароль, если Вы его забудете" #: data/templates/default/register.tpl.php:33 #, fuzzy msgid "Antispam question" msgstr "Антиспам вопрос" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Регистрация" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "Поиск..." #: data/templates/default/search.menu.php:28 msgid "in" msgstr "в" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "закладки этого пользователя" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "мои закладки" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "мой лист наблюдения" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "все закладки" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Поиск" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "Связанные тэги" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "Добавить новую ссылку" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "Удалить ссылку" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "Тэги включенные в тэг '%s'" #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "Меню тэгов" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "Просмотреть все свои тэги" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "все Ваши тэги" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "Просмотреть все тэги этого пользователя" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "все тэги этого пользователя" #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "Просмотреть популярные тэги" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "Рекомендуемые Тэги" #: data/templates/default/sidebar.block.menu2.php:25 #, fuzzy msgid "This menu is composed of keywords (tags) organized by admins." msgstr "Это меню состоит из ключевых слов (тэгов) управляемых администраицей." #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Последние Тэги" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Связанные Тэги" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "Что искали недавно" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "Количество закладок для этого запроса" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Переименовать тэг" msgstr[1] "Переименовать тэги" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "Удалить тэг" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "Изменить описание тэга" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "Edit Tag common description" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "Создать ссылку на другой тэг" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "Новые Пользователи" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "закладки" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "Просмотреть всех пользователей" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "Все пользователи" #: data/templates/default/sidebar.block.watchlist.php:19 #, fuzzy msgid "Close contacts are mutual contacts" msgstr "Близкие контакты взаимных контактов" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "Близкие контакты" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "Добавить контакт..." #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "Введите имя пользователя чтобы добавить его в контакты." #: data/templates/default/sidebar.block.watchlist.php:44 msgid "Remove this contact" msgstr "Удалить этот контакт" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Удалить из списка наблюдения" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Добавить в список наблюдения" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "Изменить ссылку" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "Синонимы:" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "Создать новую ссылку:" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" "Внимание: включение тэга в '%s' тэг (например: %s>страны) выведет тэг в " "списке меню" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "Создать" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "Существующие ссылки:" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "Ссылок нет" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Да" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Нет" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "Удалить ссылку" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "Создать новую ссылку" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "Старый" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "Новый" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "Переименовать" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Алфавиту" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Популярности" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 msgid "Home" msgstr "Домой" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Список наблюдения" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Профиль" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Добавить закладку" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Выйти" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "Админ" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "Профиль" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "создано в" #: www/admin.php:32 msgid "Manage users" msgstr "Управление пользователями" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "%s и всего закладки и тэги удалены." #: www/admin.php:76 msgid "Problem with " msgstr "Возникла проблема с" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "У Вас нет прав на удаление этой закладки" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Ошибка при удалении закладки" #: www/alltags.php:50 msgid "All Tags" msgstr "Все тэги" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "Пользователь с именем %s не найден" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "Доступ запрещен." #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "Описание закладки обновлено" #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "Ошибка при изменении описания закладки" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "Изменить описание закладки" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "Remove the tag from the selection" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "Закладка должна иметь название и адрес" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Закладка сохранена" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "(Вернуться на предыдущую страницу.)" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Произошла ошибка при сохранении закладки. Попробуйте еще раз или свяжитесь с " "администрацией." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Добавить закладку" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Вы должны войти в систему, прежде чем добавлять закладки." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Мои закладки" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Изменить закладку" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Закладка # %s не найдена" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "У Вас нет доступа для редактирования этой закладки" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Ошибка во время сохранения Вашей закладки" #: www/history.php:61 msgid "History" msgstr "История" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "История для %s" #: www/history.php:84 msgid "Address was not found" msgstr "Адрес не найден" #: www/import.php:47 msgid "Could not open XML input" msgstr "Невозможно открыть XML" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "Ошибка XML: %s в строке %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Импортировать закладки из del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Вы уже добавили эту закладку." #: www/import.php:104 msgid "Bookmark imported." msgstr "Закладка импортирована." #: www/importNetscape.php:95 msgid "You have already submitted some of these bookmarks." msgstr "Вы уже сохранили некоторые из этих закладок." #: www/importNetscape.php:115 msgid "Bookmarks found: " msgstr "Найденные закладки: " #: www/importNetscape.php:116 msgid "Bookmarks imported: " msgstr "Закладки загружены: " #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Импортировать закладки из файла" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "Ошибка в отступе" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "Новые ссылки между тэгов: " #: www/importStructure.php:72 msgid "Import Structure" msgstr "Импорт структуры" #: www/index.php:38 msgid "You have now logged out" msgstr "Вы вышли" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Недавно добавленные закладки" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Недавно добавленные закладки" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Сохраняйте, делитесь и отмечайте Ваши любимые ссылки" #: www/index.php:97 msgid "All Bookmarks" msgstr "Все закладки" #: www/jsScuttle.php:71 msgid "Available" msgstr "Доступно" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Недоступно" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "Вы ввели некорректные данные. Попробуйте еще раз." #: www/password.php:36 msgid "You must enter your username." msgstr "Вы должны ввести имя пользователя." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "Вы должны ввести e-mail." #: www/password.php:48 msgid "No matches found for that username." msgstr "Для этого пользователя ничего не найдено." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Ничего не найдено для этого имени пользователя и адреса e-mail." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Произошла ошибка во время генерации имени пользователя. Попробуйте еще раз." #: www/password.php:63 msgid "Your new password is:" msgstr "Ваш новый пароль:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Для обеспечения безопасности, Вы должны изменить пароль в профиле, следующий " "раз когда войдете в систему." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "%s просмотр информации об аккаунте" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Новый пароль отправлен по адресу %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Забытый пароль" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Имя пользователя не введено" #: www/profile.php:70 msgid "My Profile" msgstr "Мой профиль" #: www/profile.php:110 msgid "Invalid Token" msgstr "Неверный символ" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Пароль и подтверждение пароля не совпадают." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Пароль должен быть минимум 6 символов длиной." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Некорректный адрес E-mail." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Ошибка при сохранении изменений." #: www/profile.php:129 msgid "Changes saved." msgstr "Изменения сохранены." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 #, fuzzy msgid "Failed to delete SSL client certificate." msgstr "Ошибка удаления тэга" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "Вы должны ввести имя пользователя, пароль и адрес e-mail." #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "Это имя пользователя занято, пожалуйста выберете другое." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Это имя пользоватея уже существует, пожалуйста выберете другое." #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "Некорректное имя пользователя (слишком короткое, слишком длинное или " "запрещенные символы...), пожалуйста выберете другое." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "Некорректный адрес e-mail. Попробуйте еще раз." #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "Ответ на вопрос спам-фильтра не верен. Попробуйте еще раз." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Поздравляем! Вы успешно зарегистрировались!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Ошибка регистрации. Пожалуйста попробуйте еще раз." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Последние закладки добавленные в %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Поиск закладок" #: www/search.php:89 msgid "Search Results" msgstr "Результаты поиска" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "Неудовлетворены? Вы еще можете поробовать наш " #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "Tag link created" #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "Ошибка создания ссылки" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "Добавить тэг к ссылке" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "Тэг ссылки удален" #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "Ошибка удаления ссылки" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "Delete Link between Tags" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "Edit Link between Tags" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "Tag common description updated" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "Failed to update the tag common description" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "Тэг удален" #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "Ошибка удаления тэга" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "Описание тэга обновлено" #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "Ошибка обновления описания тэга" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "Тэг переименован" #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "Ошибка переименования тэга" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "Пользователи" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Пользователь удален из списка наблюдения" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Пользователь добавлен в список наблюдения" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Мой список наблюдения" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 #, fuzzy msgid "Come back to " msgstr "(Вернуться на предыдущую страницу.)" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" semanticscuttle-0.98.5+dfsg/data/locales/vn_VN/000077500000000000000000000000001227405131600213255ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/vn_VN/LC_MESSAGES/000077500000000000000000000000001227405131600231125ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/vn_VN/LC_MESSAGES/messages.mo000066400000000000000000000740351227405131600252670ustar00rootroot000000000000008 ()BOS+x\/snWEg  #0 9FU f$s  | ,/. @ N X #h   %  ' $!49! n!!!#!t!f>"N"x"m#"|#Q# #"#"$2$C$%H$n$$$$$G$%#% 8%C%H%O%_% x% %% %%%%T&[&.x&& & &&&' #',-''Z'*'' '''1''(A([(u((0(+($)))<)A)G)Z) s) ~)))))))))M*O*+" +!0+R+#c+!+ + +/+L+ ?,&M,t, y,, ,, ,,, , , ,Q, <- I- T-a-Kf-- - --%- ...+.j4.#. . .W.B3/Fv/"// / 0 0!0'*0,R0000 00 0 00111 '141 R1`1 h1v1}1 111 1&1 12!2?2S2Z2q2 z2 2\2223 33 ;3I3[3>l333Y324);4e4 y44 4444 4445=5(]5.5G5J5QH6W6H6,;7=h797<7f888h8:839+C9"o99-99 9#:):2:M:S: d:q:z:%: :: ::::@:+?;)k;U;3;)<I<(a<3<H<=.%=T= j=x= == = == ====(> 0> =>J>R>h>.l>>$J@o@@DAGAeABCB'bB!BBp]CCsDxDDDD.DEE8ECPE!E E*E E!EFFG-GGG$YG~GTGQG?H \H}HH&H H H5I =III0aI@I$I_I.XJ JJFJJKzILL!lMdMM N#N&NNNCN"AOdO4kOO#OXO;PLPbPyPPP-PPPP Q4QGQQ)QA)RkRqRR.R%RRS/3S*cS5SS;S T(TPGT#T0T"T!U)2U<\U9U3U$V,V 1V>V*QV|VV VVVVW/WMW SW_WWXLX3:YnY.Y.Y YY.Yh-ZZEZ Z[$[@[Z[a[ [[![[[["k\\!\\\I]O]b]*]D]]]*]%^kA^ ^^^^`_r_;j``-``` a9a1Maaa<aa@b Db Qb_bvb b bb-bbbb c c?c&^c cc/cc&c!d>d Td-`d dddfd 9eEeaexe<e&e)e0fVFf0f&ffgZggh%*hPh4nh2h!h$hi/#iSiJgiEiMihFjfjkxkvlMl~lDWmFmtmXn ^njnbo uoPoMo !p5.pKdpDp.p$q'8q`q!zqqqq.qq)r9r)Przrr~r5s7RssAt(]tt#t=tOu)Sul}u#u,v/;vkvvv"vv vvww'w"Fw!iww,wwIw )= `'!iK/B>nWG,|~'5D^C36TgPA87o#7L"] ("E.Ul& #fHM!F-/;IJS%uQ {&d0?11*<0()w  $8, x4Opj*Z a qYbh3N.+vy}6t2 %5@ek[92_r \sXRV$+czm-4: and %2$s%1$s others%3$s and %s1 other%s at least 5 characters, alphanumeric (no spaces, no dots or other special ones) to send you your password if you forget it to start using %s!%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it.%s Account Information%s and all his bookmarks and tags were deleted.%s: Recent bookmarks(Come back to previous page.)Share your bookmarks with everyone, with friends on your watchlist or just keep them private.Store all your favourite links in one place, accessible from anywhere.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAccount DetailsActionsAdd BookmarkAdd NoteAdd Tag LinkAdd a BookmarkAdd a contact...Add new linkAdd search plugin into your browser:Add to WatchlistAddressAddress was not foundAdminAdmin tips: Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.php.All BookmarksAll TagsAll usersAlphabetAn critical error occuredAn error occuredAn error occurred while saving your changes.Antispam answer is not valid. Please try again.Antispam questionAre you sure?AvailableBad indentationBookmark common description updatedBookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletBookmarksBookmarks found: Bookmarks from other users for this tagBookmarks imported: Bookmarks on this page are managed by an admin user.CSV file (for spreadsheet tools)CancelChanges saved.Check all URLs (May take some time)Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteClick one of the following bookmarklets to add a button you can click whenever you want to add the page you are on to %sClose contactsClose contacts are mutual contactsCollaborative description: these fields can be viewed and modified by every usersCome back to Come back to the top of this page.Comma-separatedConfirm PasswordCopyCopy this bookmark to YOUR bookmarks.Could not open XML inputCreateCreate a link to another tagCreate new linkCreate new link:Create your structure into a simple text file and following this model:Critical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDelete Link Between TagsDelete TagDelete linkDelete the linkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.E-mail address is not valid. Please try again.EditEdit BookmarkEdit Bookmark Common DescriptionEdit Link Between TagsEdit Tag Common DescriptionEdit Tag DescriptionEdit linkEdit the common description of this bookmarkEdit the common description of this tagEdit your personal description of this tagEmailError while saving your bookmarkExisting links:Export bookmarksExport your bookmarks from your browser to a fileFailed to create the linkFailed to delete bookmarkFailed to delete the linkFailed to delete the tagFailed to rename the tagFailed to update the bookmark common descriptionFailed to update the tag common descriptionFailed to update the tag descriptionFeatured Menu TagsFileFirstForgotten PasswordForgotten your password?Geek StuffGeneral ErrorGeneral server errorGenerate PasswordGo to bookmarksHTML file (for browsers)HistoryHistory for %sHomeHomepageIf no result appears, check that all the urls are valid in the admin section.If you have forgotten your password, %s can generate a new one. Enter the username and e-mail address of your account into the form below and we will e-mail your new password to you.ImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport StructureImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesInvalid TokenJust visible by you and your contacts.LastLast SearchesLast modification:Last updateLineLinked TagsLog InLog OutManage usersMember SinceMenu TagsMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksMy ProfileMy WatchlistNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...NewNew PasswordNew UsersNew links between tags: New password generated and sent to %sNextNoNo bookmarks availableNo linksNo matches found for that combination of username and e-mail address.No matches found for that username.Not AvailableNot FoundNote: include a tag into '%s' tag (e.g. %s>countries) display the tag into the menu boxNote: use "=" to make synonym two tags. e.g.: france=frenchcountryNote: use ">" to include one tag in another. e.g.: europe>france>parisNumber of bookmarks for this queryOldOnly your bookmarks for this tagOther actionsPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Permission denied.Personal DetailsPlease activate cookiesPopular TagsPopular Tags From All UsersPopularityPost to %sPost to %s (Pop-up)PreviousPrivacyPrivatePrivate NotePrivate Note on this bookmarkProblem with ProfilePropulsed by PublicPublic/Shared/PrivateRecent TagsRecent bookmarks posted to %sRegisterRegister nowRegistration failed. Please try again.Related TagsRemove from WatchlistRemove the tag from the selectionRemove this contactRenameRename TagRename TagsRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSearch...See all tags from this userSee all usersSee all your tagsSee popular tagsSelect the default privacy setting for your imported bookmarksShared with Watch ListShared with WatchlistSign up here to create a free %s account. All the information requested below is requiredSort by:Store, share and tag your favourite linksSuggested anchors: Synonyms:Tag common description updatedTag deletedTag description updatedTag link createdTag link deletedTag renamedTagsTags included into the tag '%s'Tags:The details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThe secret tag "system:imported" allows you to find imported bookmarks.The secret tag "system:unfiled" allows you to find bookmarks without tags.Then import the file. The tags and their relations will be added to your profile.There was an error saving your bookmark. Please try again or contact the administrator.There was an error while generating your new password. Please try again.This bookmark is certified by an admin user.This menu is composed of keywords (tags) organized by admins.This username already exists, please make another choice.This username has been reserved, please make another choice.This username is not valid (too short, too long, forbidden characters...), please make another choice.TipsTitleTo keep your bookmarks secure, you should change this password in your profile the next time you log in.To refresh manually Google Custom Search Engine, goes to: Top of the pageType a username to add it to your contacts.Unsatisfied? You can also try our UpdateUse of the API calls requires authentication.User added to your watchlistUser removed from your watchlistUser with username %s was not foundUsernameUsername was not specifiedUsersUsers managementVote againstVote forVotingVoting %dWatched ByWatchingWatchlistXML error: %s at line %dXML file (like del.icio.us)YesYou must enter a username, password and e-mail address.You are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou can use anchors to delimite attributes. for example: [publisher]blah[/publisher] You have already submitted some of these bookmarks.You have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.You must enter your e-mail address.You must enter your username.Your bookmark must have a title and an addressYour new password is:all bookmarksall tags from this userall your tagsbookmarkbookmarksbookmark(s)bookmarksbycreated inedit common descriptioninis licensed under the message_die() was called multiple times.my bookmarksmy watchlistprofilethis user's bookmarksyouyou can freely host it on your own web server.Project-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2009-11-18 15:42+0100 Last-Translator: Nguyen Thi Hong Thai Language-Team: fr-FR Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: French X-Poedit-Country: FRANCE Plural-Forms: nplurals=2; plural=(n != 1); và %2$s%1$s những cái khác%3$svà %s1 khác%s ít nhất 5 kí tự, chứa chữ và số (không khoảng trống, không dấu chấm hoặc kí tự đặc biệt khác)để gửi cho bạn mật khẩu của bạn nếu bạn quên nóBắt đầu sử dụng %s !%1$s hỗ trợ phần lớn từ'API del.icio.us.Thông tin tài khoản %s%s, tất cả những trang ghi nhớ và những thẻ bị xoá.%s: Những trang ghi nhớ gần đây(Quay lại trang trước đó.)Chia xẻ các trang ghi nhớ của bạn với tất cả mọi ngườii, bạn có thể chia xẻ với bạn bè trong danh sách hoặc giữ cá nhân.Lưu trữtất cả các đường links ở một nơi, có thể truy cập tại mọi nơiGắn từ khoá/strong> những trang ghi nhớ của bạn với bất kì tên nào mà bạn muốn mà không phải làm việc với các thư mụcVềTài khoản cụ thểNhững thao tácThêm một trang ghi nhớThêm vào ghi chúThêm một liên kết giữa các từ khoáThêm một trang ghi nhớThêm một liên lạc...Tạo một liên kếtThêm một nút tìm kiếm vào trong trình duyệt của bạn:Thêm vào danh sách liên lạcĐịa chỉĐịa chỉ này đã không tìm thấy.Quản trịLời khuyên của quản trị:Quản trị, sự cài đặt của bạn o trong "Mode Debug" ($debugMode = true). Để đến "Mode Normal" và ẩn những thông báo gỡ rối, thay đổi $debugMode thành false ở trong config.inc.php.Tất cả các trang ghi nhớTất cả từ khoáTất cả người dùngBảng chữ cáiMột lỗi nguy cấp đã xảy raMột lỗi đã xảy raCó một lỗi xuất hiện trong khi lưu lại những sửa đổi của bạn.Câu trả lời chống thư rác không được xác nhận. hãy thử lại.Câu hỏi chống thư rácBạn có chắc chắn không ?Có giá trịXác định kémCập nhật mô tả trang ghi nhớ.Trang ghi nhớ này đã nạp.Lưu lại trang ghi nhớ này.Trang ghi nhớ với tên %s đã không tìm thấyBookmarkletNhững trang ghi nhớTrang ghi nhớ này đã được tìm thấy :Ghi nhớ trang từ những người dùng khác cho thẻ nàyNhững trang ghi nhớ đã nạp :Những trang ghi nhớ trên trang này được quản lí bởi một người quản trị.file CSV (cho những công cụ lan truyền)Huỷ bỏLưu lại những thay đổi.Kiểm tra tất cả đường link (Có thể mất ít thời gian)Click Browse... để tìm thấy file chứa những trang ghi nhớ đã được lưu trên máy tính của bạn. Kích thước tối đa của file không vượt quá 1MBClick Browse... để tìm thấy file trên máy tính của bạn. Kích cỡ tối đa của file không được vượt quá 1 MBClick vào Importer để bắt đầu nạp những trang ghi nhớ; thao tác này có thể mất vài phútClick theo một trong những bookmarklets để thêm một nút, bạn có thể click bất cứ khi nào bạn muốn thêm một trang cho trang hiện tại %s Danh sách liên lạc gần nhauNhững danh sách liên lạc gần nhau là những danh sách liên lạc tương hỗ với nhauSự mô tả cộng tác : những trường này có thể được nhìn thấy và được sửa đổi bởi tất cả những người dùng.Quay lạiQuay trở lại đầu trang này.Phân tách bởi những dấu phẩyXác nhận mật khẩuCopyCopy trang ghi nhớ này vào những trang ghi nhớ của bạn.Không thể mở dữ liệu XML.Tạo Tạo một liên kết với một từ khoá khácTạo một liên kết mớiTạo một mối liên kết mớiTạo cấu trúc của bạn vào một file văn bản đơn giản theo mô hình sauLỗi nguy cấpThông tin nguy cấpChế độ gỡ rốiNgàyXoáXoá trang ghi nhớ nàyXoá một liên kết giữa các từ khoáXoá từ khoáXoá một liên kếtXoá liên kết nàyMô tảĐừng hỏi mật khẩu của tôi trong 2 tuầnClick theo một trong những bookmarklets vào trình duyệt bookmark của bạn và click nó bất cứ khi nào bạn muốn thêm một trang cho trang hiện tại %s E-mailĐịa chỉ email không có giá trị.Địa chỉ email không được xác nhận. Hãy thử lại.SửaSửa trang ghi nhớSửa mô tả trang ghi nhớSửa một liên kết giữa các từ khoáSửa mô tả chung của từ khoáSửa mô tả của từ khoáSửa một liên kếtSửa mô tả chung của trang ghi nhớ nàySửa mô tả chung của từ khoá nàySửa mô tả cá nhân của bạn của thẻ nàyE-mailCó lỗi trong khi lưu lại trang ghi nhớ của bạn.Những liên kết hiện có :Xuất những trang ghi nhớXuất những trang ghi nhớ ra một file từ danh sách duyệt của bạnKhông thể tạo liên kết nàyCó lỗi trong việc xoá trang ghi nhớ nàyKhông thể xoá liên kết nàyKhông thể xoá từ khoá nàyLỗi trong việc đổi tên từ khoáCó lỗi trong việc cập nhật mô tả trang ghi nhớKhông thể cập nhật mô tả chung của từ khoáKhông thể cập nhật mô tả của từ khoáDanh sách những từ khoá chínhFileĐầu tiênQuên mật khẩuCó phải bạn đã quên mật khẩu ?Pour les GeeksLỗi thông thườngLỗi tác độgn từ serveur.Phát sinh một mật khẩuVào những trang ghi nhớfile HTML (để duyệt)Lưu vết quá trìnhLưu vết quá trình cho %sChủTrang chủNếu không có kết quả nào xuất hiệnt, hãy kiểm tra lại tất cả các đường link được xác nhận trong phần quản lí.Nếu bạn đã quên mật khẩu, %s có thể tạo ra một mật khẩu mới. Nhập vào tên đăng nhập và địa chỉ email của bạn trong mẫu dưới đây và chúng tôi sẽ gửi cho bạn một mật khẩu mới.Nhập Nạp những trang ghi nhớ này từ một file trong danh sách duyệtNạp vào những trang ghi nhớ từ del.icio.usNạp một cấu trúcNạp những trang ghi nhớ từ một file Nạp những trang ghi nhớ từ del.icio.usThông tinGiới thiệuInternet Explorer, Mozilla Firefox et NetscapeInternet Explorer: File > Nạp và Đưa ra... > Đưa ra những cái được ưa chuộngToken không có hiệu lựcChỉ được xem bới bạn và danh sách liên lạc của bạnCuối cùngNhững tìm kiếm trướcNhững thay đổi cuối:Lần cập nhật cuốimạngLiên kết những từ khoáĐăng nhậpThoátQuản lí những người dùngThành viên trước đâyDanh sách từ khoáMozilla Firefox: Những trang đánh dấu >Quản lí những trang được đánh dấu... >File > Đưa rar...Những trang ghi nhớ của tôiHồ sơ cá nhânDanh sách liên lạc của tôiTênNetscape: Những trang đánh dấu > Quản lí những trang đánh dấu... > Những công cụ > Đưa ra...MớiMật khẩu mớiNhững người dùng mớiLiên kết mới giữa các từ khoá :Mật khẩu mới sẽ được gửi đến địa chỉ email %sSauKhôngKhông có trang ghi nhớ nào có sẵn.Không có liên kết nàoKhông phù hợp giữa tên người dùng này và e-mail.Không có tên truy cập này.Không có giá trịKhông tìm thấyChú ý : gồm có một từ khoá chứa trong trong từ khoá'%s' (e.g. %s>Những lĩnh vực) để hiển thị từ khoá này trong hộp danh mụcChú ý : sử dụng "=" để diễn tả hai thẻ tương đương nhau. Ví dụ: europe=euChú ý: sử dụng ">" để cho một mô tả mối liên hệ giữa các thẻ. Ví dụ: Chau_Au>Phap>parisTổng số trang ghi nhớ tìm thấy cho truy vấn nàyCũChỉ có những trang ghi nhớ của bạnNhững hành động khácTrang %d của %dMật khẩuMật khẩu không tương thích với tên truy cập.Mật khẩu phải chứa ít nhất 6 kí tự.Cho phép từ chối.Chi tiết cá nhânHãy kích hoạt việc xác nhận sử dụng dịch vụNhững thẻ phổ biếnNhững thẻ phổ biến cho tất cả những người dùngPhổ biếnThêm vào %sThêm vào %s (Pop-up)TrướcRiêng tưcá nhânGhi chú cá nhânGhi chú cá nhân trên trang ghi nhớ nàyCó vấn đề với Mô tả cá nhânĐã đẩy bởiCông cộngCông cộng/Chia xẻ/Cá nhânNhững từ khoá gần đâyNhững trang ghi nhớ gần đây %sĐăng kíĐăng kí ngay bây giờĐăng kí thất bại. hãy thử làm lại.Quan hệ các từ khoáRời bỏ từ danh sách liên lạcHuỷ bỏ từ khoá đã chọnBỏ liên lạc nàyĐổi tênThay đổi tên từ khoáRenommer les tagsYêu cầuLỗi cấu trúc truy vấnLưu lại sự thay đổiLưu file kết quả XML trên máy tính của bạnTìm kiếmTìm kiếm trang ghi nhớKêt quả tìm kiếmTìm kiếm...Nhìn thấy tất cả từ khoá của người dùng nàyNhìn thấy tất cả người dùngNhìn thấy tất cả thẻ của bạnNhìn thấy những từ khoá thông thườngLựa chọn cài đặt mặc định cho những trang ghi nhớ được nạp vàoChia xẻ với danh sách liên hệ của tôiChia xẻ với danh sách liên lạcBạn đăng kí ở đây để tạo ra một tài khoản miến phí %s. Tất cả những thông tin yêu cầu dưới đây là cần thiết.Sắp xếp bởi :Lưu trữ, chia xẻ và gán từ khoá cho những liên kết yêu thích của bạnNhững gợi ý tin cậy : Đồng nghĩa :Sửa mô tả chung của từ khoáTừ khoá đã được xoáMô tả của từ khoá đã được cập nhậtLiên kết giữa các từ khoá được tạo.Xoá một liên kết từ khoáTừ khoá đã được đổi tênThẻNhững từ khoá chứa trong từ khoá '%s'Những từ khoá:Những thông tin bạn đã nhập không chính xác. Hãy thử lại.Yêu cầu đường link không thể tìm thấy trên server nàyYêu cầu đường link đã không được tìm thấy trên server này.Từ khoá bí mật "system:imported" cho phép bạn tìm thấy những trang ghi nhớ quan trọng.Thẻ bí mật "system:unfiled" cho phép bạn tìm thấy những trang ghi nhớ không có thẻ.Sau khi nạp vào file này. Những thẻ này và mối liên hệ giữa chúng sẽ được thêm vào thông tin của bạnCó lỗi trong việc lưu lại trang ghi nhớ này. Hãy thử lại hoặc liên lạc với người quản trị.Đã có lỗi trong khi nhập trang ghi nhớ này. Hãy thử lại hoặc liên lạc với người quản trị.Trang ghi nhớ này được bảo đảm bởi một người quản trị.Danh mục này đã được tạo từ các từ khoá (thẻ) và được sắp xếp bởi những người quản trị.Tên truy cập này đã tồn tại, hãy chọn một tên khác.Tên truy cập này đã được đăng kí, hãy chọn tên khác.Tên truy cập này không được xác nhận (quá ngắn, quá dài, kí tự cấm...), hãy tạo tên khác.MẹoTiêu đềĐể giữ an toàn và bảo mật cho những trang ghi nhớ của bạn, bạn nên thay đổi mật khẩu trong mô tả cá nhân cho lần đăng nhập sau.Để khởi động lại điều khiển bằng tay của máy tìm kiếm Google, hãy đến :Đầu trangNhập vào tên truy cập để thêm vào danh sách liên lạc của bạn.Có phải bạn không vừa lòng? Bạn có thể thử của chúng tôi Cập nhậtSử dụng API để gọi yêu cầu chính thức.Tên truy cập đã được thêm vào danh sách liên lạc của bạnTên truy cập đã dời khỏi danh sách liên lạc của bạnTên đăng nhập %s đã không tìm thấy.Tên người dùngTên truy cập đã không chỉ rõ .Những người tham giaQuản lí những người dùngKhông ủng hộỦng hộ choSự bầu cửSự ủng hộ %dĐược xem bởiNhững danh sách liên lạc của tôiDanh mục liên lạcLỗi XML: %s tại đường truyền %dfile XML (như del.icio.us)ĐúngBạn phải đưa ra một tên truy cập, một mật khẩu, một e-mailBạn đã không cho phép xoá trang ghi nhớ nàyBạn đã không cho phép sửa trang ghi nhớ này.Bạn có thể sử dụng những nguồn tin cậy để xác định phạm vi những thuộc tính. Ví dụ : [publisher]blah[/publisher]Bạn vừa nhập một trong số những trang ghi nhớ này.Bạn vừa nhập trang ghi nhớ này.Bạn vừa thoátt khỏiBạn đã đăng kí thành công!Để thêm một trang ghi nhớ bạn phải đăng nhập.Bạn phải đưa ra một E-mail.Bạn phải nhập vào tên truy cập.Trang ghi nhớ của bạn phải có một tiêu đề tóm tắt và một địa chỉ của trang đó.Mật khẩu mới của bạn là:tất cả những trang được ghi nhớ tất cả từ khoá từ người dùng nàyTất cả thẻ của bạnTrang ghi nhớSignetsNhững trang ghi nhớDanh mục những trang ghi nhớbởiTạo trongSửa mô tả chungtrongphân dưới quyềnmessage_die() bị gọi nhiều lần.những trang ghi nhớ của tôidanh sách liên lạc của tôithông tin cá nhânnhững trang ghi nhớ của người dùngbạnBạn có thể thoải mái cài đặt nó trên Web server của bạnsemanticscuttle-0.98.5+dfsg/data/locales/vn_VN/LC_MESSAGES/messages.po000066400000000000000000001513711227405131600252710ustar00rootroot00000000000000# Scuttle fr-FR Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # # nitram # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2009-11-18 15:42+0100\n" "Last-Translator: Nguyen Thi Hong Thai \n" "Language-Team: fr-FR \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die() bị gọi nhiều lần." #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "Lỗi cấu trúc truy vấn" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "mạng" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "File" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "Thông tin" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "Thông tin nguy cấp" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "Một lỗi đã xảy ra" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "Lỗi thông thường" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "Một lỗi nguy cấp đã xảy ra" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "Lỗi nguy cấp" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "Chế độ gỡ rối" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" "Lưu trữtất cả các đường links ở một nơi, có thể truy cập " "tại mọi nơi" #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "Chia xẻ các trang ghi nhớ của bạn với tất cả mọi ngườii, " "bạn có thể chia xẻ với bạn bè trong danh sách hoặc giữ cá nhân." #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "Gắn từ khoá/strong> những trang ghi nhớ của bạn với bất kì tên nào " "mà bạn muốn mà không phải làm việc với các thư mục" #: data/templates/default/about.tpl.php:9 msgid "Register now" msgstr "Đăng kí ngay bây giờ" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "Bắt đầu sử dụng %s !" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "Pour les Geeks" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "phân dưới quyền" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "Bạn có thể thoải mái cài đặt nó trên Web server của bạn" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" "%1$s hỗ trợ phần lớn từ'API del.icio.us." #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "Mẹo" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "Thêm một nút tìm kiếm vào trong trình duyệt của bạn:" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" "Thẻ bí mật \"system:unfiled\" cho phép bạn tìm thấy những trang ghi nhớ " "không có thẻ." #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" "Từ khoá bí mật \"system:imported\" cho phép bạn tìm thấy những trang ghi nhớ " "quan trọng." #: data/templates/default/admin.tpl.php:5 msgid "Users management" msgstr "Quản lí những người dùng" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "Công cộng/Chia xẻ/Cá nhân" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 msgid "bookmark(s)" msgstr "Những trang ghi nhớ" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "Bạn có chắc chắn không ?" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "Xoá" #: data/templates/default/admin.tpl.php:27 msgid "Other actions" msgstr "Những hành động khác" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "Kiểm tra tất cả đường link (Có thể mất ít thời gian)" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" "Sự mô tả cộng tác : những trường này có thể được nhìn thấy và được sửa đổi " "bởi tất cả những người dùng." #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "Tiêu đề" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "Mô tả" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "Những thay đổi cuối:" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "Cập nhật" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "Huỷ bỏ" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Click theo một trong những bookmarklets để thêm một nút, bạn có thể click " "bất cứ khi nào bạn muốn thêm một trang cho trang hiện tại %s " #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Click theo một trong những bookmarklets vào trình duyệt bookmark của bạn và " "click nó bất cứ khi nào bạn muốn thêm một trang cho trang hiện tại %s " #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "Thêm vào %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "Thêm vào %s (Pop-up)" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "Sự ủng hộ %d" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "Ủng hộ cho" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "Không ủng hộ" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" "Những trang ghi nhớ trên trang này được quản lí bởi một người quản trị." #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "Sửa mô tả chung của từ khoá này" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "Sửa mô tả chung của trang ghi nhớ này" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "Sửa mô tả cá nhân của bạn của thẻ này" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "Sắp xếp bởi :" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "Ngày" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "Sự bầu cử" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "Ghi nhớ trang từ những người dùng khác cho thẻ này" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "Chỉ có những trang ghi nhớ của bạn" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "Đầu tiên" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "Trước" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "Sau" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "Cuối cùng" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "Trang %d của %d" #: data/templates/default/bookmarks.tpl.php:295 msgid "Tags:" msgstr "Những từ khoá:" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "Sửa" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "Lần cập nhật cuối" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "bởi" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "bạn" #: data/templates/default/bookmarks.tpl.php:333 #, php-format msgid " and %s1 other%s" msgstr "và %s1 khác%s" #: data/templates/default/bookmarks.tpl.php:336 #, php-format msgid " and %2$s%1$s others%3$s" msgstr " và %2$s%1$s những cái khác%3$s" #: data/templates/default/bookmarks.tpl.php:350 msgid "Copy this bookmark to YOUR bookmarks." msgstr "Copy trang ghi nhớ này vào những trang ghi nhớ của bạn." #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "Copy" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "Trang ghi nhớ này được bảo đảm bởi một người quản trị." #: data/templates/default/bookmarks.tpl.php:430 msgid "Private Note on this bookmark" msgstr "Ghi chú cá nhân trên trang ghi nhớ này" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "Quay trở lại đầu trang này." #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "Đầu trang" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "Không có trang ghi nhớ nào có sẵn." #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "Về" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "Đã đẩy bởi" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "Trang ghi nhớ" msgstr[1] "Signets" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "Những thẻ phổ biến" #: data/templates/default/dynamictags.inc.php:108 msgid "Popular Tags From All Users" msgstr "Những thẻ phổ biến cho tất cả những người dùng" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "Địa chỉ" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "Yêu cầu" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "Thêm vào ghi chú" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" "Bạn có thể sử dụng những nguồn tin cậy để xác định phạm vi những thuộc tính. " "Ví dụ : [publisher]blah[/publisher]" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "Những gợi ý tin cậy : " #: data/templates/default/editbookmark.tpl.php:76 msgid "Private Note" msgstr "Ghi chú cá nhân" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "Chỉ được xem bới bạn và danh sách liên lạc của bạn" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "Thẻ" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "Phân tách bởi những dấu phẩy" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" "Chú ý: sử dụng \">\" để cho một mô tả mối liên hệ giữa các thẻ. Ví dụ: " "Chau_Au>Phap>paris" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" "Chú ý : sử dụng \"=\" để diễn tả hai thẻ tương đương nhau. Ví dụ: europe=eu" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "Riêng tư" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "Công cộng" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "Chia xẻ với danh sách liên hệ của tôi" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "cá nhân" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "Xoá trang ghi nhớ này" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "Sửa mô tả chung" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "Nhập " #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "Nạp những trang ghi nhớ từ một file " #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox et Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "Nạp những trang ghi nhớ từ del.icio.us" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "Tên" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 msgid "Email" msgstr "E-mail" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "Xoá" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "Tài khoản cụ thể" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "Tên người dùng" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "Mật khẩu mới" #: data/templates/default/editprofile.tpl.php:22 msgid "Confirm Password" msgstr "Xác nhận mật khẩu" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "E-mail" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "Ghi chú cá nhân" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "Phát sinh một mật khẩu" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "Chi tiết cá nhân" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "Trang chủ" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "Lưu lại sự thay đổi" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 msgid "Actions" msgstr "Những thao tác" #: data/templates/default/editprofile.tpl.php:66 msgid "Export bookmarks" msgstr "Xuất những trang ghi nhớ" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "file HTML (để duyệt)" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "file XML (như del.icio.us)" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "file CSV (cho những công cụ lan truyền)" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "Không tìm thấy" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "Yêu cầu đường link đã không được tìm thấy trên server này." #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "Lỗi tác độgn từ serveur." #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "Yêu cầu đường link không thể tìm thấy trên server này" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 msgid "Shared with Watchlist" msgstr "Chia xẻ với danh sách liên lạc" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "Giới thiệu" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "Đăng nhập vào trang trích xuất " "từ del.icio.us" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "Lưu file kết quả XML trên " "máy tính của bạn" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "" "Click Browse... để tìm thấy file trên máy tính của bạn. Kích cỡ " "tối đa của file không được vượt quá 1 MB" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "Lựa chọn cài đặt mặc định cho những trang ghi nhớ được nạp vào" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "" "Click vào Importer để bắt đầu nạp những trang ghi nhớ; thao tác " "này có thể mất vài phút" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "Xuất những trang ghi nhớ ra một file từ danh sách duyệt của bạn" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "" "Internet Explorer: File > Nạp và Đưa ra... > Đưa ra những cái " "được ưa chuộng" #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: Những trang đánh dấu >Quản lí những trang được đánh " "dấu... >File > Đưa rar..." #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "" "Netscape: Những trang đánh dấu > Quản lí những trang đánh dấu... " "> Những công cụ > Đưa ra..." #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "" "Click Browse... để tìm thấy file chứa những trang ghi nhớ đã được " "lưu trên máy tính của bạn. Kích thước tối đa của file không vượt quá 1MB" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "Tạo cấu trúc của bạn vào một file văn bản đơn giản theo mô hình sau" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" "Sau khi nạp vào file này. Những thẻ này và mối liên hệ giữa chúng sẽ được " "thêm vào thông tin của bạn" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "Hãy kích hoạt việc xác nhận sử dụng dịch vụ" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "Mật khẩu" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "Đừng hỏi mật khẩu của tôi trong 2 tuần" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "Đăng nhập" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "Có phải bạn đã quên mật khẩu ?" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" "Nếu bạn đã quên mật khẩu, %s có thể tạo ra một mật khẩu mới. Nhập vào tên " "đăng nhập và địa chỉ email của bạn trong mẫu dưới đây và chúng tôi sẽ gửi " "cho bạn một mật khẩu mới." #: data/templates/default/password.tpl.php:19 msgid "Generate Password" msgstr "Phát sinh một mật khẩu" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "Thành viên trước đây" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 msgid "Watching" msgstr "Những danh sách liên lạc của tôi" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "Được xem bởi" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 msgid "Bookmarks" msgstr "Những trang ghi nhớ" #: data/templates/default/profile.tpl.php:69 msgid "Go to bookmarks" msgstr "Vào những trang ghi nhớ" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "" "Bạn đăng kí ở đây để tạo ra một tài khoản miến phí %s. Tất cả những thông " "tin yêu cầu dưới đây là cần thiết." #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" " ít nhất 5 kí tự, chứa chữ và số (không khoảng trống, không dấu chấm hoặc " "kí tự đặc biệt khác)" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "để gửi cho bạn mật khẩu của bạn nếu bạn quên nó" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "Câu hỏi chống thư rác" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "Đăng kí" #: data/templates/default/search.menu.php:27 msgid "Search..." msgstr "Tìm kiếm..." #: data/templates/default/search.menu.php:28 msgid "in" msgstr "trong" #: data/templates/default/search.menu.php:34 msgid "this user's bookmarks" msgstr "những trang ghi nhớ của người dùng" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "những trang ghi nhớ của tôi" #: data/templates/default/search.menu.php:40 msgid "my watchlist" msgstr "danh sách liên lạc của tôi" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "tất cả những trang được ghi nhớ " #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "Tìm kiếm" #: data/templates/default/sidebar.block.linked.php:23 msgid "Linked Tags" msgstr "Liên kết những từ khoá" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "Tạo một liên kết" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 msgid "Delete link" msgstr "Xoá một liên kết" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "Những từ khoá chứa trong từ khoá '%s'" #: data/templates/default/sidebar.block.menu.php:35 msgid "Menu Tags" msgstr "Danh sách từ khoá" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "Nhìn thấy tất cả thẻ của bạn" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "Tất cả thẻ của bạn" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "Nhìn thấy tất cả từ khoá của người dùng này" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "tất cả từ khoá từ người dùng này" #: data/templates/default/sidebar.block.menu.php:74 msgid "See popular tags" msgstr "Nhìn thấy những từ khoá thông thường" #: data/templates/default/sidebar.block.menu2.php:21 msgid "Featured Menu Tags" msgstr "Danh sách những từ khoá chính" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" "Danh mục này đã được tạo từ các từ khoá (thẻ) và được sắp xếp bởi những " "người quản trị." #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "Những từ khoá gần đây" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "Quan hệ các từ khoá" #: data/templates/default/sidebar.block.search.php:28 msgid "Last Searches" msgstr "Những tìm kiếm trước" #: data/templates/default/sidebar.block.search.php:40 msgid "Number of bookmarks for this query" msgstr "Tổng số trang ghi nhớ tìm thấy cho truy vấn này" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "Thay đổi tên từ khoá" msgstr[1] "Renommer les tags" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 msgid "Delete Tag" msgstr "Xoá từ khoá" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 msgid "Edit Tag Description" msgstr "Sửa mô tả của từ khoá" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "Sửa mô tả chung của từ khoá" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "Tạo một liên kết với một từ khoá khác" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "Những người dùng mới" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 msgid "bookmarks" msgstr "Danh mục những trang ghi nhớ" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "Nhìn thấy tất cả người dùng" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "Tất cả người dùng" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" "Những danh sách liên lạc gần nhau là những danh sách liên lạc tương hỗ với " "nhau" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "Danh sách liên lạc gần nhau" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "Thêm một liên lạc..." #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "Nhập vào tên truy cập để thêm vào danh sách liên lạc của bạn." #: data/templates/default/sidebar.block.watchlist.php:44 msgid "Remove this contact" msgstr "Bỏ liên lạc này" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "Rời bỏ từ danh sách liên lạc" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "Thêm vào danh sách liên lạc" #: data/templates/default/sidebar.linkedtags.inc.php:18 msgid "Edit link" msgstr "Sửa một liên kết" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "Đồng nghĩa :" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "Tạo một mối liên kết mới" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" "Chú ý : gồm có một từ khoá chứa trong trong từ khoá'%s' (e.g. %s>Những lĩnh " "vực) để hiển thị từ khoá này trong hộp danh mục" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "Tạo " #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "Những liên kết hiện có :" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "Không có liên kết nào" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "Đúng" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "Không" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "Xoá liên kết này" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "Tạo một liên kết mới" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "Cũ" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "Mới" #: data/templates/default/tagrename.tpl.php:24 msgid "Rename" msgstr "Đổi tên" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "Bảng chữ cái" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 msgid "Popularity" msgstr "Phổ biến" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 msgid "Home" msgstr "Chủ" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 msgid "Watchlist" msgstr "Danh mục liên lạc" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "Mô tả cá nhân" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "Thêm một trang ghi nhớ" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "Thoát" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "Quản trị" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" "Quản trị, sự cài đặt của bạn o trong \"Mode Debug\" ($debugMode = true). Để " "đến \"Mode Normal\" và ẩn những thông báo gỡ rối, thay đổi $debugMode " "thành false ở trong config.inc.php." #: data/templates/default/users.tpl.php:20 msgid "profile" msgstr "thông tin cá nhân" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "Tạo trong" #: www/admin.php:32 msgid "Manage users" msgstr "Quản lí những người dùng" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "%s, tất cả những trang ghi nhớ và những thẻ bị xoá." #: www/admin.php:76 msgid "Problem with " msgstr "Có vấn đề với " #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "Bạn đã không cho phép xoá trang ghi nhớ này" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "Có lỗi trong việc xoá trang ghi nhớ này" #: www/alltags.php:50 msgid "All Tags" msgstr "Tất cả từ khoá" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, php-format msgid "User with username %s was not found" msgstr "Tên đăng nhập %s đã không tìm thấy." #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "Cho phép từ chối." #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "Cập nhật mô tả trang ghi nhớ." #: www/bookmarkcommondescriptionedit.php:63 msgid "Failed to update the bookmark common description" msgstr "Có lỗi trong việc cập nhật mô tả trang ghi nhớ" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "Sửa mô tả trang ghi nhớ" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "Huỷ bỏ từ khoá đã chọn" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "" "Trang ghi nhớ của bạn phải có một tiêu đề tóm tắt và một địa chỉ của trang " "đó." #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "Lưu lại trang ghi nhớ này." #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "(Quay lại trang trước đó.)" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "" "Có lỗi trong việc lưu lại trang ghi nhớ này. Hãy thử lại hoặc liên lạc với " "người quản trị." #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "Thêm một trang ghi nhớ" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "Để thêm một trang ghi nhớ bạn phải đăng nhập." #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "Những trang ghi nhớ của tôi" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "Sửa trang ghi nhớ" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "Trang ghi nhớ với tên %s đã không tìm thấy" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "Bạn đã không cho phép sửa trang ghi nhớ này." #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "Có lỗi trong khi lưu lại trang ghi nhớ của bạn." #: www/history.php:61 msgid "History" msgstr "Lưu vết quá trình" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "Lưu vết quá trình cho %s" #: www/history.php:84 msgid "Address was not found" msgstr "Địa chỉ này đã không tìm thấy." #: www/import.php:47 msgid "Could not open XML input" msgstr "Không thể mở dữ liệu XML." #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "Lỗi XML: %s tại đường truyền %d" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "Nạp vào những trang ghi nhớ từ del.icio.us" #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "Bạn vừa nhập trang ghi nhớ này." #: www/import.php:104 msgid "Bookmark imported." msgstr "Trang ghi nhớ này đã nạp." #: www/importNetscape.php:95 msgid "You have already submitted some of these bookmarks." msgstr "Bạn vừa nhập một trong số những trang ghi nhớ này." #: www/importNetscape.php:115 msgid "Bookmarks found: " msgstr "Trang ghi nhớ này đã được tìm thấy :" #: www/importNetscape.php:116 msgid "Bookmarks imported: " msgstr "Những trang ghi nhớ đã nạp :" #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "Nạp những trang ghi nhớ này từ một file trong danh sách duyệt" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "Xác định kém" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "Liên kết mới giữa các từ khoá :" #: www/importStructure.php:72 msgid "Import Structure" msgstr "Nạp một cấu trúc" #: www/index.php:38 msgid "You have now logged out" msgstr "Bạn vừa thoátt khỏi" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: Những trang ghi nhớ gần đây" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: Những trang ghi nhớ gần đây" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "Lưu trữ, chia xẻ và gán từ khoá cho những liên kết yêu thích của bạn" #: www/index.php:97 msgid "All Bookmarks" msgstr "Tất cả các trang ghi nhớ" #: www/jsScuttle.php:71 msgid "Available" msgstr "Có giá trị" #: www/jsScuttle.php:74 msgid "Not Available" msgstr "Không có giá trị" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "Những thông tin bạn đã nhập không chính xác. Hãy thử lại." #: www/password.php:36 msgid "You must enter your username." msgstr "Bạn phải nhập vào tên truy cập." #: www/password.php:40 msgid "" "You must enter your e-mail address." msgstr "Bạn phải đưa ra một E-mail." #: www/password.php:48 msgid "No matches found for that username." msgstr "Không có tên truy cập này." #: www/password.php:51 msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "Không phù hợp giữa tên người dùng này và e-mail." #: www/password.php:59 msgid "" "There was an error while generating your new password. Please try again." msgstr "" "Đã có lỗi trong khi nhập trang ghi nhớ này. Hãy thử lại hoặc liên lạc với " "người quản trị." #: www/password.php:63 msgid "Your new password is:" msgstr "Mật khẩu mới của bạn là:" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" "Để giữ an toàn và bảo mật cho những trang ghi nhớ của bạn, bạn nên thay đổi " "mật khẩu trong mô tả cá nhân cho lần đăng nhập sau." #: www/password.php:66 #, php-format msgid "%s Account Information" msgstr "Thông tin tài khoản %s" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "Mật khẩu mới sẽ được gửi đến địa chỉ email %s" #: www/password.php:75 msgid "Forgotten Password" msgstr "Quên mật khẩu" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "Tên truy cập đã không chỉ rõ ." #: www/profile.php:70 msgid "My Profile" msgstr "Hồ sơ cá nhân" #: www/profile.php:110 msgid "Invalid Token" msgstr "Token không có hiệu lực" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "Mật khẩu không tương thích với tên truy cập." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "Mật khẩu phải chứa ít nhất 6 kí tự." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Địa chỉ email không có giá trị." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "Có một lỗi xuất hiện trong khi lưu lại những sửa đổi của bạn." #: www/profile.php:129 msgid "Changes saved." msgstr "Lưu lại những thay đổi." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 #, fuzzy msgid "Failed to delete SSL client certificate." msgstr "Không thể xoá từ khoá này" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 msgid "You must enter a username, password and e-mail address." msgstr "" "Bạn phải đưa ra một tên truy cập, một mật khẩu, một e-mail" #: www/register.php:56 msgid "This username has been reserved, please make another choice." msgstr "Tên truy cập này đã được đăng kí, hãy chọn tên khác." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "Tên truy cập này đã tồn tại, hãy chọn một tên khác." #: www/register.php:64 msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "" "Tên truy cập này không được xác nhận (quá ngắn, quá dài, kí tự cấm...), hãy " "tạo tên khác." #: www/register.php:68 msgid "E-mail address is not valid. Please try again." msgstr "Địa chỉ email không được xác nhận. Hãy thử lại." #: www/register.php:72 msgid "Antispam answer is not valid. Please try again." msgstr "Câu trả lời chống thư rác không được xác nhận. hãy thử lại." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "Bạn đã đăng kí thành công!" #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "Đăng kí thất bại. hãy thử làm lại." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "Những trang ghi nhớ gần đây %s" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "Tìm kiếm trang ghi nhớ" #: www/search.php:89 msgid "Search Results" msgstr "Kêt quả tìm kiếm" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "Có phải bạn không vừa lòng? Bạn có thể thử của chúng tôi " #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "Liên kết giữa các từ khoá được tạo." #: www/tag2tagadd.php:57 msgid "Failed to create the link" msgstr "Không thể tạo liên kết này" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "Thêm một liên kết giữa các từ khoá" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "Xoá một liên kết từ khoá" #: www/tag2tagdelete.php:69 msgid "Failed to delete the link" msgstr "Không thể xoá liên kết này" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "Xoá một liên kết giữa các từ khoá" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "Sửa một liên kết giữa các từ khoá" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "Sửa mô tả chung của từ khoá" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "Không thể cập nhật mô tả chung của từ khoá" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "Từ khoá đã được xoá" #: www/tagdelete.php:46 msgid "Failed to delete the tag" msgstr "Không thể xoá từ khoá này" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "Mô tả của từ khoá đã được cập nhật" #: www/tagedit.php:55 msgid "Failed to update the tag description" msgstr "Không thể cập nhật mô tả của từ khoá" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "Từ khoá đã được đổi tên" #: www/tagrename.php:66 msgid "Failed to rename the tag" msgstr "Lỗi trong việc đổi tên từ khoá" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 msgid "Users" msgstr "Những người tham gia" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "Tên truy cập đã dời khỏi danh sách liên lạc của bạn" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "Tên truy cập đã được thêm vào danh sách liên lạc của bạn" #: www/watchlist.php:104 msgid "My Watchlist" msgstr "Danh sách liên lạc của tôi" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "Sử dụng API để gọi yêu cầu chính thức." #: www/gsearch/index.php:51 msgid "Come back to " msgstr "Quay lại" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "Lời khuyên của quản trị:" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" "Để khởi động lại điều khiển bằng tay của máy tìm kiếm Google, hãy đến :" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" "Nếu không có kết quả nào xuất hiệnt, hãy kiểm tra lại tất cả các đường link " "được xác nhận trong phần quản lí." #~ msgid "Add this tag to the query" #~ msgstr "Ajouter ce tag à la requête" #~ msgid "Last Users" #~ msgstr "Derniers utilisateurs" #, fuzzy #~ msgid "Watched by" #~ msgstr "Consultés" #~ msgid "URL" #~ msgstr "URL" #~ msgid "for" #~ msgstr "pour" #~ msgid "Recent Bookmarks" #~ msgstr "Signets récents" #~ msgid "plus" #~ msgstr "plus" #~ msgid "" #~ "Register now to start using " #~ "%s!" #~ msgstr "" #~ "Enregistrez-vous maintenant pour poster vos " #~ "propres signets sur %s !" #~ msgid "" #~ "Semantic " #~ "Scuttle is licensed under the GNU General Public " #~ "License (you can host it on your own web server)." #~ msgstr "" #~ "Semantic " #~ "Scuttle, sous license GNU General Public " #~ "License (vous pouvez donc l'héberger sur votre propre serveur)." #~ msgid "edit" #~ msgstr "éditer" #~ msgid "User with username %s not was not found" #~ msgstr "L'utilisateur %s n'a pas été trouvé." #~ msgid "%s Bookmarks" #~ msgstr "Signets de %s" #~ msgid "E-mail" #~ msgstr "E-mail" semanticscuttle-0.98.5+dfsg/data/locales/zh_CN/000077500000000000000000000000001227405131600213005ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/zh_CN/LC_MESSAGES/000077500000000000000000000000001227405131600230655ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/locales/zh_CN/LC_MESSAGES/messages.mo000066400000000000000000000240401227405131600252310ustar00rootroot00000000000000w  n. g   ' 8 @ I c ,t   %  t fy N / ? D ] l    % ]d  1  4="D!g#!  /Lejq yQ K 6CH _ iw',   " )5S&\   \#*;>JY=(F.oW906 St} +))<(T3}. ( *7$ + 8$Ej q~ [*Z@";B Xe u  ~ FRh o|3  V- $ S !%!/;!Lk!!!! !S! +" 8"ME" " """"""# !# .#;# [#e# l# y# # #### #'# $ $ ($T5$$ $ $*$ $A$ %%3%.:%0i%%E%1% 1&*>&*i& &&&&!&!'$9'^'t'$''' ' '' (.+HJ?d a[796)t@! '</;m&CFl^1r_S(Oqv0#bTK*GM%fP5V$3Yepi ,o-4h]gEB Z=nXQ8uU2IR"wWNsA L\j>c:k`D%s: Recent bookmarksShare your bookmarks with everyone, with friends on your watchlist or just keep them private.Tag your bookmarks with as many labels as you want, instead of wrestling with folders.AboutAdd BookmarkAdd a BookmarkAdd to WatchlistAddressAll TagsAn critical error occuredAn error occuredAn error occurred while saving your changes.Bookmark imported.Bookmark savedBookmark with id %s not was not foundBookmarkletChanges saved.Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MBClick Browse... to find this file on your computer. The maximum size the file can be is 1MBClick Import to start importing the bookmarks; it may take a minuteComma-separatedCopyCould not open XML inputCritical ErrorCritical InformationDEBUG MODEDateDeleteDelete BookmarkDescriptionDon't ask for my password for 2 weeksDrag one of the following bookmarklets to your browser's bookmarks and click it whenever you want to add the page you are on to %sE-mailE-mail address is not valid.EditEdit BookmarkError while saving your bookmarkExport your bookmarks from your browser to a fileFailed to delete bookmarkFileGeek StuffGeneral ErrorGeneral server errorHomepageImportImport Bookmarks from Browser FileImport Bookmarks from del.icio.usImport bookmarks from bookmark fileImport bookmarks from del.icio.usInformationInstructionsInternet Explorer, Mozilla Firefox and NetscapeInternet Explorer: File > Import and Export... > Export FavoritesLineLog InLog OutMember SinceMozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export...My BookmarksNameNetscape: Bookmarks > Manage Bookmarks... > Tools > Export...New PasswordNextNo bookmarks availableNot FoundPage %d of %dPasswordPassword and confirmation do not match.Password must be at least 6 characters long.Popular TagsPost to %sPost to %s (Pop-up)PreviousPrivacyPrivateProfilePublicRecent TagsRecent bookmarks posted to %sRegisterRegistration failed. Please try again.Related TagsRemove from WatchlistRequiredSQL ErrorSave ChangesSave the resulting XML file to your computerSearchSearch BookmarksSearch ResultsSelect the default privacy setting for your imported bookmarksShared with Watch ListSign up here to create a free %s account. All the information requested below is requiredSort by:TagsThe details you have entered are incorrect. Please try again.The requested URL could not be processedThe requested URL was not found on this serverThere was an error saving your bookmark. Please try again or contact the administrator.This username already exists, please make another choice.TitleUser added to your watchlistUser removed from your watchlistUsernameUsername was not specifiedWatched ByXML error: %s at line %dYou are not allowed to delete this bookmarkYou are not allowed to edit this bookmarkYou have already submitted this bookmark.You have now logged outYou have successfully registered. Enjoy!You must be logged in before you can add bookmarks.Your bookmark must have a title and an addressall bookmarksbookmarkbookmarksmessage_die() was called multiple times.my bookmarksProject-Id-Version: Scuttle Report-Msgid-Bugs-To: POT-Creation-Date: 2012-01-20 13:58+0100 PO-Revision-Date: 2006-03-18 21:45-0800 Last-Translator: Marcus Campbell Language-Team: zh-CN Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Chinese X-Poedit-Country: CHINA Plural-Forms: nplurals=2; plural=(n != 1); %s: 最近书签您可以将您收藏的书签资源与所有朋友分享,也许因此发现与您志同道合的朋友。或者保存为只能您自己查看的私有状态您可以将您认为优秀的站点用标签(Tag)定义,这是一种更为灵活的分类形式,方便您的发散记忆和管理。关于添加书签添加书签将用户加入到您的关注列表网址所有标签有严重错误发生有错误发生保存修改时出错.书签导入完毕.录入书签已被成功保存id为 %s 的书签不存在Bookmarklet保存修改成功.点击浏览... 在您的电脑中找到书签文件,最大允许导入1Mb数据点击浏览...在您的电脑中找到书签文件,最大允许导入1Mb数据点击导入书签开始导入,耗时1分钟左右。以单字节逗号分开复制无法打开XML输入严重错误关键性信息调试模式发布时间删除删除书签描述存储帐号密码信息2周Bookmarklet是一个内含简单JavaScript代码的书签,使用的方法和您的浏览器中的书签一样,不同的地方是:书签是用来记录浏览的位置,而Bookmarklet则是记录某些对您正在浏览的页面进行处理的程序和方法。
使用Bookmarklet之前,您无需另外安装或下载程式,只要简单的将如下链接加入您的浏览器书签或是收藏夹之中。
选择如下Bookmarklet之一,并将其加入到您的浏览器书签中,当您浏览并希望收藏其他网站页面时,只需点击您的浏览器中 Bookmarklet 书签,就会将您希望收藏的页面发布到 %s用户EmailEmail地址不合法.编辑编辑书签在保存书签时出错将您的浏览器书签数据导出为一个文件删除书签失败文件致谢一般性错误一般性服务器错误用户网站导入书签将浏览器的书签文件导入(Internet Explorer, Mozilla Firefox and Netscape)将del.icio.us的书签文件导入 导入(Internet Explorer, Mozilla Firefox and Netscape)浏览器的书签文件导入del.icio.us的书签文件信息步骤和导入方法Internet Explorer, Mozilla Firefox and NetscapeInternet Explorer: 文件 > 导入和导出... > 导出收藏夹 行登陆登出注册时间Mozilla Firefox: 书签 > 管理书签... > 文件 > 导出书签... 您的书签用户全名Netscape: 书签 > 管理书签... > 工具 >> 导出书签... 新的密码下一页尚未有书签列入文件不存在第 %d 页 / 共 %d 页密码密码和确认密码不一致.密码至少6位.热门标签收藏到 %s收藏到 %s(弹出窗口) 上一页私密仅本用户个人资料公开发布最新标签最新发布到%s的书签注册注册失败,请重试.关联标签将用户从您的关注列表中删除必填项目SQL出错保存修改保存XML文件到您的电脑中。搜索搜索书签搜索结果为导入的书签选择默认私密设置仅关注者您可以免费注册成为 %s 的用户,请填写如下表单:排序方式:标签您输入的详细信息不正确,请重试.无法对您指定的文件进行导入操作。您指定的文件不存在。保存书签时出错,请再保存重试一次或者联系管理员用户名已经存在,请选择其他用户名.书签标题已将用户加入到您的关注列表中已将用户从您的关注列表中删除用户帐号没有提供用户名关注该用户的其他用户XML错误: %s 发生在 %d 行您没有权限删除此条书签您没有权限编辑此条书签您过去已经录入过这条书签您已经成功登出您已经注册成功.您必须登陆后才能添加书签每条书签必须包含标题和网址所有书签书签书签message_die()被调用了多次您的书签semanticscuttle-0.98.5+dfsg/data/locales/zh_CN/LC_MESSAGES/messages.po000066400000000000000000001301511227405131600252350ustar00rootroot00000000000000# Scuttle zh-CN Translation # Copyright (C) 2005 - 2006 Scuttle project # This file is distributed under the same license as the Scuttle package. # Yanni Zheng # msgid "" msgstr "" "Project-Id-Version: Scuttle\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-01-20 13:58+0100\n" "PO-Revision-Date: 2006-03-18 21:45-0800\n" "Last-Translator: Marcus Campbell \n" "Language-Team: zh-CN \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Chinese\n" "X-Poedit-Country: CHINA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/SemanticScuttle/functions.php:189 msgid "message_die() was called multiple times." msgstr "message_die()被调用了多次" #: src/SemanticScuttle/functions.php:201 msgid "SQL Error" msgstr "SQL出错" #: src/SemanticScuttle/functions.php:207 msgid "Line" msgstr "行" #: src/SemanticScuttle/functions.php:207 #: data/templates/default/importDelicious.tpl.php:8 #: data/templates/default/importNetscape.tpl.php:9 #: data/templates/default/importStructure.tpl.php:10 msgid "File" msgstr "文件" #: src/SemanticScuttle/functions.php:215 msgid "Information" msgstr "信息" #: src/SemanticScuttle/functions.php:220 msgid "Critical Information" msgstr "关键性信息" #: src/SemanticScuttle/functions.php:225 msgid "An error occured" msgstr "有错误发生" #: src/SemanticScuttle/functions.php:228 msgid "General Error" msgstr "一般性错误" #: src/SemanticScuttle/functions.php:236 msgid "An critical error occured" msgstr "有严重错误发生" #: src/SemanticScuttle/functions.php:239 msgid "Critical Error" msgstr "严重错误" #: src/SemanticScuttle/functions.php:248 msgid "DEBUG MODE" msgstr "调试模式" #: data/templates/default/about.tpl.php:6 msgid "" "Store all your favourite links in one place, accessible " "from anywhere." msgstr "" #: data/templates/default/about.tpl.php:7 msgid "" "Share your bookmarks with everyone, with friends on your " "watchlist or just keep them private." msgstr "" "您可以将您收藏的书签资源与所有朋友分享,也许因此发现与您志同道合的朋友。或者" "保存为只能您自己查看的私有状态" #: data/templates/default/about.tpl.php:8 msgid "" "Tag your bookmarks with as many labels as you want, instead " "of wrestling with folders." msgstr "" "您可以将您认为优秀的站点用标签(Tag)定义,这是一种更为灵活的分类形式,方便您" "的发散记忆和管理。" #: data/templates/default/about.tpl.php:9 #, fuzzy msgid "Register now" msgstr "注册" #: data/templates/default/about.tpl.php:9 #, php-format msgid " to start using %s!" msgstr "" #: data/templates/default/about.tpl.php:12 msgid "Geek Stuff" msgstr "致谢" #: data/templates/default/about.tpl.php:14 msgid "is licensed under the " msgstr "" #: data/templates/default/about.tpl.php:14 msgid "you can freely host it on your own web server." msgstr "" #: data/templates/default/about.tpl.php:15 #, php-format msgid "" "%1$s supports most of the del." "icio.us API. " "Almost all of the neat tools made for that system can be modified to work " "with %1$s instead. If you find a tool that won't let you change the API " "address, ask the creator to add this setting. You never know, they might " "just do it." msgstr "" #: data/templates/default/about.tpl.php:24 msgid "Tips" msgstr "" #: data/templates/default/about.tpl.php:26 msgid "Add search plugin into your browser:" msgstr "" #: data/templates/default/about.tpl.php:27 msgid "" "The secret tag \"system:unfiled\" allows you to find bookmarks without tags." msgstr "" #: data/templates/default/about.tpl.php:28 msgid "" "The secret tag \"system:imported\" allows you to find imported bookmarks." msgstr "" #: data/templates/default/admin.tpl.php:5 #, fuzzy msgid "Users management" msgstr "用户帐号" #: data/templates/default/admin.tpl.php:14 msgid "Public/Shared/Private" msgstr "" #: data/templates/default/admin.tpl.php:14 #: data/templates/default/bookmarks.tpl.php:115 #, fuzzy msgid "bookmark(s)" msgstr "书签" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/tag2tagadd.tpl.php:21 #: data/templates/default/tag2tagdelete.tpl.php:13 #: data/templates/default/tag2tagedit.tpl.php:14 #: data/templates/default/tag2tagedit.tpl.php:35 #: data/templates/default/tagdelete.tpl.php:6 www/jsScuttle.php:24 msgid "Are you sure?" msgstr "" #: data/templates/default/admin.tpl.php:19 #: data/templates/default/bookmarks.tpl.php:305 msgid "Delete" msgstr "删除" #: data/templates/default/admin.tpl.php:27 #, fuzzy msgid "Other actions" msgstr "步骤和导入方法" #: data/templates/default/admin.tpl.php:29 msgid "Check all URLs (May take some time)" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:16 msgid "" "Collaborative description: these fields can be viewed and modified by every " "users" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:18 #: data/templates/default/bookmarks.tpl.php:159 #: data/templates/default/editbookmark.tpl.php:51 msgid "Title" msgstr "书签标题" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:23 #: data/templates/default/editbookmark.tpl.php:57 #: data/templates/default/editprofile.tpl.php:53 #: data/templates/default/profile.tpl.php:33 #: data/templates/default/tagcommondescriptionedit.tpl.php:13 #: data/templates/default/tagedit.tpl.php:12 msgid "Description" msgstr "描述" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:31 #: data/templates/default/tagcommondescriptionedit.tpl.php:21 msgid "Last modification:" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:43 #: data/templates/default/tagcommondescriptionedit.tpl.php:33 #: data/templates/default/tagedit.tpl.php:18 msgid "Update" msgstr "" #: data/templates/default/bookmarkcommondescriptionedit.tpl.php:44 #: data/templates/default/editbookmark.tpl.php:111 #: data/templates/default/tag2tagadd.tpl.php:24 #: data/templates/default/tag2tagedit.tpl.php:38 #: data/templates/default/tagcommondescriptionedit.tpl.php:34 #: data/templates/default/tagedit.tpl.php:19 #: data/templates/default/tagrename.tpl.php:25 msgid "Cancel" msgstr "" #: data/templates/default/bookmarklet.inc.php:1 msgid "Bookmarklet" msgstr "Bookmarklet" #: data/templates/default/bookmarklet.inc.php:11 #, fuzzy, php-format msgid "" "Click one of the following bookmarklets to add a button you can click " "whenever you want to add the page you are on to %s" msgstr "" "Bookmarklet是一个内含简单JavaScript代码的书签,使用的方法和您的浏览器中的书签" "一样,不同的地方是:书签是用来记录浏览的位置,而Bookmarklet则是记录某些对您正" "在浏览的页面进行处理的程序和方法。
使用Bookmarklet之前,您无需另外安装或下" "载程式,只要简单的将如下链接加入您的浏览器书签或是收藏夹之中。
选择如下" "Bookmarklet之一,并将其加入到您的浏览器书签中,当您浏览并希望收藏其他网站页面" "时,只需点击您的浏览器中 Bookmarklet 书签,就会将您希望收藏的页面发布到 %s" #: data/templates/default/bookmarklet.inc.php:20 #, php-format msgid "" "Drag one of the following bookmarklets to your browser's bookmarks and click " "it whenever you want to add the page you are on to %s" msgstr "" "Bookmarklet是一个内含简单JavaScript代码的书签,使用的方法和您的浏览器中的书签" "一样,不同的地方是:书签是用来记录浏览的位置,而Bookmarklet则是记录某些对您正" "在浏览的页面进行处理的程序和方法。
使用Bookmarklet之前,您无需另外安装或下" "载程式,只要简单的将如下链接加入您的浏览器书签或是收藏夹之中。
选择如下" "Bookmarklet之一,并将其加入到您的浏览器书签中,当您浏览并希望收藏其他网站页面" "时,只需点击您的浏览器中 Bookmarklet 书签,就会将您希望收藏的页面发布到 %s" #: data/templates/default/bookmarklet.inc.php:67 #: data/templates/default/bookmarklet.inc.php:100 #, php-format msgid "Post to %s" msgstr "收藏到 %s" #: data/templates/default/bookmarklet.inc.php:93 #: data/templates/default/bookmarklet.inc.php:110 #, php-format msgid "Post to %s (Pop-up)" msgstr "收藏到 %s(弹出窗口) " #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:24 #, php-format msgid "Voting %d" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:32 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:35 msgid "Vote for" msgstr "" #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:43 #: data/templates/default/bookmarks-vote-horizontal.inc.tpl.php:46 msgid "Vote against" msgstr "" #: data/templates/default/bookmarks.tpl.php:43 msgid "Bookmarks on this page are managed by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:73 #: data/templates/default/bookmarks.tpl.php:74 msgid "Edit the common description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:77 #: data/templates/default/bookmarks.tpl.php:78 msgid "Edit the common description of this bookmark" msgstr "" #: data/templates/default/bookmarks.tpl.php:98 #: data/templates/default/bookmarks.tpl.php:99 msgid "Edit your personal description of this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:115 #: data/templates/default/tags.tpl.php:10 #: data/templates/default/users.tpl.php:8 msgid "Sort by:" msgstr "排序方式:" #: data/templates/default/bookmarks.tpl.php:157 msgid "Date" msgstr "发布时间" #: data/templates/default/bookmarks.tpl.php:162 msgid "Voting" msgstr "" #: data/templates/default/bookmarks.tpl.php:171 msgid "Bookmarks from other users for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:176 msgid "Only your bookmarks for this tag" msgstr "" #: data/templates/default/bookmarks.tpl.php:199 #: data/templates/default/bookmarks.tpl.php:205 msgid "First" msgstr "" #: data/templates/default/bookmarks.tpl.php:200 #: data/templates/default/bookmarks.tpl.php:206 msgid "Previous" msgstr "上一页" #: data/templates/default/bookmarks.tpl.php:213 #: data/templates/default/bookmarks.tpl.php:216 msgid "Next" msgstr "下一页" #: data/templates/default/bookmarks.tpl.php:214 #: data/templates/default/bookmarks.tpl.php:217 msgid "Last" msgstr "" #: data/templates/default/bookmarks.tpl.php:233 #, php-format msgid "Page %d of %d" msgstr "第 %d 页 / 共 %d 页" #: data/templates/default/bookmarks.tpl.php:295 #, fuzzy msgid "Tags:" msgstr "标签" #: data/templates/default/bookmarks.tpl.php:302 msgid "Edit" msgstr "编辑" #: data/templates/default/bookmarks.tpl.php:310 msgid "Last update" msgstr "" #: data/templates/default/bookmarks.tpl.php:313 msgid "by" msgstr "" #: data/templates/default/bookmarks.tpl.php:317 msgid "you" msgstr "" #: data/templates/default/bookmarks.tpl.php:333 #, fuzzy, php-format msgid " and %s1 other%s" msgstr "同时被其他 %s 个用户收藏" #: data/templates/default/bookmarks.tpl.php:336 #, fuzzy, php-format msgid " and %2$s%1$s others%3$s" msgstr "同时被其他 %s 个用户收藏" #: data/templates/default/bookmarks.tpl.php:350 #, fuzzy msgid "Copy this bookmark to YOUR bookmarks." msgstr "" "导入(Internet Explorer, Mozilla Firefox and Netscape)浏览器的书签文件" #: data/templates/default/bookmarks.tpl.php:351 msgid "Copy" msgstr "复制" #: data/templates/default/bookmarks.tpl.php:376 msgid "This bookmark is certified by an admin user." msgstr "" #: data/templates/default/bookmarks.tpl.php:430 #, fuzzy msgid "Private Note on this bookmark" msgstr "您没有权限编辑此条书签" #: data/templates/default/bookmarks.tpl.php:444 msgid "Come back to the top of this page." msgstr "" #: data/templates/default/bookmarks.tpl.php:444 msgid "Top of the page" msgstr "" #: data/templates/default/bookmarks.tpl.php:450 msgid "No bookmarks available" msgstr "尚未有书签列入" #: data/templates/default/bottom.inc.php:5 #: data/templates/default/toolbar.inc.php:15 #: data/templates/default/toolbar.inc.php:28 www/about.php:23 www/about.php:24 msgid "About" msgstr "关于" #: data/templates/default/bottom.inc.php:7 msgid "Propulsed by " msgstr "" #: data/templates/default/dynamictags.inc.php:56 #: data/templates/default/sidebar.block.common.php:19 #: data/templates/default/sidebar.block.popular.php:34 #: data/templates/default/sidebar.block.recent.php:29 #: data/templates/default/tags.tpl.php:19 msgid "bookmark" msgid_plural "bookmarks" msgstr[0] "书签" msgstr[1] "书签" #: data/templates/default/dynamictags.inc.php:105 #: data/templates/default/sidebar.block.common.php:9 #: data/templates/default/sidebar.block.menu.php:74 #: data/templates/default/sidebar.block.popular.php:23 #: data/templates/default/sidebar.block.recent.php:34 #: data/templates/default/toolbar.inc.php:27 www/populartags.php:46 msgid "Popular Tags" msgstr "热门标签" #: data/templates/default/dynamictags.inc.php:108 #, fuzzy msgid "Popular Tags From All Users" msgstr "热门标签" #: data/templates/default/editbookmark.tpl.php:46 msgid "Address" msgstr "网址" #: data/templates/default/editbookmark.tpl.php:48 #: data/templates/default/editbookmark.tpl.php:53 #: data/templates/default/editprofile.tpl.php:29 #: data/templates/default/tagrename.tpl.php:14 #: data/templates/default/tagrename.tpl.php:19 msgid "Required" msgstr "必填项目" #: data/templates/default/editbookmark.tpl.php:58 msgid "Add Note" msgstr "" #: data/templates/default/editbookmark.tpl.php:61 msgid "" "You can use anchors to delimite attributes. for example: [publisher]blah[/" "publisher] " msgstr "" #: data/templates/default/editbookmark.tpl.php:64 msgid "Suggested anchors: " msgstr "" #: data/templates/default/editbookmark.tpl.php:76 #, fuzzy msgid "Private Note" msgstr "仅本用户" #: data/templates/default/editbookmark.tpl.php:78 msgid "Just visible by you and your contacts." msgstr "" #: data/templates/default/editbookmark.tpl.php:82 #: data/templates/default/toolbar.inc.php:10 www/tags.php:45 www/tags.php:67 msgid "Tags" msgstr "标签" #: data/templates/default/editbookmark.tpl.php:86 msgid "Comma-separated" msgstr "以单字节逗号分开" #: data/templates/default/editbookmark.tpl.php:90 #: data/templates/default/tag2tagadd.tpl.php:9 msgid "" "Note: use \">\" to include one tag in another. e.g.: europe>france>paris" msgstr "" #: data/templates/default/editbookmark.tpl.php:94 #: data/templates/default/tag2tagadd.tpl.php:8 msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" msgstr "" #: data/templates/default/editbookmark.tpl.php:97 #: data/templates/default/importDelicious.tpl.php:15 #: data/templates/default/importNetscape.tpl.php:16 msgid "Privacy" msgstr "私密" #: data/templates/default/editbookmark.tpl.php:100 #: data/templates/default/importDelicious.tpl.php:18 #: data/templates/default/importNetscape.tpl.php:19 msgid "Public" msgstr "公开发布" #: data/templates/default/editbookmark.tpl.php:101 msgid "Shared with Watch List" msgstr "仅关注者" #: data/templates/default/editbookmark.tpl.php:102 #: data/templates/default/importDelicious.tpl.php:20 #: data/templates/default/importNetscape.tpl.php:21 msgid "Private" msgstr "仅本用户" #: data/templates/default/editbookmark.tpl.php:115 msgid "Delete Bookmark" msgstr "删除书签" #: data/templates/default/editbookmark.tpl.php:120 msgid "edit common description" msgstr "" #: data/templates/default/editbookmark.tpl.php:212 #: data/templates/default/importDelicious.tpl.php:26 #: data/templates/default/importNetscape.tpl.php:27 #: data/templates/default/importStructure.tpl.php:16 msgid "Import" msgstr "导入书签" #: data/templates/default/editbookmark.tpl.php:214 msgid "Import bookmarks from bookmark file" msgstr "" "导入(Internet Explorer, Mozilla Firefox and Netscape)浏览器的书签文件" #: data/templates/default/editbookmark.tpl.php:214 msgid "Internet Explorer, Mozilla Firefox and Netscape" msgstr "Internet Explorer, Mozilla Firefox and Netscape" #: data/templates/default/editbookmark.tpl.php:215 msgid "Import bookmarks from del.icio.us" msgstr "导入del.icio.us的书签文件" #: data/templates/default/editprofile-sslclientcerts.tpl.php:11 msgid "SSL client certificates" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:17 msgid "Serial" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:18 #: data/templates/default/editprofile.tpl.php:45 #: data/templates/default/profile.tpl.php:17 msgid "Name" msgstr "用户全名" #: data/templates/default/editprofile-sslclientcerts.tpl.php:19 #: data/templates/default/profile.tpl.php:11 #, fuzzy msgid "Email" msgstr "用户Email" #: data/templates/default/editprofile-sslclientcerts.tpl.php:20 msgid "Issuer" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:30 #, fuzzy msgid "delete" msgstr "删除" #: data/templates/default/editprofile-sslclientcerts.tpl.php:43 msgid "No certificates registered" msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:48 msgid "Your current certificate is already registered with your account." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:53 msgid "Register current certificate to automatically login." msgstr "" #: data/templates/default/editprofile-sslclientcerts.tpl.php:59 msgid "Your browser does not provide a certificate." msgstr "" #: data/templates/default/editprofile.tpl.php:8 msgid "Account Details" msgstr "" #: data/templates/default/editprofile.tpl.php:12 #: data/templates/default/login.tpl.php:21 #: data/templates/default/password.tpl.php:10 #: data/templates/default/profile.tpl.php:6 #: data/templates/default/register.tpl.php:16 msgid "Username" msgstr "用户帐号" #: data/templates/default/editprofile.tpl.php:17 msgid "New Password" msgstr "新的密码" #: data/templates/default/editprofile.tpl.php:22 #, fuzzy msgid "Confirm Password" msgstr "确认密码" #: data/templates/default/editprofile.tpl.php:27 #: data/templates/default/password.tpl.php:14 #: data/templates/default/register.tpl.php:26 msgid "E-mail" msgstr "用户Email" #: data/templates/default/editprofile.tpl.php:32 #, fuzzy msgid "Private RSS Feed" msgstr "仅本用户" #: data/templates/default/editprofile.tpl.php:34 msgid "Enable" msgstr "" #: data/templates/default/editprofile.tpl.php:36 #, fuzzy msgid "Generate New Key" msgstr "新的密码" #: data/templates/default/editprofile.tpl.php:41 msgid "Personal Details" msgstr "" #: data/templates/default/editprofile.tpl.php:49 #: data/templates/default/profile.tpl.php:23 msgid "Homepage" msgstr "用户网站" #: data/templates/default/editprofile.tpl.php:58 www/edit.php:113 msgid "Save Changes" msgstr "保存修改" #: data/templates/default/editprofile.tpl.php:63 #: data/templates/default/sidebar.block.tagactions.php:17 #: data/templates/default/sidebar.block.watchstatus.php:18 #, fuzzy msgid "Actions" msgstr "步骤和导入方法" #: data/templates/default/editprofile.tpl.php:66 #, fuzzy msgid "Export bookmarks" msgstr "您的书签" #: data/templates/default/editprofile.tpl.php:68 msgid "HTML file (for browsers)" msgstr "" #: data/templates/default/editprofile.tpl.php:69 msgid "XML file (like del.icio.us)" msgstr "" #: data/templates/default/editprofile.tpl.php:70 msgid "CSV file (for spreadsheet tools)" msgstr "" #: data/templates/default/error.404.tpl.php:5 msgid "Not Found" msgstr "文件不存在" #: data/templates/default/error.404.tpl.php:6 msgid "The requested URL was not found on this server" msgstr "您指定的文件不存在。" #: data/templates/default/error.500.tpl.php:5 msgid "General server error" msgstr "一般性服务器错误" #: data/templates/default/error.500.tpl.php:6 msgid "The requested URL could not be processed" msgstr "无法对您指定的文件进行导入操作。" #: data/templates/default/importDelicious.tpl.php:19 #: data/templates/default/importNetscape.tpl.php:20 #, fuzzy msgid "Shared with Watchlist" msgstr "仅关注者" #: data/templates/default/importDelicious.tpl.php:31 #: data/templates/default/importNetscape.tpl.php:32 #: data/templates/default/importStructure.tpl.php:21 msgid "Instructions" msgstr "步骤和导入方法" #: data/templates/default/importDelicious.tpl.php:33 #, fuzzy msgid "" "Log in to the export page " "at del.icio.us" msgstr "" "登录del.icio.us导出书签数据" #: data/templates/default/importDelicious.tpl.php:34 msgid "" "Save the resulting XML " "file to your computer" msgstr "" "保存XML文件到您的电脑中。" #: data/templates/default/importDelicious.tpl.php:35 msgid "" "Click Browse... to find this file on your computer. The maximum " "size the file can be is 1MB" msgstr "点击浏览...在您的电脑中找到书签文件,最大允许导入1Mb数据" #: data/templates/default/importDelicious.tpl.php:36 #: data/templates/default/importNetscape.tpl.php:43 msgid "Select the default privacy setting for your imported bookmarks" msgstr "为导入的书签选择默认私密设置" #: data/templates/default/importDelicious.tpl.php:37 #: data/templates/default/importNetscape.tpl.php:44 msgid "" "Click Import to start importing the bookmarks; it may take a " "minute" msgstr "点击导入书签开始导入,耗时1分钟左右。" #: data/templates/default/importNetscape.tpl.php:35 msgid "Export your bookmarks from your browser to a file" msgstr "将您的浏览器书签数据导出为一个文件" #: data/templates/default/importNetscape.tpl.php:37 msgid "" "Internet Explorer: File > Import and Export... > Export Favorites" msgstr "Internet Explorer: 文件 > 导入和导出... > 导出收藏夹 " #: data/templates/default/importNetscape.tpl.php:38 msgid "" "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > " "Export..." msgstr "" "Mozilla Firefox: 书签 > 管理书签... > 文件 > 导出书签... " #: data/templates/default/importNetscape.tpl.php:39 msgid "" "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..." msgstr "Netscape: 书签 > 管理书签... > 工具 >> 导出书签... " #: data/templates/default/importNetscape.tpl.php:42 msgid "" "Click Browse... to find the saved bookmark file on your computer. " "The maximum size the file can be is 1MB" msgstr "点击浏览... 在您的电脑中找到书签文件,最大允许导入1Mb数据" #: data/templates/default/importStructure.tpl.php:24 msgid "Create your structure into a simple text file and following this model:" msgstr "" #: data/templates/default/importStructure.tpl.php:35 msgid "" "Then import the file. The tags and their relations will be added to your " "profile." msgstr "" #: data/templates/default/login.tpl.php:13 msgid "Please activate cookies" msgstr "" #: data/templates/default/login.tpl.php:26 #: data/templates/default/register.tpl.php:21 msgid "Password" msgstr "密码" #: data/templates/default/login.tpl.php:28 msgid "Don't ask for my password for 2 weeks" msgstr "存储帐号密码信息2周" #: data/templates/default/login.tpl.php:32 #: data/templates/default/toolbar.inc.php:29 www/login.php:57 msgid "Log In" msgstr "登陆" #: data/templates/default/login.tpl.php:36 msgid "Forgotten your password?" msgstr "" #: data/templates/default/password.tpl.php:5 #, php-format msgid "" "If you have forgotten your password, %s can generate a new one. Enter the " "username and e-mail address of your account into the form below and we will " "e-mail your new password to you." msgstr "" #: data/templates/default/password.tpl.php:19 #, fuzzy msgid "Generate Password" msgstr "新的密码" #: data/templates/default/profile.tpl.php:28 msgid "Member Since" msgstr "注册时间" #: data/templates/default/profile.tpl.php:40 #: data/templates/default/sidebar.block.watchlist.php:30 #, fuzzy msgid "Watching" msgstr "我关注的其他用户" #: data/templates/default/profile.tpl.php:55 #: data/templates/default/sidebar.block.watchlist.php:52 msgid "Watched By" msgstr "关注该用户的其他用户" #: data/templates/default/profile.tpl.php:68 #: data/templates/default/toolbar.inc.php:9 #, fuzzy msgid "Bookmarks" msgstr "%s 书签" #: data/templates/default/profile.tpl.php:69 #, fuzzy msgid "Go to bookmarks" msgstr "您的书签" #: data/templates/default/register.tpl.php:11 #, php-format msgid "" "Sign up here to create a free %s account. All the information requested " "below is required" msgstr "您可以免费注册成为 %s 的用户,请填写如下表单:" #: data/templates/default/register.tpl.php:18 msgid "" " at least 5 characters, alphanumeric (no spaces, no dots or other special " "ones)" msgstr "" #: data/templates/default/register.tpl.php:28 msgid " to send you your password if you forget it" msgstr "" #: data/templates/default/register.tpl.php:33 msgid "Antispam question" msgstr "" #: data/templates/default/register.tpl.php:41 #: data/templates/default/toolbar.inc.php:31 www/register.php:99 msgid "Register" msgstr "注册" #: data/templates/default/search.menu.php:27 #, fuzzy msgid "Search..." msgstr "搜索" #: data/templates/default/search.menu.php:28 #, fuzzy msgid "in" msgstr "行" #: data/templates/default/search.menu.php:34 #, fuzzy msgid "this user's bookmarks" msgstr "%s 书签" #: data/templates/default/search.menu.php:39 msgid "my bookmarks" msgstr "您的书签" #: data/templates/default/search.menu.php:40 #, fuzzy msgid "my watchlist" msgstr "将用户加入到您的关注列表" #: data/templates/default/search.menu.php:44 msgid "all bookmarks" msgstr "所有书签" #: data/templates/default/search.menu.php:54 msgid "Search" msgstr "搜索" #: data/templates/default/sidebar.block.linked.php:23 #, fuzzy msgid "Linked Tags" msgstr "关联标签" #: data/templates/default/sidebar.block.linked.php:28 #: data/templates/default/sidebar.block.menu.php:46 msgid "Add new link" msgstr "" #: data/templates/default/sidebar.block.linked.php:29 #: data/templates/default/sidebar.block.menu.php:47 #, fuzzy msgid "Delete link" msgstr "删除" #: data/templates/default/sidebar.block.menu.php:35 #, php-format msgid "Tags included into the tag '%s'" msgstr "" #: data/templates/default/sidebar.block.menu.php:35 #, fuzzy msgid "Menu Tags" msgstr "最新标签" #: data/templates/default/sidebar.block.menu.php:68 msgid "See all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:68 msgid "all your tags" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "See all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:70 msgid "all tags from this user" msgstr "" #: data/templates/default/sidebar.block.menu.php:74 #, fuzzy msgid "See popular tags" msgstr "热门标签" #: data/templates/default/sidebar.block.menu2.php:21 #, fuzzy msgid "Featured Menu Tags" msgstr "关联标签" #: data/templates/default/sidebar.block.menu2.php:25 msgid "This menu is composed of keywords (tags) organized by admins." msgstr "" #: data/templates/default/sidebar.block.recent.php:18 msgid "Recent Tags" msgstr "最新标签" #: data/templates/default/sidebar.block.related.php:26 msgid "Related Tags" msgstr "关联标签" #: data/templates/default/sidebar.block.search.php:28 #, fuzzy msgid "Last Searches" msgstr "搜索" #: data/templates/default/sidebar.block.search.php:40 #, fuzzy msgid "Number of bookmarks for this query" msgstr "尚无书签" #: data/templates/default/sidebar.block.tagactions.php:9 www/tagrename.php:72 #, fuzzy msgid "Rename Tag" msgid_plural "Rename Tags" msgstr[0] "关联标签" msgstr[1] "关联标签" #: data/templates/default/sidebar.block.tagactions.php:22 www/tagdelete.php:54 #, fuzzy msgid "Delete Tag" msgstr "删除" #: data/templates/default/sidebar.block.tagactions.php:24 www/tagedit.php:61 #, fuzzy msgid "Edit Tag Description" msgstr "描述" #: data/templates/default/sidebar.block.tagactions.php:26 #: www/tagcommondescriptionedit.php:76 msgid "Edit Tag Common Description" msgstr "" #: data/templates/default/sidebar.block.tagactions.php:28 msgid "Create a link to another tag" msgstr "" #: data/templates/default/sidebar.block.users.php:14 msgid "New Users" msgstr "" #: data/templates/default/sidebar.block.users.php:23 #: data/templates/default/users.tpl.php:24 #, fuzzy msgid "bookmarks" msgstr "书签" #: data/templates/default/sidebar.block.users.php:30 msgid "See all users" msgstr "" #: data/templates/default/sidebar.block.users.php:30 msgid "All users" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts are mutual contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:19 msgid "Close contacts" msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Add a contact..." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:36 msgid "Type a username to add it to your contacts." msgstr "" #: data/templates/default/sidebar.block.watchlist.php:44 #, fuzzy msgid "Remove this contact" msgstr "将用户从您的关注列表中删除" #: data/templates/default/sidebar.block.watchstatus.php:11 msgid "Remove from Watchlist" msgstr "将用户从您的关注列表中删除" #: data/templates/default/sidebar.block.watchstatus.php:13 msgid "Add to Watchlist" msgstr "将用户加入到您的关注列表" #: data/templates/default/sidebar.linkedtags.inc.php:18 #, fuzzy msgid "Edit link" msgstr "编辑" #: data/templates/default/sidebar.linkedtags.inc.php:47 msgid "Synonyms:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:12 msgid "Create new link:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:19 #, php-format msgid "" "Note: include a tag into '%s' tag (e.g. %s>countries) display the tag into " "the menu box" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:23 #: data/templates/default/tag2tagedit.tpl.php:37 msgid "Create" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:35 #: data/templates/default/tag2tagdelete.tpl.php:27 #: data/templates/default/tag2tagedit.tpl.php:51 msgid "Existing links:" msgstr "" #: data/templates/default/tag2tagadd.tpl.php:53 #: data/templates/default/tag2tagdelete.tpl.php:45 #: data/templates/default/tag2tagedit.tpl.php:69 msgid "No links" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:15 #: data/templates/default/tag2tagedit.tpl.php:16 #: data/templates/default/tagdelete.tpl.php:8 www/jsScuttle.php:24 msgid "Yes" msgstr "" #: data/templates/default/tag2tagdelete.tpl.php:16 #: data/templates/default/tag2tagedit.tpl.php:17 #: data/templates/default/tagdelete.tpl.php:9 www/jsScuttle.php:24 msgid "No" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:6 msgid "Delete the link" msgstr "" #: data/templates/default/tag2tagedit.tpl.php:29 msgid "Create new link" msgstr "" #: data/templates/default/tagrename.tpl.php:12 msgid "Old" msgstr "" #: data/templates/default/tagrename.tpl.php:17 msgid "New" msgstr "" #: data/templates/default/tagrename.tpl.php:24 #, fuzzy msgid "Rename" msgstr "用户帐号" #: data/templates/default/tags.tpl.php:11 #: data/templates/default/users.tpl.php:9 msgid "Alphabet" msgstr "" #: data/templates/default/tags.tpl.php:12 #: data/templates/default/users.tpl.php:10 #, fuzzy msgid "Popularity" msgstr "热门标签" #: data/templates/default/toolbar.inc.php:8 #: data/templates/default/toolbar.inc.php:26 #, fuzzy msgid "Home" msgstr "用户网站" #: data/templates/default/toolbar.inc.php:11 www/watchlist.php:106 #, fuzzy msgid "Watchlist" msgstr "我关注的其他用户" #: data/templates/default/toolbar.inc.php:12 www/profile.php:79 msgid "Profile" msgstr "个人资料" #: data/templates/default/toolbar.inc.php:13 www/bookmarks.php:215 msgid "Add a Bookmark" msgstr "添加书签" #: data/templates/default/toolbar.inc.php:14 msgid "Log Out" msgstr "登出" #: data/templates/default/toolbar.inc.php:17 msgid "Admin" msgstr "" #: data/templates/default/top.inc.php:57 msgid "" "Admins, your installation is in \"Debug Mode\" ($debugMode = true). To go in " "\"Normal Mode\" and hide debugging messages, change $debugMode to false into " "config.php." msgstr "" #: data/templates/default/users.tpl.php:20 #, fuzzy msgid "profile" msgstr "个人资料" #: data/templates/default/users.tpl.php:21 msgid "created in" msgstr "" #: www/admin.php:32 msgid "Manage users" msgstr "" #: www/admin.php:69 #, php-format msgid "%s and all his bookmarks and tags were deleted." msgstr "" #: www/admin.php:76 msgid "Problem with " msgstr "" #: www/ajaxDelete.php:37 msgid "You are not allowed to delete this bookmark" msgstr "您没有权限删除此条书签" #: www/ajaxDelete.php:41 www/edit.php:103 msgid "Failed to delete bookmark" msgstr "删除书签失败" #: www/alltags.php:50 msgid "All Tags" msgstr "所有标签" #: www/alltags.php:56 www/bookmarks.php:99 www/populartags.php:52 #: www/profile.php:55 www/rss.php:100 www/search.php:111 www/watch.php:45 #: www/watchlist.php:61 #, fuzzy, php-format msgid "User with username %s was not found" msgstr "未发现以 %s 为用户名的用户" #: www/bookmarkcommondescriptionedit.php:51 www/tag2tagadd.php:37 #: www/tag2tagdelete.php:41 www/tag2tagedit.php:33 #: www/tagcommondescriptionedit.php:51 www/tagedit.php:43 msgid "Permission denied." msgstr "" #: www/bookmarkcommondescriptionedit.php:60 msgid "Bookmark common description updated" msgstr "" #: www/bookmarkcommondescriptionedit.php:63 #, fuzzy msgid "Failed to update the bookmark common description" msgstr "删除书签失败" #: www/bookmarkcommondescriptionedit.php:71 msgid "Edit Bookmark Common Description" msgstr "" #: www/bookmarks.php:114 www/tags.php:47 msgid "Remove the tag from the selection" msgstr "" #: www/bookmarks.php:134 www/edit.php:65 msgid "Your bookmark must have a title and an address" msgstr "每条书签必须包含标题和网址" #: www/bookmarks.php:139 msgid "This bookmark URL may not be added" msgstr "" #: www/bookmarks.php:158 www/edit.php:83 www/edit.php:86 msgid "Bookmark saved" msgstr "录入书签已被成功保存" #: www/bookmarks.php:158 msgid "(Come back to previous page.)" msgstr "" #: www/bookmarks.php:165 www/import.php:106 www/importNetscape.php:108 msgid "" "There was an error saving your bookmark. Please try again or contact the " "administrator." msgstr "保存书签时出错,请再保存重试一次或者联系管理员" #: www/bookmarks.php:222 msgid "Add Bookmark" msgstr "添加书签" #: www/bookmarks.php:225 msgid "You must be logged in before you can add bookmarks." msgstr "您必须登陆后才能添加书签" #: www/bookmarks.php:270 #, php-format msgid "%s: %s" msgstr "" #: www/bookmarks.php:283 #, php-format msgid "%s: %s (+private %s)" msgstr "" #: www/bookmarks.php:305 www/bookmarks.php:306 msgid "My Bookmarks" msgstr "您的书签" #: www/edit.php:44 www/edit.php:45 msgid "Edit Bookmark" msgstr "编辑书签" #: www/edit.php:51 #, php-format msgid "Bookmark with id %s not was not found" msgstr "id为 %s 的书签不存在" #: www/edit.php:57 msgid "You are not allowed to edit this bookmark" msgstr "您没有权限编辑此条书签" #: www/edit.php:77 msgid "Error while saving your bookmark" msgstr "在保存书签时出错" #: www/history.php:61 msgid "History" msgstr "" #: www/history.php:62 #, php-format msgid "History for %s" msgstr "" #: www/history.php:84 msgid "Address was not found" msgstr "" #: www/import.php:47 msgid "Could not open XML input" msgstr "无法打开XML输入" #: www/import.php:51 #, php-format msgid "XML error: %s at line %d" msgstr "XML错误: %s 发生在 %d 行" #: www/import.php:60 msgid "Import Bookmarks from del.icio.us" msgstr "将del.icio.us的书签文件导入 " #: www/import.php:93 msgid "You have already submitted this bookmark." msgstr "您过去已经录入过这条书签" #: www/import.php:104 msgid "Bookmark imported." msgstr "书签导入完毕." #: www/importNetscape.php:95 #, fuzzy msgid "You have already submitted some of these bookmarks." msgstr "您过去已经录入过这条书签" #: www/importNetscape.php:115 #, fuzzy msgid "Bookmarks found: " msgstr "尚无书签" #: www/importNetscape.php:116 #, fuzzy msgid "Bookmarks imported: " msgstr "书签导入完毕." #: www/importNetscape.php:117 www/importNetscape.php:122 msgid "Import Bookmarks from Browser File" msgstr "" "将浏览器的书签文件导入(Internet Explorer, Mozilla Firefox and Netscape)" #: www/importStructure.php:61 msgid "Bad indentation" msgstr "" #: www/importStructure.php:67 msgid "New links between tags: " msgstr "" #: www/importStructure.php:72 msgid "Import Structure" msgstr "" #: www/index.php:38 msgid "You have now logged out" msgstr "您已经成功登出" #: www/index.php:46 #, php-format msgid "%s: Recent bookmarks" msgstr "%s: 最近书签" #: www/index.php:58 #, fuzzy, php-format msgid "%s: Recent bookmarks (+private %s)" msgstr "%s: 最近书签" #: www/index.php:96 msgid "Store, share and tag your favourite links" msgstr "" #: www/index.php:97 #, fuzzy msgid "All Bookmarks" msgstr "所有书签" #: www/jsScuttle.php:71 msgid "Available" msgstr "" #: www/jsScuttle.php:74 #, fuzzy msgid "Not Available" msgstr "尚未有书签列入" #: www/login.php:48 msgid "The details you have entered are incorrect. Please try again." msgstr "您输入的详细信息不正确,请重试." #: www/password.php:36 msgid "You must enter your username." msgstr "" #: www/password.php:40 #, fuzzy msgid "" "You must enter your e-mail address." msgstr "" "您 必须 输入用户名,密码,姓名和 e-mail 地址." #: www/password.php:48 msgid "No matches found for that username." msgstr "" #: www/password.php:51 #, fuzzy msgid "" "No matches found for that combination of username and e-mail address." msgstr "" "您 必须 输入用户名,密码,姓名和 e-mail 地址." #: www/password.php:59 #, fuzzy msgid "" "There was an error while generating your new password. Please try again." msgstr "保存书签时出错,请再保存重试一次或者联系管理员" #: www/password.php:63 #, fuzzy msgid "Your new password is:" msgstr "确认密码" #: www/password.php:63 msgid "" "To keep your bookmarks secure, you should change this password in your " "profile the next time you log in." msgstr "" #: www/password.php:66 #, fuzzy, php-format msgid "%s Account Information" msgstr "信息" #: www/password.php:68 #, php-format msgid "New password generated and sent to %s" msgstr "" #: www/password.php:75 #, fuzzy msgid "Forgotten Password" msgstr "新的密码" #: www/profile.php:63 www/watchlist.php:119 msgid "Username was not specified" msgstr "没有提供用户名" #: www/profile.php:70 #, fuzzy msgid "My Profile" msgstr "个人资料" #: www/profile.php:110 msgid "Invalid Token" msgstr "" #: www/profile.php:115 msgid "Password and confirmation do not match." msgstr "密码和确认密码不一致." #: www/profile.php:119 msgid "Password must be at least 6 characters long." msgstr "密码至少6位." #: www/profile.php:123 msgid "E-mail address is not valid." msgstr "Email地址不合法." #: www/profile.php:127 msgid "An error occurred while saving your changes." msgstr "保存修改时出错." #: www/profile.php:129 msgid "Changes saved." msgstr "保存修改成功." #: www/profile.php:148 msgid "You do not have a valid SSL client certificate" msgstr "" #: www/profile.php:150 msgid "This certificate is already registered" msgstr "" #: www/profile.php:152 msgid "Failed to register SSL client certificate." msgstr "" #: www/profile.php:154 msgid "SSL client certificate registered." msgstr "" #: www/profile.php:163 msgid "Certificate not found." msgstr "" #: www/profile.php:165 msgid "The certificate does not belong to you." msgstr "" #: www/profile.php:167 msgid "Failed to delete SSL client certificate." msgstr "" #: www/profile.php:169 msgid "SSL client certificate deleted." msgstr "" #: www/register.php:52 #, fuzzy msgid "You must enter a username, password and e-mail address." msgstr "" "您 必须 输入用户名,密码,姓名和 e-mail 地址." #: www/register.php:56 #, fuzzy msgid "This username has been reserved, please make another choice." msgstr "用户名已经存在,请选择其他用户名." #: www/register.php:60 msgid "This username already exists, please make another choice." msgstr "用户名已经存在,请选择其他用户名." #: www/register.php:64 #, fuzzy msgid "" "This username is not valid (too short, too long, forbidden characters...), " "please make another choice." msgstr "用户名已经存在,请选择其他用户名." #: www/register.php:68 #, fuzzy msgid "E-mail address is not valid. Please try again." msgstr "Email地址不合法." #: www/register.php:72 #, fuzzy msgid "Antispam answer is not valid. Please try again." msgstr "Email地址不合法." #: www/register.php:90 msgid "You have successfully registered. Enjoy!" msgstr "您已经注册成功." #: www/register.php:92 msgid "Registration failed. Please try again." msgstr "注册失败,请重试." #: www/rss.php:90 www/rss.php:111 #, php-format msgid "Failed to Autenticate User with username %s using private key" msgstr "" #: www/rss.php:128 #, php-format msgid "Recent bookmarks posted to %s" msgstr "最新发布到%s的书签" #: www/search.php:83 www/search.php:147 msgid "Search Bookmarks" msgstr "搜索书签" #: www/search.php:89 msgid "Search Results" msgstr "搜索结果" #: www/search.php:137 msgid "Unsatisfied? You can also try our " msgstr "" #: www/tag2tagadd.php:54 msgid "Tag link created" msgstr "" #: www/tag2tagadd.php:57 #, fuzzy msgid "Failed to create the link" msgstr "删除书签失败" #: www/tag2tagadd.php:69 msgid "Add Tag Link" msgstr "" #: www/tag2tagdelete.php:66 msgid "Tag link deleted" msgstr "" #: www/tag2tagdelete.php:69 #, fuzzy msgid "Failed to delete the link" msgstr "删除书签失败" #: www/tag2tagdelete.php:81 msgid "Delete Link Between Tags" msgstr "" #: www/tag2tagedit.php:55 msgid "Edit Link Between Tags" msgstr "" #: www/tagcommondescriptionedit.php:62 msgid "Tag common description updated" msgstr "" #: www/tagcommondescriptionedit.php:67 msgid "Failed to update the tag common description" msgstr "" #: www/tagdelete.php:43 msgid "Tag deleted" msgstr "" #: www/tagdelete.php:46 #, fuzzy msgid "Failed to delete the tag" msgstr "删除书签失败" #: www/tagedit.php:52 msgid "Tag description updated" msgstr "" #: www/tagedit.php:55 #, fuzzy msgid "Failed to update the tag description" msgstr "删除书签失败" #: www/tagrename.php:63 msgid "Tag renamed" msgstr "" #: www/tagrename.php:66 #, fuzzy msgid "Failed to rename the tag" msgstr "删除书签失败" #: www/tags.php:71 #, php-format msgid "%s: tagged with \"%s\"" msgstr "" #: www/tags.php:84 #, php-format msgid "%s: tagged with \"%s\" (+private %s)" msgstr "" #: www/users.php:31 #, fuzzy msgid "Users" msgstr "用户帐号" #: www/watch.php:54 msgid "User removed from your watchlist" msgstr "已将用户从您的关注列表中删除" #: www/watch.php:56 msgid "User added to your watchlist" msgstr "已将用户加入到您的关注列表中" #: www/watchlist.php:104 #, fuzzy msgid "My Watchlist" msgstr "我关注的其他用户" #: www/api/httpauth.inc.php:30 msgid "Use of the API calls requires authentication." msgstr "" #: www/gsearch/index.php:51 msgid "Come back to " msgstr "" #: www/gsearch/index.php:56 msgid "Admin tips: " msgstr "" #: www/gsearch/index.php:57 msgid "To refresh manually Google Custom Search Engine, goes to: " msgstr "" #: www/gsearch/index.php:61 msgid "" "If no result appears, check that all the urls are valid in the admin section." msgstr "" #~ msgid "User with username %s not was not found" #~ msgstr "未发现以 %s 为用户名的用户" #~ msgid "Recent Bookmarks" #~ msgstr "最近书签" #~ msgid "for" #~ msgstr "关于" #~ msgid "%s Bookmarks" #~ msgstr "%s 书签" #~ msgid "URL" #~ msgstr "URL网址" #~ msgid "E-mail" #~ msgstr "E-mail" semanticscuttle-0.98.5+dfsg/data/schema/000077500000000000000000000000001227405131600201155ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/schema/1.sql000066400000000000000000000012361227405131600210000ustar00rootroot00000000000000RENAME TABLE `sc_tags` TO `sc_bookmarks2tags` ; CREATE TABLE `sc_searchhistory` ( `shId` int(11) NOT NULL auto_increment, `shTerms` varchar(255) NOT NULL default '', `shRange` varchar(32) NOT NULL default '', `shDatetime` datetime NOT NULL default '0000-00-00 00:00:00', `shNbResults` int(6) NOT NULL default '0', `uId` int(11) NOT NULL default '0', PRIMARY KEY (`shId`) ); CREATE TABLE `sc_tags` ( `tId` int(11) NOT NULL auto_increment, `tag` varchar(32) NOT NULL default '', `uId` int(11) NOT NULL default '0', `tDescription` varchar(255) default NULL, PRIMARY KEY (`tId`), UNIQUE KEY `sc_tags_tag_uId` (`tag`, `uId`) ); semanticscuttle-0.98.5+dfsg/data/schema/2.sql000066400000000000000000000006741227405131600210060ustar00rootroot00000000000000ALTER TABLE `sc_bookmarks` CHANGE `bDescription` `bDescription` VARCHAR( 1500 ) CREATE TABLE `sc_tagscache` ( `tcId` int(11) NOT NULL auto_increment, `tag1` varchar(100) NOT NULL default '', `tag2` varchar(100) NOT NULL default '', `relationType` varchar(32) NOT NULL default '', `uId` int(11) NOT NULL default '0', PRIMARY KEY (`tcId`), UNIQUE KEY `sc_tagscache_tag1_tag2_type_uId` (`tag1`,`tag2`,`relationType`,`uId`) ); semanticscuttle-0.98.5+dfsg/data/schema/3.sql000066400000000000000000000122661227405131600210070ustar00rootroot00000000000000/* modify and add fields */ ALTER TABLE `sc_bookmarks` MODIFY `bAddress` varchar(1500) NOT NULL; ALTER TABLE `sc_bookmarks` MODIFY `bDescription` TEXT default NULL; ALTER TABLE `sc_bookmarks` ADD `bPrivateNote` TEXT NULL AFTER `bDescription` ; ALTER TABLE `sc_tags` MODIFY `tDescription` TEXT default NULL; ALTER TABLE `sc_commondescription` MODIFY `cdDescription` TEXT default NULL; /* convert to UTF-8 if your table is ISO-something (through BLOB: tips provided by MYSQL documentation)*/ /* first need to remove index keys because of BLOB constraints*/ ALTER TABLE `sc_tags` DROP INDEX `sc_tags_tag_uId`; ALTER TABLE `sc_bookmarks2tags` DROP INDEX `sc_bookmarks2tags_tag_bId`; ALTER TABLE `sc_bookmarks2tags` DROP INDEX `sc_bookmarks2tags_bId`; ALTER TABLE `sc_tags2tags` DROP INDEX `sc_tags2tags_tag1_tag2_uId`; ALTER TABLE `sc_commondescription` DROP INDEX `sc_commondescription_tag_datetime`; ALTER TABLE `sc_tagscache` DROP INDEX `sc_tagscache_tag1_tag2_type_uId`; ALTER TABLE `sc_tagsstats` DROP INDEX `sc_tagsstats_tag1_type_uId`; /* secondly convert through BLOB type */ ALTER TABLE `sc_bookmarks` CHANGE `bTitle` `bTitle` BLOB; ALTER TABLE `sc_bookmarks` CHANGE `bTitle` `bTitle` varchar(255) CHARACTER SET utf8; ALTER TABLE `sc_bookmarks` CHANGE `bAddress` `bAddress` BLOB; ALTER TABLE `sc_bookmarks` CHANGE `bAddress` `bAddress` varchar(1500) CHARACTER SET utf8; ALTER TABLE `sc_bookmarks` CHANGE `bDescription` `bDescription` BLOB; ALTER TABLE `sc_bookmarks` CHANGE `bDescription` `bDescription` text CHARACTER SET utf8; ALTER TABLE `sc_bookmarks` CHANGE `bPrivateNote` `bPrivateNote` BLOB; ALTER TABLE `sc_bookmarks` CHANGE `bPrivateNote` `bPrivateNote` text CHARACTER SET utf8; ALTER TABLE `sc_tags` CHANGE `tag` `tag` BLOB; ALTER TABLE `sc_tags` CHANGE `tag` `tag` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_tags` CHANGE `tDescription` `tDescription` BLOB; ALTER TABLE `sc_tags` CHANGE `tDescription` `tDescription` text CHARACTER SET utf8; ALTER TABLE `sc_bookmarks2tags` CHANGE `tag` `tag` BLOB; ALTER TABLE `sc_bookmarks2tags` CHANGE `tag` `tag` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_users` CHANGE `name` `name` BLOB; ALTER TABLE `sc_users` CHANGE `name` `name` varchar(50) CHARACTER SET utf8; ALTER TABLE `sc_users` CHANGE `uContent` `uContent` BLOB; ALTER TABLE `sc_users` CHANGE `uContent` `uContent` text CHARACTER SET utf8; ALTER TABLE `sc_tags2tags` CHANGE `tag1` `tag1` BLOB; ALTER TABLE `sc_tags2tags` CHANGE `tag1` `tag1` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_tags2tags` CHANGE `tag2` `tag2` BLOB; ALTER TABLE `sc_tags2tags` CHANGE `tag2` `tag2` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_tagsstats` CHANGE `tag1` `tag1` BLOB; ALTER TABLE `sc_tagsstats` CHANGE `tag1` `tag1` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_tagscache` CHANGE `tag1` `tag1` BLOB; ALTER TABLE `sc_tagscache` CHANGE `tag1` `tag1` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_tagscache` CHANGE `tag2` `tag2` BLOB; ALTER TABLE `sc_tagscache` CHANGE `tag2` `tag2` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_commondescription` CHANGE `tag` `tag` BLOB; ALTER TABLE `sc_commondescription` CHANGE `tag` `tag` varchar(100) CHARACTER SET utf8; ALTER TABLE `sc_commondescription` CHANGE `cdTitle` `cdTitle` BLOB; ALTER TABLE `sc_commondescription` CHANGE `cdTitle` `cdTitle` varchar(255) CHARACTER SET utf8; ALTER TABLE `sc_commondescription` CHANGE `cdDescription` `cdDescription` BLOB; ALTER TABLE `sc_commondescription` CHANGE `cdDescription` `cdDescription` text CHARACTER SET utf8; ALTER TABLE `sc_searchhistory` CHANGE `shTerms` `shTerms` BLOB; ALTER TABLE `sc_searchhistory` CHANGE `shTerms` `shTerms` varchar(255) CHARACTER SET utf8; ALTER TABLE `sc_searchhistory` CHANGE `shRange` `shRange` BLOB; ALTER TABLE `sc_searchhistory` CHANGE `shRange` `shRange` varchar(32) CHARACTER SET utf8; /* Thirdly re-add index keys */ ALTER TABLE `sc_tags` ADD UNIQUE KEY `sc_tags_tag_uId` (`tag`, `uId`); ALTER TABLE `sc_bookmarks2tags` ADD UNIQUE KEY `sc_bookmarks2tags_tag_bId` (`tag`,`bId`); ALTER TABLE `sc_bookmarks2tags` ADD KEY `sc_bookmarks2tags_bId` (`bId`); ALTER TABLE `sc_tags2tags` ADD UNIQUE KEY `sc_tags2tags_tag1_tag2_uId` (`tag1`,`tag2`,`relationType`,`uId`); ALTER TABLE `sc_commondescription` ADD UNIQUE KEY `sc_commondescription_tag_datetime` (`tag`,`cdDatetime`); ALTER TABLE `sc_tagscache` ADD UNIQUE KEY `sc_tagscache_tag1_tag2_type_uId` (`tag1`,`tag2`,`relationType`,`uId`); ALTER TABLE `sc_tagsstats` ADD UNIQUE KEY `sc_tagsstats_tag1_type_uId` (`tag1`,`relationType`,`uId`); /* Change tables to utf-8 charset */ ALTER TABLE `sc_bookmarks` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_tags` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_bookmarks2tags` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_users` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_watched` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_tags2tags` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_tagsstats` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_tagscache` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_commondescription` CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_searchhistory` CHARACTER SET utf8 COLLATE utf8_general_ci; semanticscuttle-0.98.5+dfsg/data/schema/4.sql000066400000000000000000000005171227405131600210040ustar00rootroot00000000000000ALTER TABLE `sc_bookmarks` ADD `bVoting` INT NOT NULL; ALTER TABLE `sc_bookmarks` ADD `bVotes` INT NOT NULL; CREATE TABLE `sc_votes` ( `bId` INT NOT NULL , `uId` INT NOT NULL , `vote` INT( 2 ) NOT NULL , UNIQUE KEY `bid_2` (`bId`,`uId`), KEY `bid` (`bId`), KEY `uid` (`uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; semanticscuttle-0.98.5+dfsg/data/schema/5.sql000066400000000000000000000001071227405131600210000ustar00rootroot00000000000000ALTER TABLE `sc_bookmarks` ADD `bShort` VARCHAR(16) NULL DEFAULT NULL; semanticscuttle-0.98.5+dfsg/data/schema/6.sql000066400000000000000000000011551227405131600210050ustar00rootroot00000000000000CREATE TABLE `sc_version` ( `schema_version` int(11) NOT NULL ) DEFAULT CHARSET=utf8; INSERT INTO `sc_version` (`schema_version`) VALUES ('6'); CREATE TABLE `sc_users_sslclientcerts` ( `id` INT NOT NULL AUTO_INCREMENT , `uId` INT NOT NULL , `sslSerial` VARCHAR( 32 ) NOT NULL , `sslClientIssuerDn` VARCHAR( 1024 ) NOT NULL , `sslName` VARCHAR( 64 ) NOT NULL , `sslEmail` VARCHAR( 64 ) NOT NULL , PRIMARY KEY ( `id` ) , UNIQUE (`id`) ) CHARACTER SET utf8 COLLATE utf8_general_ci; ALTER TABLE `sc_users` ADD `privateKey` VARCHAR(33) NULL; CREATE UNIQUE INDEX `privateKey` ON `sc_users` (`privateKey`); semanticscuttle-0.98.5+dfsg/data/tables-postgresql.sql000066400000000000000000000141451227405131600230560ustar00rootroot00000000000000-- Semantic Scuttle - Tables creation SQL script -- ! Dont forget to change table names according to $tableprefix defined in config.php ! -- -- Table structure for table "sc_bookmarks" -- CREATE SEQUENCE bIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_bookmarks ( bId integer DEFAULT nextval('bIds'::text) PRIMARY KEY, uId integer NOT NULL, bIp varchar(40) DEFAULT NULL, bStatus smallint NOT NULL, bDatetime timestamp with time zone DEFAULT now() NOT NULL, bModified timestamp with time zone DEFAULT now() NOT NULL, bTitle varchar(255) DEFAULT '' NOT NULL, bAddress varchar(1500) DEFAULT '' NOT NULL, bDescription text, bPrivateNote text, bHash varchar(32) DEFAULT '' NOT NULL, bVotes integer NOT NULL, bVoting integer NOT NULL, bShort varchar(16) DEFAULT NULL ); CREATE INDEX sc_bookmarks_usd ON sc_bookmarks (uId, bStatus, bDatetime); CREATE INDEX sc_bookmarks_hui ON sc_bookmarks (bHash, uId, bId); CREATE INDEX sc_bookmarks_du ON sc_bookmarks (bDatetime, uId); -- -- Table structure for table "sc_bookmarks2tags" -- CREATE SEQUENCE b2tIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_bookmarks2tags ( id integer DEFAULT nextval('b2tIds'::text) PRIMARY KEY, bId integer NOT NULL, tag varchar(100) DEFAULT '' NOT NULL ); CREATE UNIQUE INDEX sc_bookmarks2tags_tag_bId on sc_bookmarks2tags (tag, bId); CREATE INDEX sc_bookmarks2tags_bId on sc_bookmarks2tags (bId); -- -- Table structure for table "sc_commondescription" -- CREATE SEQUENCE cdIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_commondescription ( cdId integer DEFAULT nextval('cdIds'::text) PRIMARY KEY, uId integer NOT NULL, tag varchar(100) DEFAULT '' NOT NULL, bHash varchar(32) DEFAULT '' NOT NULL, cdTitle varchar(255) DEFAULT '' NOT NULL, cdDescription text, cdDatetime timestamp with time zone DEFAULT now() NOT NULL ); CREATE UNIQUE INDEX sc_commondescription_tag_timestamp on sc_commondescription (tag, cdDatetime); CREATE UNIQUE INDEX sc_commondescription_bookmark_timestamp on sc_commondescription (bHash, cdDatetime); -- -- Table structure for table "sc_searchhistory" -- CREATE SEQUENCE shIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_searchhistory ( shId integer DEFAULT nextval('shIds'::text) PRIMARY KEY, shTerms varchar(255) NOT NULL DEFAULT '', shRange varchar(32) NOT NULL DEFAULT '', shDatetime timestamp with time zone DEFAULT now() NOT NULL, shNbResults integer NOT NULL, uId integer NOT NULL ); -- -- Table structure for table "sc_tags" -- CREATE SEQUENCE tIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_tags ( tId integer DEFAULT nextval('tIds'::text) PRIMARY KEY, tag varchar(100) NOT NULL DEFAULT '', uId integer NOT NULL, tDescription text ); CREATE UNIQUE INDEX sc_tags_tag_uId on sc_tags (tag, uId); -- -- Table structure for table "sc_tags2tags" -- CREATE SEQUENCE ttIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_tags2tags ( ttId integer DEFAULT nextval('ttIds'::text) PRIMARY KEY, tag1 varchar(100) NOT NULL DEFAULT '', tag2 varchar(100) NOT NULL DEFAULT '', relationType varchar(32) NOT NULL DEFAULT '', uId integer NOT NULL ); CREATE UNIQUE INDEX sc_tags2tags_tag1_tag2_uId on sc_tags2tags (tag1, tag2, relationType, uId); -- -- Table structure for table "sc_tagscache" -- CREATE SEQUENCE tcIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_tagscache ( tcId integer DEFAULT nextval('tcIds'::text) PRIMARY KEY, tag1 varchar(100) NOT NULL DEFAULT '', tag2 varchar(100) NOT NULL DEFAULT '', relationType varchar(32) NOT NULL DEFAULT '', uId integer NOT NULL DEFAULT '0' ); CREATE UNIQUE INDEX sc_tagscache_tag1_tag2_type_uId on sc_tagscache (tag1, tag2, relationType, uId); -- -- Table structure for table "sc_tagsstats" -- CREATE SEQUENCE tstIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_tagsstats ( tstId integer DEFAULT nextval('tstIds'::text) PRIMARY KEY, tag1 varchar(100) NOT NULL DEFAULT '', relationType varchar(32) NOT NULL DEFAULT '', uId integer NOT NULL, nb integer NOT NULL, depth integer NOT NULL, nbupdate integer NOT NULL ); CREATE UNIQUE INDEX sc_tagsstats_tag1_type_uId on sc_tagsstats (tag1, relationType, uId); -- -- Table structure for table "sc_users" -- CREATE SEQUENCE uIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_users ( uId integer DEFAULT nextval('uIds'::text) PRIMARY KEY, username varchar(25) NOT NULL DEFAULT '', password varchar(40) NOT NULL DEFAULT '', uDatetime timestamp with time zone DEFAULT now() NOT NULL, uModified timestamp with time zone DEFAULT now() NOT NULL, name varchar(50) DEFAULT NULL, email varchar(50) NOT NULL DEFAULT '', homepage varchar(255) DEFAULT NULL, uContent text, privateKey varchar(33) DEFAULT NULL ); CREATE UNIQUE INDEX privateKey on sc_users (privateKey); -- -- Table structure for table "sc_users_sslclientcerts" -- CREATE SEQUENCE ids INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_users_sslclientcerts ( id integer DEFAULT nextval('ids'::text) PRIMARY KEY, uId integer NOT NULL, sslSerial varchar(32) DEFAULT '' NOT NULL, sslClientIssuerDn varchar(1024) DEFAULT '' NOT NULL, sslName varchar(64) DEFAULT '' NOT NULL, sslEmail varchar(64) DEFAULT '' NOT NULL ); -- -- Table structure for table "sc_version" -- CREATE TABLE sc_version ( schema_version integer NOT NULL ); -- -- Table structure for table "sc_votes" -- CREATE TABLE sc_votes ( bId integer NOT NULL, uId integer NOT NULL, vote integer NOT NULL ); CREATE UNIQUE INDEX bid_2 on sc_votes (bId, uId); CREATE INDEX bid on sc_votes (bId); CREATE INDEX uid on sc_votes (uId); -- -- Table structure for table "sc_watched" -- CREATE SEQUENCE wIds INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; CREATE TABLE sc_watched ( wId integer DEFAULT nextval('wIds'::text) PRIMARY KEY, uId integer NOT NULL, watched integer NOT NULL ); CREATE INDEX sc_watched_uId on sc_watched (uId); semanticscuttle-0.98.5+dfsg/data/tables.sql000066400000000000000000000144361227405131600206600ustar00rootroot00000000000000-- Semantic Scuttle - Tables creation SQL script -- ! Dont forget to change table names according to $tableprefix defined in config.php ! -- -- Table structure for table `sc_bookmarks` -- CREATE TABLE `sc_bookmarks` ( `bId` int(11) NOT NULL auto_increment, `uId` int(11) NOT NULL default '0', `bIp` varchar(40) default NULL, `bStatus` tinyint(1) NOT NULL default '0', `bDatetime` datetime NOT NULL default '0000-00-00 00:00:00', `bModified` datetime NOT NULL default '0000-00-00 00:00:00', `bTitle` varchar(255) NOT NULL default '', `bAddress` varchar(1500) NOT NULL, `bDescription` text default NULL, `bPrivateNote` text default NULL, `bHash` varchar(32) NOT NULL default '', `bVotes` int(11) NOT NULL, `bVoting` int(11) NOT NULL, `bShort` varchar(16) default NULL, PRIMARY KEY (`bId`), KEY `sc_bookmarks_usd` (`uId`,`bStatus`,`bDatetime`), KEY `sc_bookmarks_hui` (`bHash`,`uId`,`bId`), KEY `sc_bookmarks_du` (`bDatetime`,`uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_tags` -- CREATE TABLE `sc_tags` ( `tId` int(11) NOT NULL auto_increment, `tag` varchar(100) NOT NULL default '', `uId` int(11) NOT NULL default '0', `tDescription` text default NULL, PRIMARY KEY (`tId`), UNIQUE KEY `sc_tags_tag_uId` (`tag`, `uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_bookmarks2tags` -- CREATE TABLE `sc_bookmarks2tags` ( `id` int(11) NOT NULL auto_increment, `bId` int(11) NOT NULL default '0', `tag` varchar(100) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `sc_bookmarks2tags_tag_bId` (`tag`,`bId`), KEY `sc_bookmarks2tags_bId` (`bId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_users` -- CREATE TABLE `sc_users` ( `uId` int(11) NOT NULL auto_increment, `username` varchar(25) NOT NULL default '', `password` varchar(40) NOT NULL default '', `uDatetime` datetime NOT NULL default '0000-00-00 00:00:00', `uModified` datetime NOT NULL default '0000-00-00 00:00:00', `name` varchar(50) default NULL, `email` varchar(50) NOT NULL default '', `homepage` varchar(255) default NULL, `uContent` text, `privateKey` varchar(33) default NULL, PRIMARY KEY (`uId`), UNIQUE KEY `privateKey` (`privateKey`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- CREATE TABLE `sc_users_sslclientcerts` ( `id` INT NOT NULL AUTO_INCREMENT , `uId` INT NOT NULL , `sslSerial` VARCHAR( 32 ) NOT NULL , `sslClientIssuerDn` VARCHAR( 1024 ) NOT NULL , `sslName` VARCHAR( 64 ) NOT NULL , `sslEmail` VARCHAR( 64 ) NOT NULL , PRIMARY KEY ( `id` ) ) CHARACTER SET utf8 COLLATE utf8_general_ci; -- -- Table structure for table `sc_watched` -- CREATE TABLE `sc_watched` ( `wId` int(11) NOT NULL auto_increment, `uId` int(11) NOT NULL default '0', `watched` int(11) NOT NULL default '0', PRIMARY KEY (`wId`), KEY `sc_watched_uId` (`uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_tags2tags` -- CREATE TABLE `sc_tags2tags` ( `ttId` int(11) NOT NULL auto_increment, `tag1` varchar(100) NOT NULL default '', `tag2` varchar(100) NOT NULL default '', `relationType` varchar(32) NOT NULL default '', `uId` int(11) NOT NULL default '0', PRIMARY KEY (`ttId`), UNIQUE KEY `sc_tags2tags_tag1_tag2_uId` (`tag1`,`tag2`,`relationType`,`uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_tagsstats` -- CREATE TABLE `sc_tagsstats` ( `tstId` int(11) NOT NULL auto_increment, `tag1` varchar(100) NOT NULL default '', `relationType` varchar(32) NOT NULL default '', `uId` int(11) NOT NULL default '0', `nb` int(11) NOT NULL default '0', `depth` int(11) NOT NULL default '0', `nbupdate` int(11) NOT NULL default '0', PRIMARY KEY (`tstId`), UNIQUE KEY `sc_tagsstats_tag1_type_uId` (`tag1`,`relationType`,`uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_tagscache` -- CREATE TABLE `sc_tagscache` ( `tcId` int(11) NOT NULL auto_increment, `tag1` varchar(100) NOT NULL default '', `tag2` varchar(100) NOT NULL default '', `relationType` varchar(32) NOT NULL default '', `uId` int(11) NOT NULL default '0', PRIMARY KEY (`tcId`), UNIQUE KEY `sc_tagscache_tag1_tag2_type_uId` (`tag1`,`tag2`,`relationType`,`uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_commondescription` -- CREATE TABLE `sc_commondescription` ( `cdId` int(11) NOT NULL auto_increment, `uId` int(11) NOT NULL default '0', `tag` varchar(100) NOT NULL default '', `bHash` varchar(32) NOT NULL default '', `cdTitle` varchar(255) NOT NULL default '', `cdDescription` text default NULL, `cdDatetime` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`cdId`), UNIQUE KEY `sc_commondescription_tag_datetime` (`tag`,`cdDatetime`), UNIQUE KEY `sc_commondescription_bookmark_datetime` (`bHash`,`cdDatetime`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; -- -------------------------------------------------------- -- -- Table structure for table `sc_searchhistory` -- CREATE TABLE `sc_searchhistory` ( `shId` int(11) NOT NULL auto_increment, `shTerms` varchar(255) NOT NULL default '', `shRange` varchar(32) NOT NULL default '', `shDatetime` datetime NOT NULL default '0000-00-00 00:00:00', `shNbResults` int(6) NOT NULL default '0', `uId` int(11) NOT NULL default '0', PRIMARY KEY (`shId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; CREATE TABLE `sc_votes` ( `bId` INT NOT NULL , `uId` INT NOT NULL , `vote` INT( 2 ) NOT NULL , UNIQUE KEY `bid_2` (`bId`,`uId`), KEY `bid` (`bId`), KEY `uid` (`uId`) ) CHARACTER SET utf8 COLLATE utf8_general_ci ; CREATE TABLE `sc_version` ( `schema_version` int(11) NOT NULL ) DEFAULT CHARSET=utf8; INSERT INTO `sc_version` (`schema_version`) VALUES ('6'); semanticscuttle-0.98.5+dfsg/data/templates/000077500000000000000000000000001227405131600206535ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/templates/default/000077500000000000000000000000001227405131600222775ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/data/templates/default/about.tpl.php000066400000000000000000000040041227405131600247160ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>
  • Store all your favourite links in one place, accessible from anywhere.'); ?>
  • Share your bookmarks with everyone, with friends on your watchlist or just keep them private.') ;?>
  • Tag your bookmarks with as many labels as you want, instead of wrestling with folders.'); ?>
  • '.T_('Register now').' '.T_(' to start using %s!'), $GLOBALS['sitename']); ?>

  • Semantic Scuttle GNU General Public License ()
  • del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won\'t let you change the API address, ask the creator to add this setting. You never know, they might just do it.'), $GLOBALS['sitename']); ?>
  • isAdmin()): ?>
  • SemanticScuttle v0.98.5

includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/admin.tpl.php000066400000000000000000000021701227405131600246760ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); echo '

'.T_('Users management').'

'; echo '
    '; foreach($users as $user) { echo '
  1. '."\n"; echo ''; if($user->getUsername() != $currentUser->getUsername()) { echo '
    '; echo ''.T_('Delete').''; echo '
    '; } echo '
  2. '."\n"; } echo '
'; ?>

includeTemplate('sidebar.tpl'); $this->includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/bookmarkcommondescriptionedit.tpl.php000066400000000000000000000033411227405131600317370ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); list ($url, $hash) = explode('/', $_SERVER['PATH_INFO']); ?>
0) { echo T_('Last modification:').' '.$description['cdDatetime'].', '; $lastUser = $userservice->getUser($description['uId']); echo '' . SemanticScuttle_Model_UserArray::getName($lastUser) . ''; } ?>
includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/bookmarklet.inc.php000066400000000000000000000107031227405131600260730ustar00rootroot00000000000000

semanticscuttle-0.98.5+dfsg/data/templates/default/bookmarks-thumbnail.inc.tpl.php000066400000000000000000000014501227405131600303270ustar00rootroot00000000000000'; echo ''; ?>semanticscuttle-0.98.5+dfsg/data/templates/default/bookmarks-vote-horizontal.inc.tpl.php000066400000000000000000000027431227405131600315160ustar00rootroot00000000000000'; echo sprintf( T_('Voting %d'), $row['bVoting'] ) . ' '; if (isset($row['hasVoted'])) { if ($row['vote'] != 1) { echo '' . T_('Vote for') . ' '; } else { echo '' . T_('Vote for') . ' '; } if ($row['vote'] != -1) { echo '' . T_('Vote against') . ''; } else { echo '' . T_('Vote against') . ''; } } echo ''; ?>semanticscuttle-0.98.5+dfsg/data/templates/default/bookmarks-vote.inc.tpl.php000066400000000000000000000025121227405131600273210ustar00rootroot00000000000000'; if (isset($row['hasVoted']) && $row['vote'] != 1) { echo '+'; } else { echo '+'; } echo '' . $row['bVoting'] . ''; if (isset($row['hasVoted']) && $row['vote'] != -1) { echo '-'; } else { echo '-'; } echo ''; ?>semanticscuttle-0.98.5+dfsg/data/templates/default/bookmarks.tpl.php000066400000000000000000000335521227405131600256060ustar00rootroot00000000000000 * @author Christian Weiske * @author Eric Dane * @license GPL http://www.gnu.org/licenses/gpl.html * @link http://sourceforge.net/projects/semanticscuttle */ /* Service creation: only useful services are created */ $bookmarkservice = SemanticScuttle_Service_Factory::get('Bookmark'); $tagservice = SemanticScuttle_Service_Factory::get('Tag'); $cdservice = SemanticScuttle_Service_Factory::get('CommonDescription'); $pageName = isset($pageName) ? $pageName : ''; $user = isset($user) ? $user : ''; $currenttag = isset($currenttag) ? $currenttag : ''; $this->includeTemplate($GLOBALS['top_include']); include('search.menu.php'); ?>

isAdmin($userid) && $pageName != PAGE_WATCHLIST) : ?>

getLastTagDescription($currenttag)) { $cDescription = $cdservice->getLastTagDescription($currenttag); echo nl2br(filter($cDescription['cdDescription'])); } elseif(isset($hash) && $cdservice->getLastBookmarkDescription($hash)) { $cDescription = $cdservice->getLastBookmarkDescription($hash); echo nl2br(filter($cDescription['cdTitle'])). "
"; echo nl2br(filter($cDescription['cdDescription'])). "
"; } //common tag description edit if ($userservice->isLoggedOn()) { if ($currenttag != '' && ($GLOBALS['enableCommonTagDescriptionEditedByAll'] || $currentUser->isAdmin() ) ) { echo ' '; echo !is_array($cDescription) || strlen($cDescription['cdDescription'])==0?T_('Edit the common description of this tag'):''; echo ' '; } else if (isset($hash)) { echo ' ('; echo T_('Edit the common description of this bookmark').')'; } } ?>

getUserByUsername($user); if($tagservice->getDescription($currenttag, $userObject['uId'])) { ?>

getDescription($currenttag, $userObject['uId']); echo nl2br(filter($pDescription['tDescription'])); //personal tag description edit if($userservice->isLoggedOn()) { if($currenttag!= '') { echo ' '; echo strlen($pDescription['tDescription'])==0?T_('Edit your personal description of this tag'):''; echo ' '; } } ?>

0) { ?>

- / / / '; echo T_('Bookmarks from other users for this tag').''; //echo T_(' for these tags'); } else if ($userservice->isLoggedOn()){ echo ' - '; echo ''; echo T_('Only your bookmarks for this tag').''; //echo T_(' for these tags'); } } ?>

'. T_('First') .''; $bprev = ''. T_('Previous') .''; } else { $prev = $page - 1; $prev = 'page='. $prev; $start = ($page - 1) * $perpage; $bfirst= ''. T_('First') .''; $bprev = ''. T_('Previous') .''; } // Next $next = $page + 1; $totalpages = ceil($total / $perpage); if (count($bookmarks) < $perpage || $perpage * $page == $total) { $bnext = ''. T_('Next') .''; $blast = ''. T_('Last') ."\n"; } else { $bnext = ''. T_('Next') .''; $blast = ''. T_('Last') ."\n"; } // RSS $brss = ''; $size = count($rsschannels); for ($i = 0; $i < $size; $i++) { $brss = '' . '' . htmlspecialchars($rsschannels[$i][0]) .'' . ''; } $pagesBanner = '

'. $bfirst .' / '. $bprev .' / '. $bnext .' / '. $blast .' / '. sprintf(T_('Page %d of %d'), $page, $totalpages) ." ". $brss ."

\n"; if (getPerPageCount($currentUser) > 10) { echo $pagesBanner; // display a page banner if too many bookmarks to manage } ?> 0 ? ' start="'. ++$start .'"' : ''); ?> id="bookmarks"> &$row) { $addresses[$row['bId']] = $row['bAddress']; } $otherCounts = $bookmarkservice->countOthers($addresses); if ($userservice->isLoggedOn()) { $existence = $bookmarkservice->bookmarksExist( $addresses, $currentUser->getId() ); } if ($userservice->isLoggedOn()) { $watchedNames = $userservice->getWatchNames( $currentUser->getId(), true ); } else { $watchedNames = null; } foreach ($bookmarks as $key => &$row) { switch ($row['bStatus']) { case 0: $access = ''; break; case 1: $access = ' shared'; break; case 2: $access = ' private'; break; } $cats = ''; $tagsForCopy = ''; $tags = $row['tags']; foreach ($tags as $tkey => &$tag) { $tagcaturl = sprintf( $cat_url, filter($row['username'], 'url'), filter($tag, 'url') ); $cats .= sprintf( ', ', $tagcaturl, filter($tag) ); $tagsForCopy .= $tag . ','; } $cats = substr($cats, 0, -2); if ($cats != '') { $cats = T_('Tags:') . ' ' . $cats; } // Edit and delete links $edit = ''; if ($bookmarkservice->editAllowed($row)) { $edit = ' - ' . T_('Edit') . '' . ' ' . T_('Delete') .''; } // Last update $update = ' ('. date($GLOBALS['shortdate'], strtotime($row['bModified'])). ') '; // User attribution $copy = ' ' . T_('by') . ' '; if ($userservice->isLoggedOn() && $currentUser->getUsername() == $row['username'] ) { $copy .= T_('you'); } else { $copy .= '' . SemanticScuttle_Model_UserArray::getName($row) . ''; } // others if (!isset($hash)) { $others = $otherCounts[$row['bAddress']]; $ostart = ''; $oend = ''; switch ($others) { case 0: break; case 1: $copy .= sprintf(T_(' and %s1 other%s'), $ostart, $oend); break; default: $copy .= sprintf(T_(' and %2$s%1$s others%3$s'), $others, $ostart, $oend); } } // Copy link if ($userservice->isLoggedOn() && ($currentUser->getId() != $row['uId']) && !$existence[$row['bAddress']] ) { $copy .= ' - ' . T_('Copy') . ''; } // Nofollow option $rel = ''; if ($GLOBALS['nofollow']) { $rel = ' rel="nofollow"'; } $address = $row['bAddress']; $oaddress = $address; // Redirection option if ($GLOBALS['useredir']) { $address = $GLOBALS['url_redir'] . $address; } // Admin specific design if ($userservice->isAdmin($row['username']) && $GLOBALS['enableAdminColors'] ) { $adminBgClass = ' class="adminBackground"'; $adminStar = ' '; } else { $adminBgClass = ''; $adminStar = ''; } // Private Note (just visible by the owner and his/her contacts) if ($watchedNames !== null && ($currentUser->getId() == $row['uId'] || in_array($row['username'], $watchedNames) ) ) { $privateNoteField = $row['bPrivateNote']; } else { $privateNoteField = ''; } if ($GLOBALS['enableVoting'] && $GLOBALS['hideBelowVoting'] !== null && $row['bVoting'] < $GLOBALS['hideBelowVoting'] ) { $access .= ' below-threshold'; } // Output echo '
  • '."\n"; include 'bookmarks-thumbnail.inc.tpl.php'; include 'bookmarks-vote.inc.tpl.php'; echo ' ' . "\n"; echo ' \n"; if ($row['bDescription'] == '') { $bkDescription = $GLOBALS['blankDescription']; } else { // Improve description display (anchors, links, ...) $bkDescription = preg_replace('|\[\/.*?\]|', '', filter($row['bDescription'])); // remove final anchor $bkDescription = preg_replace('|\[(.*?)\]|', ' $1 » ', $bkDescription); // highlight starting anchor $bkDescription = preg_replace('@((http|https|ftp)://.*?)( |\r|$)@', '$1$3', $bkDescription); // make url clickable } echo '
    '. nl2br($bkDescription) ."
    \n"; echo '
    ' . htmlspecialchars(shortenString($oaddress)) . "
    \n"; echo '
    ' . $cats . "\n" . $copy . "\n" . $edit . "\n" . $update . "\n" . "
    \n"; echo $privateNoteField != '' ? '
    '.$privateNoteField."
    \n" : ''; echo ' '; include 'bookmarks-vote-horizontal.inc.tpl.php'; echo " \n"; echo "
  • \n"; } ?> 7) { echo '

    '.T_('Top of the page').'

    '; } echo $pagesBanner; // display previous and next links pages + RSS link } else { echo '

    '.T_('No bookmarks available').'

    '; } $this->includeTemplate('sidebar.tpl'); $this->includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/bottom.inc.php000066400000000000000000000021111227405131600250570ustar00rootroot00000000000000
    '.T_('About').''; echo ' - '; echo T_("Propulsed by "); echo " SemanticScuttle"; if($GLOBALS['enableWebsiteThumbnails']) { // Licence to the thumbnails provider (OBLIGATORY IF YOU USE ARTVIPER SERVICE) echo ' (Thumbnails by webdesign)'; } ?>
    semanticscuttle-0.98.5+dfsg/data/templates/default/dynamictags.inc.php000066400000000000000000000103431227405131600260640ustar00rootroot00000000000000getCurrentUserId(); //tags from current user $userPopularTags =& $b2tservice->getPopularTags($logged_on_userid, 25, $logged_on_userid); $userPopularTagsCloud =& $b2tservice->tagCloud($userPopularTags, 5, 90, 175); $userPopularTagsCount = count($userPopularTags); //tags from all users $allPopularTags =& $b2tservice->getPopularTags(null, 5, $logged_on_userid); $allPopularTagsCloud =& $b2tservice->tagCloud($allPopularTags, 5, 90, 175); $allPopularTagsCount = count($allPopularTags); // function printing the cloud function writeTagsProposition($tagsCloud, $title) { static $id = 0; ++$id; echo <<' + '

    $title

    ' + '

    ' + ''); JS; $taglist = ''; foreach (array_keys($tagsCloud) as $key) { $row = $tagsCloud[$key]; $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']); $taglist .= '' . filter($row['tag']) . ' '; } echo '$(\'#edit-tagcloud-' . $id . ' p\').append(' . json_encode($taglist) . ");\n"; } if ($allPopularTagsCount > 0 || $userPopularTagsCount > 0 ) { ?>
    semanticscuttle-0.98.5+dfsg/data/templates/default/editbookmark.tpl.php000066400000000000000000000172761227405131600262760ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); $accessPublic = ''; $accessShared = ''; $accessPrivate = ''; switch ($row['bStatus']) { case 0 : $accessPublic = ' selected="selected"'; break; case 1 : $accessShared = ' selected="selected"'; break; case 2 : $accessPrivate = ' selected="selected"'; break; } function jsEscTitle($title) { return addcslashes($title, "'"); } function jsEscTitleDouble($title) { return addcslashes(addcslashes($title, "'"), "'\\"); } function fixOperaButtonName($name) { //yes, opera has problems with double quotes in button names return str_replace('"', "''", $name); } if (is_array($row['tags'])) { $row['tags'] = implode(', ', $row['tags']); } $ajaxUrl = ROOT . 'ajax/' . ( ($GLOBALS['adminsAreAdvisedTagsFromOtherAdmins'] && $currentUser->isAdmin()) ? 'getadmintags' : 'getcontacttags' ) . '.php'; ?>
    style="display:none">
    0): ?>

    $anchorValue): ?>
    " to include one tag in another. e.g.: europe>france>paris'))?>
    '; echo T_('edit common description').')'; } if ($popup) { ?>
    includeTemplate('dynamictags.inc'); // Bookmarklets and import links if (empty($_REQUEST['popup']) && (!isset($showdelete) || !$showdelete)) { $this->includeTemplate('bookmarklet.inc.php'); ?>

    • ()
    includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/editprofile-sslclientcerts.tpl.php000066400000000000000000000037321227405131600311600ustar00rootroot00000000000000

    isCurrent()) { echo 'class="ssl-current"'; } ?>>
    Options
    sslSerial); ?> sslName); ?> sslEmail); ?> sslClientIssuerDn); ?>

    isRegistered($sslClientCerts)) { ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/editprofile.tpl.php000066400000000000000000000054631227405131600261240ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>

    />    

    / /
    includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/error.404.tpl.php000066400000000000000000000004311227405131600252430ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); if (!$error) { echo '

    '. T_('Not Found') .'

    '; echo '

    '. T_('The requested URL was not found on this server') .'

    '; } $this->includeTemplate($GLOBALS['bottom_include']); ?>semanticscuttle-0.98.5+dfsg/data/templates/default/error.500.tpl.php000066400000000000000000000004421227405131600252420ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); if (!$error) { echo '

    '. T_('General server error') .'

    '; echo '

    '. T_('The requested URL could not be processed') .'

    '; } $this->includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/importDelicious.tpl.php000066400000000000000000000030571227405131600267660ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>

    1. export page at del.icio.us'); ?>.
    2. XML file to your computer'); ?>.
    3. Browse... to find this file on your computer. The maximum size the file can be is 1MB'); ?>.
    4. .
    5. Import to start importing the bookmarks; it may take a minute'); ?>.
    includeTemplate($GLOBALS['bottom_include']); ?>semanticscuttle-0.98.5+dfsg/data/templates/default/importNetscape.tpl.php000066400000000000000000000037661227405131600266170ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>

    1. :

      • File > Import and Export... > Export Favorites'); ?>
      • Bookmarks > Manage Bookmarks... > File > Export...'); ?>
      • Bookmarks > Manage Bookmarks... > Tools > Export...'); ?>
    2. Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MB'); ?>.
    3. .
    4. Import to start importing the bookmarks; it may take a minute'); ?>.
    includeTemplate($GLOBALS['bottom_include']); ?>semanticscuttle-0.98.5+dfsg/data/templates/default/importStructure.tpl.php000066400000000000000000000023031227405131600270370ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>

      • firstTagOfLevel1
      •     firstTagOfLevel2 (the line starts with two spaces)
      •     secondTagOfLevel2
      •     thirdTagOfLevel2
      • secondTagOfLevel1
      •     fourthTagOfLevel2 (included into secondTagOfLevel1)
    includeTemplate($GLOBALS['bottom_include']); ?>semanticscuttle-0.98.5+dfsg/data/templates/default/login.tpl.php000066400000000000000000000025331227405131600247210ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?> isSessionStable()) { echo '

    '.T_('Please activate cookies').'

    '; } ?>

    »

    includeTemplate($GLOBALS['bottom_include']); ?>semanticscuttle-0.98.5+dfsg/data/templates/default/password.tpl.php000066400000000000000000000017421227405131600254540ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>

    includeTemplate($GLOBALS['bottom_include']); ?>semanticscuttle-0.98.5+dfsg/data/templates/default/profile.tpl.php000066400000000000000000000037511227405131600252540ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>
    isLoggedOn() && $currentUser->isAdmin()) { ?>
    getEmail()) ?>
    getName() != "") { ?>
    getName()); ?>
    getHomepage() != "") { ?>
    getHomepage()); ?>
    getDatetime())); ?>
    getContent() != "") { ?>
    getContent(); ?>
    getWatchNames($userid); if ($watching) { ?>
    '. $watchuser .', '; } echo substr($list, 0, -2); ?>
    getWatchNames($userid, true); if ($watchnames) { ?>
    '. $watchuser .', '; } echo substr($list, 0, -2); ?>
    >>
    includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/register.tpl.php000066400000000000000000000036631227405131600254420ustar00rootroot00000000000000includeTemplate($GLOBALS['top_include']); ?>

    .

    0) {?>
    includeTemplate($GLOBALS['bottom_include']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/rss.tpl.php000066400000000000000000000024171227405131600244210ustar00rootroot00000000000000\n"; ?> <?php echo $feedtitle; ?> 60 <?php echo htmlspecialchars($bookmark['title']); ?> semanticscuttle-0.98.5+dfsg/data/templates/default/search.menu.php000066400000000000000000000041621227405131600252230ustar00rootroot00000000000000 semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.common.php000066400000000000000000000014141227405131600270010ustar00rootroot00000000000000getRelatedTagsByHash($hash); $commonTags =& $b2tservice->tagCloud($commonTags, 5, 90, 225, 'alphabet_asc'); if ($commonTags && count($commonTags) > 0) { ?>

    '. filter($row['tag']) .' '; } echo $contents ."\n"; ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.linked.php000066400000000000000000000035601227405131600267630ustar00rootroot00000000000000getCurrentUserId(); $editingMode = $logged_on_userid !== false; ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.menu.php000066400000000000000000000045511227405131600264620ustar00rootroot00000000000000getCurrentUserId(); if ($logged_on_userid === false) { $logged_on_userid = NULL; } // editing mode if(($logged_on_userid != null) && ($userid === $logged_on_userid)) { $editingMode = true; } else { $editingMode = false; } if(!isset($user) || $user == '') { $cat_url = createURL('tags', '%2$s'); } $menuTags = $tag2tagservice->getMenuTags($userid); if (sizeof($menuTags) > 0 || ($userid != 0 && $userid === $logged_on_userid)) { ?>

    '.T_('Menu Tags').' '; //} ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.menu2.php000066400000000000000000000031051227405131600265360ustar00rootroot00000000000000getCurrentUserId(); if ($logged_on_userid === false) { $logged_on_userid = NULL; } $cat_url = createURL('tags', '%s'); $menu2Tags = $GLOBALS['menu2Tags']; if (count($menu2Tags) > 0) { ?>

    >
      ' . sprintf( '%s', sprintf($cat_url, $menu2Tag), $menu2Tag ) . '' . "\n"; } ?>
    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.popular.php000066400000000000000000000021521227405131600271730ustar00rootroot00000000000000getCurrentUserId(); if ($logged_on_userid === false) { $logged_on_userid = NULL; } $popularTags =& $b2tservice->getPopularTags($userid, $popCount, $logged_on_userid); $popularTags =& $b2tservice->tagCloud($popularTags, 5, 90, 225, 'alphabet_asc'); if ($popularTags && count($popularTags) > 0) { ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.recent.php000066400000000000000000000024021227405131600267670ustar00rootroot00000000000000getCurrentUserId(); if ($logged_on_userid === false) { $logged_on_userid = NULL; } $recentTags = $b2tservice->getPopularTags($userid, $popCount, $logged_on_userid, $GLOBALS['defaultRecentDays']); $recentTags =& $b2tservice->tagCloud($recentTags, 5, 90, 225, 'alphabet_asc'); if ($recentTags && count($recentTags) > 0) { ?>

    '; if(!isset($user) || $user == '') { $user = ''; $cat_url = createURL('tags', '%2$s'); } foreach ($recentTags as $row) { $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']); $contents .= ' '; } echo $contents ."

    \n"; ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.related.php000066400000000000000000000021671227405131600271370ustar00rootroot00000000000000getCurrentUserId(); if ($logged_on_userid === false) { $logged_on_userid = NULL; } if(!isset($userid)) { $userid = NULL; } if(isset($user) && strlen($user)==0) { $cat_url = createURL('tags', '%2$s'); } if ($currenttag) { $relatedTags = $b2tservice->getRelatedTags($currenttag, $userid, $logged_on_userid); if (sizeof($relatedTags) > 0) { ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.search.php000066400000000000000000000025461227405131600267650ustar00rootroot00000000000000 * @author Christian Weiske * @author Eric Dane * @license GPL http://www.gnu.org/licenses/gpl.html * @link http://sourceforge.net/projects/semanticscuttle */ /* Service creation: only useful services are created */ $searchhistoryservice = SemanticScuttle_Service_Factory::get('SearchHistory'); $lastSearches = $searchhistoryservice->getAllSearches( 'all', NULL, 3, NULL, true, false ); if ($lastSearches && count($lastSearches) > 0) { ?>

    ' . "\n"; } //echo ''; ?>
    '; echo ''; echo htmlspecialchars($row['shTerms']); echo ''; echo ' (' . $row['shNbResults'] . ')'; echo '
    ...
    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.tagactions.php000066400000000000000000000026451227405131600276540ustar00rootroot00000000000000isLoggedOn()) { if ($currentUser->getUsername() == $user) { $tags = explode('+', $currenttag); $renametext = T_ngettext('Rename Tag', 'Rename Tags', count($tags)); $renamelink = createURL('tagrename', $currenttag); $deletelink = createURL('tagdelete', $currenttag); $tagdesclink = createURL('tagedit', $currenttag); $commondesclink = createURL('tagcommondescriptionedit', $currenttag); $addtag2taglinklink = createURL('tag2tagadd', $currenttag); ?>

    • isAdmin() )): ?>
    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.users.php000066400000000000000000000016471227405131600266620ustar00rootroot00000000000000getCurrentUserId(); if ($logged_on_userid === false) { $logged_on_userid = NULL; } $lastUsers = $userservice->getUsers(3); if ($lastUsers && count($lastUsers) > 0) { ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.watchlist.php000066400000000000000000000042511227405131600275150ustar00rootroot00000000000000getWatchNames($userid); $watchedBy = $userservice->getWatchNames($userid, true); $closeContacts = array(); // people in my contacts list and who I am also in the contacts list foreach($watching as $watchuser) { if(in_array($watchuser, $watchedBy)) { $closeContacts[] = $watchuser; } } ?> 0):?>

      isLoggedOn() && $currentUser->getUsername() == $user): ?>
    • isLoggedOn() && $currentUser->getUsername() == $user): ?> - x

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.block.watchstatus.php000066400000000000000000000012131227405131600300600ustar00rootroot00000000000000isLoggedOn()) { if ($currentUser->getUsername() != $user) { $result = $userservice->getWatchStatus($userid, $userservice->getCurrentUserId()); if ($result) { $linkText = T_('Remove from Watchlist'); } else { $linkText = T_('Add to Watchlist'); } $linkAddress = createURL('watch', $user); ?>

    semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.linkedtags.inc.php000066400000000000000000000052431227405131600273210ustar00rootroot00000000000000 '', 'stoplist' => $stopList); } $tag2tagservice =SemanticScuttle_Service_Factory::get('Tag2Tag'); $tagstatservice =SemanticScuttle_Service_Factory::get('TagStat'); // link '>' if($level>1) { if($editingMode) { $link = '> '; } else { $link = '> '; } } else { $link = ''; } $output = ''; $output.= ''; $output.= ''; $output.= ''; $output.= $level == 1?'':''; $output.= str_repeat(' ', $level*2) .$link.''; $output.= $level == 1?'':''; //$output.= ' - '. $tagstatservice->getMaxDepth($tag, $linkType, $uId); $synonymTags = $tag2tagservice->getAllLinkedTags($tag, '=', $uId); $synonymTags = is_array($synonymTags)?$synonymTags:array($synonymTags); sort($synonymTags); $synonymList = ''; foreach($synonymTags as $synonymTag) { //$output.= ", ".$synonymTag; $synonymList.= $synonymTag.' '; } if(count($synonymTags)>0) { $output.= ', '.$synonymTags[0]; } if(count($synonymTags)>1) { $output.= ', etc'; } /*if($editingMode) { $output.= ' ('; $output.= '+'; if(1) { $output.= ' - '; $output.= '-'; } $output.= ')'; }*/ $output.= ''; $output.= ''; $tags = array($tag); $tags = array_merge($tags, $synonymTags); foreach($tags as $tag) { if(!in_array($tag, $stopList)) { $linkedTags = $tag2tagservice->getLinkedTags($tag, '>', $uId); $precedentTag = $tag; $stopList[] = $tag; foreach($linkedTags as $linkedTag) { $displayLinkedTags = displayLinkedTags($linkedTag, $linkType, $uId, $cat_url, $user, $editingMode, $precedentTag, $level + 1, $stopList); $output.= $displayLinkedTags['output']; } if(isset($displayLinkedTags) && is_array($displayLinkedTags['stopList'])) { $stopList = array_merge($stopList, $displayLinkedTags['stopList']); $stopList = array_unique($stopList); } } } return array('output' => $output, 'stopList' => $stopList); } ?> semanticscuttle-0.98.5+dfsg/data/templates/default/sidebar.tpl.php000066400000000000000000000007771227405131600252320ustar00rootroot00000000000000isAdmin($userid) ): ?> value = parseInt( elem.css( "zIndex" ), 10 ); if ( !isNaN( value ) && value !== 0 ) { return value; } } elem = elem.parent(); } } return 0; }, disableSelection: function() { return this.bind( ( $.support.selectstart ? "selectstart" : "mousedown" ) + ".ui-disableSelection", function( event ) { event.preventDefault(); }); }, enableSelection: function() { return this.unbind( ".ui-disableSelection" ); } }); $.each( [ "Width", "Height" ], function( i, name ) { var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ], type = name.toLowerCase(), orig = { innerWidth: $.fn.innerWidth, innerHeight: $.fn.innerHeight, outerWidth: $.fn.outerWidth, outerHeight: $.fn.outerHeight }; function reduce( elem, size, border, margin ) { $.each( side, function() { size -= parseFloat( $.curCSS( elem, "padding" + this, true) ) || 0; if ( border ) { size -= parseFloat( $.curCSS( elem, "border" + this + "Width", true) ) || 0; } if ( margin ) { size -= parseFloat( $.curCSS( elem, "margin" + this, true) ) || 0; } }); return size; } $.fn[ "inner" + name ] = function( size ) { if ( size === undefined ) { return orig[ "inner" + name ].call( this ); } return this.each(function() { $( this ).css( type, reduce( this, size ) + "px" ); }); }; $.fn[ "outer" + name] = function( size, margin ) { if ( typeof size !== "number" ) { return orig[ "outer" + name ].call( this, size ); } return this.each(function() { $( this).css( type, reduce( this, size, true, margin ) + "px" ); }); }; }); // selectors function visible( element ) { return !$( element ).parents().andSelf().filter(function() { return $.curCSS( this, "visibility" ) === "hidden" || $.expr.filters.hidden( this ); }).length; } $.extend( $.expr[ ":" ], { data: function( elem, i, match ) { return !!$.data( elem, match[ 3 ] ); }, focusable: function( element ) { var nodeName = element.nodeName.toLowerCase(), tabIndex = $.attr( element, "tabindex" ); if ( "area" === nodeName ) { var map = element.parentNode, mapName = map.name, img; if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) { return false; } img = $( "img[usemap=#" + mapName + "]" )[0]; return !!img && visible( img ); } return ( /input|select|textarea|button|object/.test( nodeName ) ? !element.disabled : "a" == nodeName ? element.href || !isNaN( tabIndex ) : !isNaN( tabIndex )) // the element and all of its ancestors must be visible && visible( element ); }, tabbable: function( element ) { var tabIndex = $.attr( element, "tabindex" ); return ( isNaN( tabIndex ) || tabIndex >= 0 ) && $( element ).is( ":focusable" ); } }); // support $(function() { var body = document.body, div = body.appendChild( div = document.createElement( "div" ) ); $.extend( div.style, { minHeight: "100px", height: "auto", padding: 0, borderWidth: 0 }); $.support.minHeight = div.offsetHeight === 100; $.support.selectstart = "onselectstart" in div; // set display to none to avoid a layout bug in IE // http://dev.jquery.com/ticket/4014 body.removeChild( div ).style.display = "none"; }); // deprecated $.extend( $.ui, { // $.ui.plugin is deprecated. Use the proxy pattern instead. plugin: { add: function( module, option, set ) { var proto = $.ui[ module ].prototype; for ( var i in set ) { proto.plugins[ i ] = proto.plugins[ i ] || []; proto.plugins[ i ].push( [ option, set[ i ] ] ); } }, call: function( instance, name, args ) { var set = instance.plugins[ name ]; if ( !set || !instance.element[ 0 ].parentNode ) { return; } for ( var i = 0; i < set.length; i++ ) { if ( instance.options[ set[ i ][ 0 ] ] ) { set[ i ][ 1 ].apply( instance.element, args ); } } } }, // will be deprecated when we switch to jQuery 1.4 - use jQuery.contains() contains: function( a, b ) { return document.compareDocumentPosition ? a.compareDocumentPosition( b ) & 16 : a !== b && a.contains( b ); }, // only used by resizable hasScroll: function( el, a ) { //If overflow is hidden, the element might have extra content, but the user wants to hide it if ( $( el ).css( "overflow" ) === "hidden") { return false; } var scroll = ( a && a === "left" ) ? "scrollLeft" : "scrollTop", has = false; if ( el[ scroll ] > 0 ) { return true; } // TODO: determine which cases actually cause this to happen // if the element doesn't have the scroll set, see if it's possible to // set the scroll el[ scroll ] = 1; has = ( el[ scroll ] > 0 ); el[ scroll ] = 0; return has; }, // these are odd functions, fix the API or move into individual plugins isOverAxis: function( x, reference, size ) { //Determines when x coordinate is over "b" element axis return ( x > reference ) && ( x < ( reference + size ) ); }, isOver: function( y, x, top, left, height, width ) { //Determines when x, y coordinates is over "b" element return $.ui.isOverAxis( y, top, height ) && $.ui.isOverAxis( x, left, width ); } }); })( jQuery ); semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/jquery.ui.core.min.js000066400000000000000000000103461227405131600256700ustar00rootroot00000000000000/*! * jQuery UI 1.8.11 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI */ (function(c,j){function k(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.11",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106, NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this, "position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position"); if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,l,m){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(l)g-=parseFloat(c.curCSS(f, "border"+this+"Width",true))||0;if(m)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h, d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){var b=a.nodeName.toLowerCase(),d=c.attr(a,"tabindex");if("area"===b){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&k(a)}return(/input|select|textarea|button|object/.test(b)?!a.disabled:"a"==b?a.href||!isNaN(d):!isNaN(d))&&k(a)},tabbable:function(a){var b=c.attr(a,"tabindex");return(isNaN(b)||b>=0)&&c(a).is(":focusable")}}); c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a 0 ? position.left - over : Math.max( position.left - data.collisionPosition.left, position.left ); }, top: function( position, data ) { var win = $( window ), over = data.collisionPosition.top + data.collisionHeight - win.height() - win.scrollTop(); position.top = over > 0 ? position.top - over : Math.max( position.top - data.collisionPosition.top, position.top ); } }, flip: { left: function( position, data ) { if ( data.at[0] === center ) { return; } var win = $( window ), over = data.collisionPosition.left + data.collisionWidth - win.width() - win.scrollLeft(), myOffset = data.my[ 0 ] === "left" ? -data.elemWidth : data.my[ 0 ] === "right" ? data.elemWidth : 0, atOffset = data.at[ 0 ] === "left" ? data.targetWidth : -data.targetWidth, offset = -2 * data.offset[ 0 ]; position.left += data.collisionPosition.left < 0 ? myOffset + atOffset + offset : over > 0 ? myOffset + atOffset + offset : 0; }, top: function( position, data ) { if ( data.at[1] === center ) { return; } var win = $( window ), over = data.collisionPosition.top + data.collisionHeight - win.height() - win.scrollTop(), myOffset = data.my[ 1 ] === "top" ? -data.elemHeight : data.my[ 1 ] === "bottom" ? data.elemHeight : 0, atOffset = data.at[ 1 ] === "top" ? data.targetHeight : -data.targetHeight, offset = -2 * data.offset[ 1 ]; position.top += data.collisionPosition.top < 0 ? myOffset + atOffset + offset : over > 0 ? myOffset + atOffset + offset : 0; } } }; // offset setter from jQuery 1.4 if ( !$.offset.setOffset ) { $.offset.setOffset = function( elem, options ) { // set position first, in-case top/left are set even on static elem if ( /static/.test( $.curCSS( elem, "position" ) ) ) { elem.style.position = "relative"; } var curElem = $( elem ), curOffset = curElem.offset(), curTop = parseInt( $.curCSS( elem, "top", true ), 10 ) || 0, curLeft = parseInt( $.curCSS( elem, "left", true ), 10) || 0, props = { top: (options.top - curOffset.top) + curTop, left: (options.left - curOffset.left) + curLeft }; if ( 'using' in options ) { options.using.call( elem, props ); } else { curElem.css( props ); } }; $.fn.offset = function( options ) { var elem = this[ 0 ]; if ( !elem || !elem.ownerDocument ) { return null; } if ( options ) { return this.each(function() { $.offset.setOffset( this, options ); }); } return _offset.call( this ); }; } }( jQuery )); semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/jquery.ui.position.min.js000066400000000000000000000070411227405131600266020ustar00rootroot00000000000000/* * jQuery UI Position 1.8.11 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Position */ (function(c){c.ui=c.ui||{};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){if(!b||!b.of)return t.apply(this,arguments);b=c.extend({},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){h=a.width();k=a.height();j={top:0,left:0}}else if(d.setTimeout){h=a.width();k=a.height();j={top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){b.at="left top";h=k=0;j={top:b.of.pageY, left:b.of.pageX}}else{h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/2;if(b.at[1]==="bottom")j.top+= k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+(parseInt(c.curCSS(this,"marginRight",true))||0),w=m+q+(parseInt(c.curCSS(this,"marginBottom",true))||0),i=c.extend({},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]==="center")i.top-= m/2;i.left=Math.round(i.left);i.top=Math.round(i.top);r={left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{using:b.using}))})};c.ui.position={fit:{left:function(b,a){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();b.left= d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{left:function(b,a){if(a.at[0]!=="center"){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];b.left+= a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){if(a.at[1]!=="center"){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(b,a){if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=c(b), g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery); semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/jquery.ui.widget.js000066400000000000000000000153211227405131600254370ustar00rootroot00000000000000/*! * jQuery UI Widget 1.8.11 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Widget */ (function( $, undefined ) { // jQuery 1.4+ if ( $.cleanData ) { var _cleanData = $.cleanData; $.cleanData = function( elems ) { for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { $( elem ).triggerHandler( "remove" ); } _cleanData( elems ); }; } else { var _remove = $.fn.remove; $.fn.remove = function( selector, keepData ) { return this.each(function() { if ( !keepData ) { if ( !selector || $.filter( selector, [ this ] ).length ) { $( "*", this ).add( [ this ] ).each(function() { $( this ).triggerHandler( "remove" ); }); } } return _remove.call( $(this), selector, keepData ); }); }; } $.widget = function( name, base, prototype ) { var namespace = name.split( "." )[ 0 ], fullName; name = name.split( "." )[ 1 ]; fullName = namespace + "-" + name; if ( !prototype ) { prototype = base; base = $.Widget; } // create selector for plugin $.expr[ ":" ][ fullName ] = function( elem ) { return !!$.data( elem, name ); }; $[ namespace ] = $[ namespace ] || {}; $[ namespace ][ name ] = function( options, element ) { // allow instantiation without initializing for simple inheritance if ( arguments.length ) { this._createWidget( options, element ); } }; var basePrototype = new base(); // we need to make the options hash a property directly on the new instance // otherwise we'll modify the options hash on the prototype that we're // inheriting from // $.each( basePrototype, function( key, val ) { // if ( $.isPlainObject(val) ) { // basePrototype[ key ] = $.extend( {}, val ); // } // }); basePrototype.options = $.extend( true, {}, basePrototype.options ); $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { namespace: namespace, widgetName: name, widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, widgetBaseClass: fullName }, prototype ); $.widget.bridge( name, $[ namespace ][ name ] ); }; $.widget.bridge = function( name, object ) { $.fn[ name ] = function( options ) { var isMethodCall = typeof options === "string", args = Array.prototype.slice.call( arguments, 1 ), returnValue = this; // allow multiple hashes to be passed on init options = !isMethodCall && args.length ? $.extend.apply( null, [ true, options ].concat(args) ) : options; // prevent calls to internal methods if ( isMethodCall && options.charAt( 0 ) === "_" ) { return returnValue; } if ( isMethodCall ) { this.each(function() { var instance = $.data( this, name ), methodValue = instance && $.isFunction( instance[options] ) ? instance[ options ].apply( instance, args ) : instance; // TODO: add this back in 1.9 and use $.error() (see #5972) // if ( !instance ) { // throw "cannot call methods on " + name + " prior to initialization; " + // "attempted to call method '" + options + "'"; // } // if ( !$.isFunction( instance[options] ) ) { // throw "no such method '" + options + "' for " + name + " widget instance"; // } // var methodValue = instance[ options ].apply( instance, args ); if ( methodValue !== instance && methodValue !== undefined ) { returnValue = methodValue; return false; } }); } else { this.each(function() { var instance = $.data( this, name ); if ( instance ) { instance.option( options || {} )._init(); } else { $.data( this, name, new object( options, this ) ); } }); } return returnValue; }; }; $.Widget = function( options, element ) { // allow instantiation without initializing for simple inheritance if ( arguments.length ) { this._createWidget( options, element ); } }; $.Widget.prototype = { widgetName: "widget", widgetEventPrefix: "", options: { disabled: false }, _createWidget: function( options, element ) { // $.widget.bridge stores the plugin instance, but we do it anyway // so that it's stored even before the _create function runs $.data( element, this.widgetName, this ); this.element = $( element ); this.options = $.extend( true, {}, this.options, this._getCreateOptions(), options ); var self = this; this.element.bind( "remove." + this.widgetName, function() { self.destroy(); }); this._create(); this._trigger( "create" ); this._init(); }, _getCreateOptions: function() { return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; }, _create: function() {}, _init: function() {}, destroy: function() { this.element .unbind( "." + this.widgetName ) .removeData( this.widgetName ); this.widget() .unbind( "." + this.widgetName ) .removeAttr( "aria-disabled" ) .removeClass( this.widgetBaseClass + "-disabled " + "ui-state-disabled" ); }, widget: function() { return this.element; }, option: function( key, value ) { var options = key; if ( arguments.length === 0 ) { // don't return a reference to the internal hash return $.extend( {}, this.options ); } if (typeof key === "string" ) { if ( value === undefined ) { return this.options[ key ]; } options = {}; options[ key ] = value; } this._setOptions( options ); return this; }, _setOptions: function( options ) { var self = this; $.each( options, function( key, value ) { self._setOption( key, value ); }); return this; }, _setOption: function( key, value ) { this.options[ key ] = value; if ( key === "disabled" ) { this.widget() [ value ? "addClass" : "removeClass"]( this.widgetBaseClass + "-disabled" + " " + "ui-state-disabled" ) .attr( "aria-disabled", value ); } return this; }, enable: function() { return this._setOption( "disabled", false ); }, disable: function() { return this._setOption( "disabled", true ); }, _trigger: function( type, event, data ) { var callback = this.options[ type ]; event = $.Event( event ); event.type = ( type === this.widgetEventPrefix ? type : this.widgetEventPrefix + type ).toLowerCase(); data = data || {}; // copy original event properties over to the new event // this would happen if we could call $.event.fix instead of $.Event // but we don't have a way to force an event to be fixed multiple times if ( event.originalEvent ) { for ( var i = $.event.props.length, prop; i; ) { prop = $.event.props[ --i ]; event[ prop ] = event.originalEvent[ prop ]; } } this.element.trigger( event, data ); return !( $.isFunction(callback) && callback.call( this.element[0], event, data ) === false || event.isDefaultPrevented() ); } }; })( jQuery ); semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/jquery.ui.widget.min.js000066400000000000000000000063121227405131600262210ustar00rootroot00000000000000/*! * jQuery UI Widget 1.8.11 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Widget */ (function(b,j){if(b.cleanData){var k=b.cleanData;b.cleanData=function(a){for(var c=0,d;(d=a[c])!=null;c++)b(d).triggerHandler("remove");k(a)}}else{var l=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add([this]).each(function(){b(this).triggerHandler("remove")});return l.call(b(this),a,c)})}}b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h, a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend(true,{},c.options);b[e][a].prototype=b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.charAt(0)==="_")return h; e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==j){h=i;return false}}):this.each(function(){var g=b.data(this,a);g?g.option(d||{})._init():b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){b.data(c,this.widgetName,this);this.element=b(c);this.options=b.extend(true,{},this.options, this._getCreateOptions(),a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")}, widget:function(){return this.element},option:function(a,c){var d=a;if(arguments.length===0)return b.extend({},this.options);if(typeof a==="string"){if(c===j)return this.options[a];d={};d[a]=c}this._setOptions(d);return this},_setOptions:function(a){var c=this;b.each(a,function(d,e){c._setOption(d,e)});return this},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this}, enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a=b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery); semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/000077500000000000000000000000001227405131600231475ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/000077500000000000000000000000001227405131600240615ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/images/000077500000000000000000000000001227405131600253265ustar00rootroot00000000000000ui-bg_flat_0_aaaaaa_40x100.png000066400000000000000000000002641227405131600323700ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDR(ddrz{IDATh1 17Y$t3;_TUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTUAUPTüŝc)IENDB`ui-bg_flat_75_ffffff_40x100.png000066400000000000000000000002621227405131600325200ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDR(ddrzyIDATh1 R 7(ȚV`%X V`%X V`%X V`%X V`%X V`%X V`%X V`%X V`%X V`%X V`%X V`%X Vj)2NIENDB`ui-bg_glass_55_fbf9ee_1x400.png000066400000000000000000000001701227405131600325340ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDRoX ?IDAT81 0Bѯl`6Cs<]:[&BA e7lQJŜQY*IENDB`ui-bg_glass_65_ffffff_1x400.png000066400000000000000000000001511227405131600326170ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDRoX 0IDAT8! + ̼JHR)[lk=O_(<` H"IENDB`ui-bg_glass_75_dadada_1x400.png000066400000000000000000000001571227405131600326010ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDRoX 6IDAT8cx&Qb%-7(`bbBf!؈(1Jc ܠIENDB`ui-bg_glass_75_e6e6e6_1x400.png000066400000000000000000000001561227405131600324020ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDRoX 5IDAT81 yUXHa@[{UUu@7 DFIENDB`ui-bg_glass_95_fef1ec_1x400.png000066400000000000000000000001671227405131600325370ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDRoX >IDAT81 0Cџ $CB}1@)e_ƅ`I8-%cM0 )" LIENDB`ui-bg_highlight-soft_75_cccccc_1x100.png000066400000000000000000000001451227405131600344050ustar00rootroot00000000000000semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/imagesPNG  IHDRdG,Z`,IDATcx&!DJqш/Cc ;:*COIENDB`semanticscuttle-0.98.5+dfsg/www/js/jquery-ui-1.8.11/themes/base/images/ui-icons_222222_256x240.png000066400000000000000000000104211227405131600314050ustar00rootroot00000000000000PNG  IHDRIJPLTE"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""]NtRNS2P."Tp@f` <BHJZ&0R,4j8D|($ blߝF>n~hhHIDATx]b۶H儒-{iZK:glkn-tIqq? E$dK>$>;PZsVh!Sy0E0}H)-t koܪKp\RϠ .E7 ) *V;~Pe Bx*,=$zDؾ JҸٻ9{ ǸHpqW@"2'B[$ @TiH/b٥96!XHq`DE*R HV!%;" i] dddddddd4y5  Rb@(8CdŪݡ,@T@ibrq0alX!pe, =4bW { 5Ƭhu~(Q^@3="b5XC@JCT76q_5 @,r šɩD)T|O@ ON-ՙ [n@RXIm݋(F @?=0puL;g$@6η K`>п @h գKVn"a" %l@.v$/U^ G:#`` uTtK~ŋZ5T%kxk]\*Q ,҇B44 OXK|yg+_M(lоEO V$T1BXb-|?@ fBXr%'@ҹA\IJ,}BBc\V rh(]tI^}oצo S3 ";ʙb}"߰ ){b$Gwwݾab")T@pF_er6JvШ"mޭM-d76x˰6ӥ;/`>KrP\_^u1%OTM.}Q3.Nس})>-w`a+sy$t)NbFFFFBejnNVn4,A*X*5>PGa 3 {oB &<L[ Nc.öi=`Q@d ͆I.Il`\t[< Cit484-r +f쑱BCB MH iy }>rxp|z;BǏ;burcK4tz1G~`ؚK| ̔>ۡO$~ Ao)0pzz }i`;ADm8n:cfA@s7L Z/..h8or? N93B~o_'`opO- :TG L;7]`B%˛>*wTpM0H}&t ^1'Oqr'2P͡+z,tIW''|en=dzgRm[NStK{҉mؓVt6ҲR`ζN&}B U(rۗ&1%Q''?l׸+&r{jN಻4) `N狌. ߭ ǣ)q 2?n3Hb`} .`pqY1e_bu7e+N_F(DT,L}LLrmP5|x芥1cx DAb`M(7NED~Mz +4BXd.Mzv͈Pd8p<6?8N*x.6ڍ6GFZ)O !lSshssNp8`'0/<s}.@Ǩs7ξO۟VDa5av]m1+3y6۠>@u50Ps51==p *KVҫ܂ݻc$N4(Xr2###c- 賟Lδ>]5.sYs1f0;'̨Yg銛{@9 `aC(=%bo2=n1 jBoS$n#m=i0ci9}oI qT]W%.(؅]z\x f"]o'u䫵tk{v;AC3ֆwwR_#X (xҋ/q%W hpk_IX'b/fXKi"#####QCLi2t 5L0 QiH2;yTOok;ע ٶ`RNg{zy!Kxm?A(vU~mL(`o/!nmX-{v[ dw=n「sdwzn(}Oy~ m ?XU;,V'+ V&JRZ]᧭:zC'-߆@y 4u `Vۓwъ#zP@Q N>2/{\o)W~a3xLw :_Q;=pּdt\'8~3SRP6y+XQ*޺r ̗ѭ*޺r gl/\U^u$|mbVnw \V|D͊NVNy7k<;/E}?E*dzgO ~g/96f cD}% g$QG7o)U Jo,O@0߾Q(;bw:5 NwRN5Iy'K?}:9mֽ*@f@jU9mҫÍ{$ؗ}dFp|%!DdF>}G{@FFFFFFƦQܞH 3 u Mo~vy}mwz<7nP9rWku=|_nz쿳}@IXn?sn~hhHIDATx]b۶H儒-{iZK:glkn-tIqq? E$dK>$>;PZsVh!Sy0E0}H)-t koܪKp\RϠ .E7 ) *V;~Pe Bx*,=$zDؾ JҸٻ9{ ǸHpqW@"2'B[$ @TiH/b٥96!XHq`DE*R HV!%;" i] dddddddd4y5  Rb@(8CdŪݡ,@T@ibrq0alX!pe, =4bW { 5Ƭhu~(Q^@3="b5XC@JCT76q_5 @,r šɩD)T|O@ ON-ՙ [n@RXIm݋(F @?=0puL;g$@6η K`>п @h գKVn"a" %l@.v$/U^ G:#`` uTtK~ŋZ5T%kxk]\*Q ,҇B44 OXK|yg+_M(lоEO V$T1BXb-|?@ fBXr%'@ҹA\IJ,}BBc\V rh(]tI^}oצo S3 ";ʙb}"߰ ){b$Gwwݾab")T@pF_er6JvШ"mޭM-d76x˰6ӥ;/`>KrP\_^u1%OTM.}Q3.Nس})>-w`a+sy$t)NbFFFFBejnNVn4,A*X*5>PGa 3 {oB &<L[ Nc.öi=`Q@d ͆I.Il`\t[< Cit484-r +f쑱BCB MH iy }>rxp|z;BǏ;burcK4tz1G~`ؚK| ̔>ۡO$~ Ao)0pzz }i`;ADm8n:cfA@s7L Z/..h8or? N93B~o_'`opO- :TG L;7]`B%˛>*wTpM0H}&t ^1'Oqr'2P͡+z,tIW''|en=dzgRm[NStK{҉mؓVt6ҲR`ζN&}B U(rۗ&1%Q''?l׸+&r{jN಻4) `N狌. ߭ ǣ)q 2?n3Hb`} .`pqY1e_bu7e+N_F(DT,L}LLrmP5|x芥1cx DAb`M(7NED~Mz +4BXd.Mzv͈Pd8p<6?8N*x.6ڍ6GFZ)O !lSshssNp8`'0/<s}.@Ǩs7ξO۟VDa5av]m1+3y6۠>@u50Ps51==p *KVҫ܂ݻc$N4(Xr2###c- 賟Lδ>]5.sYs1f0;'̨Yg銛{@9 `aC(=%bo2=n1 jBoS$n#m=i0ci9}oI qT]W%.(؅]z\x f"]o'u䫵tk{v;AC3ֆwwR_#X (xҋ/q%W hpk_IX'b/fXKi"#####QCLi2t 5L0 QiH2;yTOok;ע ٶ`RNg{zy!Kxm?A(vU~mL(`o/!nmX-{v[ dw=n「sdwzn(}Oy~ m ?XU;,V'+ V&JRZ]᧭:zC'-߆@y 4u `Vۓwъ#zP@Q N>2/{\o)W~a3xLw :_Q;=pּdt\'8~3SRP6y+XQ*޺r ̗ѭ*޺r gl/\U^u$|mbVnw \V|D͊NVNy7k<;/E}?E*dzgO ~g/96f cD}% g$QG7o)U Jo,O@0߾Q(;bw:5 NwRN5Iy'K?}:9mֽ*@f@jU9mҫÍ{$ؗ}dFp|%!DdF>}G{@FFFFFFƦQܞH 3 u Mo~vy}mwz<7nP9rWku=|_nz쿳}@IXn?sn~hhHIDATx]b۶H儒-{iZK:glkn-tIqq? E$dK>$>;PZsVh!Sy0E0}H)-t koܪKp\RϠ .E7 ) *V;~Pe Bx*,=$zDؾ JҸٻ9{ ǸHpqW@"2'B[$ @TiH/b٥96!XHq`DE*R HV!%;" i] dddddddd4y5  Rb@(8CdŪݡ,@T@ibrq0alX!pe, =4bW { 5Ƭhu~(Q^@3="b5XC@JCT76q_5 @,r šɩD)T|O@ ON-ՙ [n@RXIm݋(F @?=0puL;g$@6η K`>п @h գKVn"a" %l@.v$/U^ G:#`` uTtK~ŋZ5T%kxk]\*Q ,҇B44 OXK|yg+_M(lоEO V$T1BXb-|?@ fBXr%'@ҹA\IJ,}BBc\V rh(]tI^}oצo S3 ";ʙb}"߰ ){b$Gwwݾab")T@pF_er6JvШ"mޭM-d76x˰6ӥ;/`>KrP\_^u1%OTM.}Q3.Nس})>-w`a+sy$t)NbFFFFBejnNVn4,A*X*5>PGa 3 {oB &<L[ Nc.öi=`Q@d ͆I.Il`\t[< Cit484-r +f쑱BCB MH iy }>rxp|z;BǏ;burcK4tz1G~`ؚK| ̔>ۡO$~ Ao)0pzz }i`;ADm8n:cfA@s7L Z/..h8or? N93B~o_'`opO- :TG L;7]`B%˛>*wTpM0H}&t ^1'Oqr'2P͡+z,tIW''|en=dzgRm[NStK{҉mؓVt6ҲR`ζN&}B U(rۗ&1%Q''?l׸+&r{jN಻4) `N狌. ߭ ǣ)q 2?n3Hb`} .`pqY1e_bu7e+N_F(DT,L}LLrmP5|x芥1cx DAb`M(7NED~Mz +4BXd.Mzv͈Pd8p<6?8N*x.6ڍ6GFZ)O !lSshssNp8`'0/<s}.@Ǩs7ξO۟VDa5av]m1+3y6۠>@u50Ps51==p *KVҫ܂ݻc$N4(Xr2###c- 賟Lδ>]5.sYs1f0;'̨Yg銛{@9 `aC(=%bo2=n1 jBoS$n#m=i0ci9}oI qT]W%.(؅]z\x f"]o'u䫵tk{v;AC3ֆwwR_#X (xҋ/q%W hpk_IX'b/fXKi"#####QCLi2t 5L0 QiH2;yTOok;ע ٶ`RNg{zy!Kxm?A(vU~mL(`o/!nmX-{v[ dw=n「sdwzn(}Oy~ m ?XU;,V'+ V&JRZ]᧭:zC'-߆@y 4u `Vۓwъ#zP@Q N>2/{\o)W~a3xLw :_Q;=pּdt\'8~3SRP6y+XQ*޺r ̗ѭ*޺r gl/\U^u$|mbVnw \V|D͊NVNy7k<;/E}?E*dzgO ~g/96f cD}% g$QG7o)U Jo,O@0߾Q(;bw:5 NwRN5Iy'K?}:9mֽ*@f@jU9mҫÍ{$ؗ}dFp|%!DdF>}G{@FFFFFFƦQܞH 3 u Mo~vy}mwz<7nP9rWku=|_nz쿳}@IXn?sn~hhHIDATx]b۶H儒-{iZK:glkn-tIqq? E$dK>$>;PZsVh!Sy0E0}H)-t koܪKp\RϠ .E7 ) *V;~Pe Bx*,=$zDؾ JҸٻ9{ ǸHpqW@"2'B[$ @TiH/b٥96!XHq`DE*R HV!%;" i] dddddddd4y5  Rb@(8CdŪݡ,@T@ibrq0alX!pe, =4bW { 5Ƭhu~(Q^@3="b5XC@JCT76q_5 @,r šɩD)T|O@ ON-ՙ [n@RXIm݋(F @?=0puL;g$@6η K`>п @h գKVn"a" %l@.v$/U^ G:#`` uTtK~ŋZ5T%kxk]\*Q ,҇B44 OXK|yg+_M(lоEO V$T1BXb-|?@ fBXr%'@ҹA\IJ,}BBc\V rh(]tI^}oצo S3 ";ʙb}"߰ ){b$Gwwݾab")T@pF_er6JvШ"mޭM-d76x˰6ӥ;/`>KrP\_^u1%OTM.}Q3.Nس})>-w`a+sy$t)NbFFFFBejnNVn4,A*X*5>PGa 3 {oB &<L[ Nc.öi=`Q@d ͆I.Il`\t[< Cit484-r +f쑱BCB MH iy }>rxp|z;BǏ;burcK4tz1G~`ؚK| ̔>ۡO$~ Ao)0pzz }i`;ADm8n:cfA@s7L Z/..h8or? N93B~o_'`opO- :TG L;7]`B%˛>*wTpM0H}&t ^1'Oqr'2P͡+z,tIW''|en=dzgRm[NStK{҉mؓVt6ҲR`ζN&}B U(rۗ&1%Q''?l׸+&r{jN಻4) `N狌. ߭ ǣ)q 2?n3Hb`} .`pqY1e_bu7e+N_F(DT,L}LLrmP5|x芥1cx DAb`M(7NED~Mz +4BXd.Mzv͈Pd8p<6?8N*x.6ڍ6GFZ)O !lSshssNp8`'0/<s}.@Ǩs7ξO۟VDa5av]m1+3y6۠>@u50Ps51==p *KVҫ܂ݻc$N4(Xr2###c- 賟Lδ>]5.sYs1f0;'̨Yg銛{@9 `aC(=%bo2=n1 jBoS$n#m=i0ci9}oI qT]W%.(؅]z\x f"]o'u䫵tk{v;AC3ֆwwR_#X (xҋ/q%W hpk_IX'b/fXKi"#####QCLi2t 5L0 QiH2;yTOok;ע ٶ`RNg{zy!Kxm?A(vU~mL(`o/!nmX-{v[ dw=n「sdwzn(}Oy~ m ?XU;,V'+ V&JRZ]᧭:zC'-߆@y 4u `Vۓwъ#zP@Q N>2/{\o)W~a3xLw :_Q;=pּdt\'8~3SRP6y+XQ*޺r ̗ѭ*޺r gl/\U^u$|mbVnw \V|D͊NVNy7k<;/E}?E*dzgO ~g/96f cD}% g$QG7o)U Jo,O@0߾Q(;bw:5 NwRN5Iy'K?}:9mֽ*@f@jU9mҫÍ{$ؗ}dFp|%!DdF>}G{@FFFFFFƦQܞH 3 u Mo~vy}mwz<7nP9rWku=|_nz쿳}@IXn?sn~hhHIDATx]b۶H儒-{iZK:glkn-tIqq? E$dK>$>;PZsVh!Sy0E0}H)-t koܪKp\RϠ .E7 ) *V;~Pe Bx*,=$zDؾ JҸٻ9{ ǸHpqW@"2'B[$ @TiH/b٥96!XHq`DE*R HV!%;" i] dddddddd4y5  Rb@(8CdŪݡ,@T@ibrq0alX!pe, =4bW { 5Ƭhu~(Q^@3="b5XC@JCT76q_5 @,r šɩD)T|O@ ON-ՙ [n@RXIm݋(F @?=0puL;g$@6η K`>п @h գKVn"a" %l@.v$/U^ G:#`` uTtK~ŋZ5T%kxk]\*Q ,҇B44 OXK|yg+_M(lоEO V$T1BXb-|?@ fBXr%'@ҹA\IJ,}BBc\V rh(]tI^}oצo S3 ";ʙb}"߰ ){b$Gwwݾab")T@pF_er6JvШ"mޭM-d76x˰6ӥ;/`>KrP\_^u1%OTM.}Q3.Nس})>-w`a+sy$t)NbFFFFBejnNVn4,A*X*5>PGa 3 {oB &<L[ Nc.öi=`Q@d ͆I.Il`\t[< Cit484-r +f쑱BCB MH iy }>rxp|z;BǏ;burcK4tz1G~`ؚK| ̔>ۡO$~ Ao)0pzz }i`;ADm8n:cfA@s7L Z/..h8or? N93B~o_'`opO- :TG L;7]`B%˛>*wTpM0H}&t ^1'Oqr'2P͡+z,tIW''|en=dzgRm[NStK{҉mؓVt6ҲR`ζN&}B U(rۗ&1%Q''?l׸+&r{jN಻4) `N狌. ߭ ǣ)q 2?n3Hb`} .`pqY1e_bu7e+N_F(DT,L}LLrmP5|x芥1cx DAb`M(7NED~Mz +4BXd.Mzv͈Pd8p<6?8N*x.6ڍ6GFZ)O !lSshssNp8`'0/<s}.@Ǩs7ξO۟VDa5av]m1+3y6۠>@u50Ps51==p *KVҫ܂ݻc$N4(Xr2###c- 賟Lδ>]5.sYs1f0;'̨Yg銛{@9 `aC(=%bo2=n1 jBoS$n#m=i0ci9}oI qT]W%.(؅]z\x f"]o'u䫵tk{v;AC3ֆwwR_#X (xҋ/q%W hpk_IX'b/fXKi"#####QCLi2t 5L0 QiH2;yTOok;ע ٶ`RNg{zy!Kxm?A(vU~mL(`o/!nmX-{v[ dw=n「sdwzn(}Oy~ m ?XU;,V'+ V&JRZ]᧭:zC'-߆@y 4u `Vۓwъ#zP@Q N>2/{\o)W~a3xLw :_Q;=pּdt\'8~3SRP6y+XQ*޺r ̗ѭ*޺r gl/\U^u$|mbVnw \V|D͊NVNy7k<;/E}?E*dzgO ~g/96f cD}% g$QG7o)U Jo,O@0߾Q(;bw:5 NwRN5Iy'K?}:9mֽ*@f@jU9mҫÍ{$ؗ}dFp|%!DdF>}G{@FFFFFFƦQܞH 3 u Mo~vy}mwz<7nP9rWku=|_nz쿳}@IXn?s)[^>]*$|^#([\w-]+)$/, // Is it a simple selector isSimple = /^.[^:#\[\.,]*$/, // Check if a string has a non-whitespace character in it rnotwhite = /\S/, // Used for trimming whitespace rtrim = /^(\s|\u00A0)+|(\s|\u00A0)+$/g, // Match a standalone tag rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, // Keep a UserAgent string for use with jQuery.browser userAgent = navigator.userAgent, // For matching the engine and version of the browser browserMatch, // Has the ready events already been bound? readyBound = false, // The functions to execute on DOM ready readyList = [], // The ready event handler DOMContentLoaded, // Save a reference to some core methods toString = Object.prototype.toString, hasOwnProperty = Object.prototype.hasOwnProperty, push = Array.prototype.push, slice = Array.prototype.slice, indexOf = Array.prototype.indexOf; jQuery.fn = jQuery.prototype = { init: function( selector, context ) { var match, elem, ret, doc; // Handle $(""), $(null), or $(undefined) if ( !selector ) { return this; } // Handle $(DOMElement) if ( selector.nodeType ) { this.context = this[0] = selector; this.length = 1; return this; } // The body element only exists once, optimize finding it if ( selector === "body" && !context ) { this.context = document; this[0] = document.body; this.selector = "body"; this.length = 1; return this; } // Handle HTML strings if ( typeof selector === "string" ) { // Are we dealing with HTML string or an ID? match = quickExpr.exec( selector ); // Verify a match, and that no context was specified for #id if ( match && (match[1] || !context) ) { // HANDLE: $(html) -> $(array) if ( match[1] ) { doc = (context ? context.ownerDocument || context : document); // If a single string is passed in and it's a single tag // just do a createElement and skip the rest ret = rsingleTag.exec( selector ); if ( ret ) { if ( jQuery.isPlainObject( context ) ) { selector = [ document.createElement( ret[1] ) ]; jQuery.fn.attr.call( selector, context, true ); } else { selector = [ doc.createElement( ret[1] ) ]; } } else { ret = buildFragment( [ match[1] ], [ doc ] ); selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes; } return jQuery.merge( this, selector ); // HANDLE: $("#id") } else { elem = document.getElementById( match[2] ); if ( elem ) { // Handle the case where IE and Opera return items // by name instead of ID if ( elem.id !== match[2] ) { return rootjQuery.find( selector ); } // Otherwise, we inject the element directly into the jQuery object this.length = 1; this[0] = elem; } this.context = document; this.selector = selector; return this; } // HANDLE: $("TAG") } else if ( !context && /^\w+$/.test( selector ) ) { this.selector = selector; this.context = document; selector = document.getElementsByTagName( selector ); return jQuery.merge( this, selector ); // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return (context || rootjQuery).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) } else { return jQuery( context ).find( selector ); } // HANDLE: $(function) // Shortcut for document ready } else if ( jQuery.isFunction( selector ) ) { return rootjQuery.ready( selector ); } if (selector.selector !== undefined) { this.selector = selector.selector; this.context = selector.context; } return jQuery.makeArray( selector, this ); }, // Start with an empty selector selector: "", // The current version of jQuery being used jquery: "1.4.2", // The default length of a jQuery object is 0 length: 0, // The number of elements contained in the matched element set size: function() { return this.length; }, toArray: function() { return slice.call( this, 0 ); }, // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { return num == null ? // Return a 'clean' array this.toArray() : // Return just the object ( num < 0 ? this.slice(num)[ 0 ] : this[ num ] ); }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems, name, selector ) { // Build a new jQuery matched element set var ret = jQuery(); if ( jQuery.isArray( elems ) ) { push.apply( ret, elems ); } else { jQuery.merge( ret, elems ); } // Add the old object onto the stack (as a reference) ret.prevObject = this; ret.context = this.context; if ( name === "find" ) { ret.selector = this.selector + (this.selector ? " " : "") + selector; } else if ( name ) { ret.selector = this.selector + "." + name + "(" + selector + ")"; } // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. // (You can seed the arguments with an array of args, but this is // only used internally.) each: function( callback, args ) { return jQuery.each( this, callback, args ); }, ready: function( fn ) { // Attach the listeners jQuery.bindReady(); // If the DOM is already ready if ( jQuery.isReady ) { // Execute the function immediately fn.call( document, jQuery ); // Otherwise, remember the function for later } else if ( readyList ) { // Add the function to the wait list readyList.push( fn ); } return this; }, eq: function( i ) { return i === -1 ? this.slice( i ) : this.slice( i, +i + 1 ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, slice: function() { return this.pushStack( slice.apply( this, arguments ), "slice", slice.call(arguments).join(",") ); }, map: function( callback ) { return this.pushStack( jQuery.map(this, function( elem, i ) { return callback.call( elem, i, elem ); })); }, end: function() { return this.prevObject || jQuery(null); }, // For internal use only. // Behaves like an Array's method, not like a jQuery method. push: push, sort: [].sort, splice: [].splice }; // Give the init function the jQuery prototype for later instantiation jQuery.fn.init.prototype = jQuery.fn; jQuery.extend = jQuery.fn.extend = function() { // copy reference to target object var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy; // Handle a deep copy situation if ( typeof target === "boolean" ) { deep = target; target = arguments[1] || {}; // skip the boolean and the target i = 2; } // Handle case when target is a string or something (possible in deep copy) if ( typeof target !== "object" && !jQuery.isFunction(target) ) { target = {}; } // extend jQuery itself if only one argument is passed if ( length === i ) { target = this; --i; } for ( ; i < length; i++ ) { // Only deal with non-null/undefined values if ( (options = arguments[ i ]) != null ) { // Extend the base object for ( name in options ) { src = target[ name ]; copy = options[ name ]; // Prevent never-ending loop if ( target === copy ) { continue; } // Recurse if we're merging object literal values or arrays if ( deep && copy && ( jQuery.isPlainObject(copy) || jQuery.isArray(copy) ) ) { var clone = src && ( jQuery.isPlainObject(src) || jQuery.isArray(src) ) ? src : jQuery.isArray(copy) ? [] : {}; // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); // Don't bring in undefined values } else if ( copy !== undefined ) { target[ name ] = copy; } } } } // Return the modified object return target; }; jQuery.extend({ noConflict: function( deep ) { window.$ = _$; if ( deep ) { window.jQuery = _jQuery; } return jQuery; }, // Is the DOM ready to be used? Set to true once it occurs. isReady: false, // Handle when the DOM is ready ready: function() { // Make sure that the DOM is not already loaded if ( !jQuery.isReady ) { // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( !document.body ) { return setTimeout( jQuery.ready, 13 ); } // Remember that the DOM is ready jQuery.isReady = true; // If there are functions bound, to execute if ( readyList ) { // Execute all of them var fn, i = 0; while ( (fn = readyList[ i++ ]) ) { fn.call( document, jQuery ); } // Reset the list of functions readyList = null; } // Trigger any bound ready events if ( jQuery.fn.triggerHandler ) { jQuery( document ).triggerHandler( "ready" ); } } }, bindReady: function() { if ( readyBound ) { return; } readyBound = true; // Catch cases where $(document).ready() is called after the // browser event has already occurred. if ( document.readyState === "complete" ) { return jQuery.ready(); } // Mozilla, Opera and webkit nightlies currently support this event if ( document.addEventListener ) { // Use the handy event callback document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); // A fallback to window.onload, that will always work window.addEventListener( "load", jQuery.ready, false ); // If IE event model is used } else if ( document.attachEvent ) { // ensure firing before onload, // maybe late but safe also for iframes document.attachEvent("onreadystatechange", DOMContentLoaded); // A fallback to window.onload, that will always work window.attachEvent( "onload", jQuery.ready ); // If IE and not a frame // continually check to see if the document is ready var toplevel = false; try { toplevel = window.frameElement == null; } catch(e) {} if ( document.documentElement.doScroll && toplevel ) { doScrollCheck(); } } }, // See test/unit/core.js for details concerning isFunction. // Since version 1.3, DOM methods and functions like alert // aren't supported. They return false on IE (#2968). isFunction: function( obj ) { return toString.call(obj) === "[object Function]"; }, isArray: function( obj ) { return toString.call(obj) === "[object Array]"; }, isPlainObject: function( obj ) { // Must be an Object. // Because of IE, we also have to check the presence of the constructor property. // Make sure that DOM nodes and window objects don't pass through, as well if ( !obj || toString.call(obj) !== "[object Object]" || obj.nodeType || obj.setInterval ) { return false; } // Not own constructor property must be Object if ( obj.constructor && !hasOwnProperty.call(obj, "constructor") && !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) { return false; } // Own properties are enumerated firstly, so to speed up, // if last one is own, then all properties are own. var key; for ( key in obj ) {} return key === undefined || hasOwnProperty.call( obj, key ); }, isEmptyObject: function( obj ) { for ( var name in obj ) { return false; } return true; }, error: function( msg ) { throw msg; }, parseJSON: function( data ) { if ( typeof data !== "string" || !data ) { return null; } // Make sure leading/trailing whitespace is removed (IE can't handle it) data = jQuery.trim( data ); // Make sure the incoming data is actual JSON // Logic borrowed from http://json.org/json2.js if ( /^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, "@") .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, "]") .replace(/(?:^|:|,)(?:\s*\[)+/g, "")) ) { // Try to use the native JSON parser first return window.JSON && window.JSON.parse ? window.JSON.parse( data ) : (new Function("return " + data))(); } else { jQuery.error( "Invalid JSON: " + data ); } }, noop: function() {}, // Evalulates a script in a global context globalEval: function( data ) { if ( data && rnotwhite.test(data) ) { // Inspired by code by Andrea Giammarchi // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html var head = document.getElementsByTagName("head")[0] || document.documentElement, script = document.createElement("script"); script.type = "text/javascript"; if ( jQuery.support.scriptEval ) { script.appendChild( document.createTextNode( data ) ); } else { script.text = data; } // Use insertBefore instead of appendChild to circumvent an IE6 bug. // This arises when a base node is used (#2709). head.insertBefore( script, head.firstChild ); head.removeChild( script ); } }, nodeName: function( elem, name ) { return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); }, // args is for internal usage only each: function( object, callback, args ) { var name, i = 0, length = object.length, isObj = length === undefined || jQuery.isFunction(object); if ( args ) { if ( isObj ) { for ( name in object ) { if ( callback.apply( object[ name ], args ) === false ) { break; } } } else { for ( ; i < length; ) { if ( callback.apply( object[ i++ ], args ) === false ) { break; } } } // A special, fast, case for the most common use of each } else { if ( isObj ) { for ( name in object ) { if ( callback.call( object[ name ], name, object[ name ] ) === false ) { break; } } } else { for ( var value = object[0]; i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {} } } return object; }, trim: function( text ) { return (text || "").replace( rtrim, "" ); }, // results is for internal usage only makeArray: function( array, results ) { var ret = results || []; if ( array != null ) { // The window, strings (and functions) also have 'length' // The extra typeof function check is to prevent crashes // in Safari 2 (See: #3039) if ( array.length == null || typeof array === "string" || jQuery.isFunction(array) || (typeof array !== "function" && array.setInterval) ) { push.call( ret, array ); } else { jQuery.merge( ret, array ); } } return ret; }, inArray: function( elem, array ) { if ( array.indexOf ) { return array.indexOf( elem ); } for ( var i = 0, length = array.length; i < length; i++ ) { if ( array[ i ] === elem ) { return i; } } return -1; }, merge: function( first, second ) { var i = first.length, j = 0; if ( typeof second.length === "number" ) { for ( var l = second.length; j < l; j++ ) { first[ i++ ] = second[ j ]; } } else { while ( second[j] !== undefined ) { first[ i++ ] = second[ j++ ]; } } first.length = i; return first; }, grep: function( elems, callback, inv ) { var ret = []; // Go through the array, only saving the items // that pass the validator function for ( var i = 0, length = elems.length; i < length; i++ ) { if ( !inv !== !callback( elems[ i ], i ) ) { ret.push( elems[ i ] ); } } return ret; }, // arg is for internal usage only map: function( elems, callback, arg ) { var ret = [], value; // Go through the array, translating each of the items to their // new value (or values). for ( var i = 0, length = elems.length; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret[ ret.length ] = value; } } return ret.concat.apply( [], ret ); }, // A global GUID counter for objects guid: 1, proxy: function( fn, proxy, thisObject ) { if ( arguments.length === 2 ) { if ( typeof proxy === "string" ) { thisObject = fn; fn = thisObject[ proxy ]; proxy = undefined; } else if ( proxy && !jQuery.isFunction( proxy ) ) { thisObject = proxy; proxy = undefined; } } if ( !proxy && fn ) { proxy = function() { return fn.apply( thisObject || this, arguments ); }; } // Set the guid of unique handler to the same of original handler, so it can be removed if ( fn ) { proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; } // So proxy can be declared as an argument return proxy; }, // Use of jQuery.browser is frowned upon. // More details: http://docs.jquery.com/Utilities/jQuery.browser uaMatch: function( ua ) { ua = ua.toLowerCase(); var match = /(webkit)[ \/]([\w.]+)/.exec( ua ) || /(opera)(?:.*version)?[ \/]([\w.]+)/.exec( ua ) || /(msie) ([\w.]+)/.exec( ua ) || !/compatible/.test( ua ) && /(mozilla)(?:.*? rv:([\w.]+))?/.exec( ua ) || []; return { browser: match[1] || "", version: match[2] || "0" }; }, browser: {} }); browserMatch = jQuery.uaMatch( userAgent ); if ( browserMatch.browser ) { jQuery.browser[ browserMatch.browser ] = true; jQuery.browser.version = browserMatch.version; } // Deprecated, use jQuery.browser.webkit instead if ( jQuery.browser.webkit ) { jQuery.browser.safari = true; } if ( indexOf ) { jQuery.inArray = function( elem, array ) { return indexOf.call( array, elem ); }; } // All jQuery objects should point back to these rootjQuery = jQuery(document); // Cleanup functions for the document ready method if ( document.addEventListener ) { DOMContentLoaded = function() { document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); jQuery.ready(); }; } else if ( document.attachEvent ) { DOMContentLoaded = function() { // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( document.readyState === "complete" ) { document.detachEvent( "onreadystatechange", DOMContentLoaded ); jQuery.ready(); } }; } // The DOM ready check for Internet Explorer function doScrollCheck() { if ( jQuery.isReady ) { return; } try { // If IE is used, use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ document.documentElement.doScroll("left"); } catch( error ) { setTimeout( doScrollCheck, 1 ); return; } // and execute any waiting functions jQuery.ready(); } function evalScript( i, elem ) { if ( elem.src ) { jQuery.ajax({ url: elem.src, async: false, dataType: "script" }); } else { jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" ); } if ( elem.parentNode ) { elem.parentNode.removeChild( elem ); } } // Mutifunctional method to get and set values to a collection // The value/s can be optionally by executed if its a function function access( elems, key, value, exec, fn, pass ) { var length = elems.length; // Setting many attributes if ( typeof key === "object" ) { for ( var k in key ) { access( elems, k, key[k], exec, fn, value ); } return elems; } // Setting one attribute if ( value !== undefined ) { // Optionally, function values get executed if exec is true exec = !pass && exec && jQuery.isFunction(value); for ( var i = 0; i < length; i++ ) { fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); } return elems; } // Getting an attribute return length ? fn( elems[0], key ) : undefined; } function now() { return (new Date).getTime(); } (function() { jQuery.support = {}; var root = document.documentElement, script = document.createElement("script"), div = document.createElement("div"), id = "script" + now(); div.style.display = "none"; div.innerHTML = "
    a"; var all = div.getElementsByTagName("*"), a = div.getElementsByTagName("a")[0]; // Can't get basic test support if ( !all || !all.length || !a ) { return; } jQuery.support = { // IE strips leading whitespace when .innerHTML is used leadingWhitespace: div.firstChild.nodeType === 3, // Make sure that tbody elements aren't automatically inserted // IE will insert them into empty tables tbody: !div.getElementsByTagName("tbody").length, // Make sure that link elements get serialized correctly by innerHTML // This requires a wrapper element in IE htmlSerialize: !!div.getElementsByTagName("link").length, // Get the style information from getAttribute // (IE uses .cssText insted) style: /red/.test( a.getAttribute("style") ), // Make sure that URLs aren't manipulated // (IE normalizes it by default) hrefNormalized: a.getAttribute("href") === "/a", // Make sure that element opacity exists // (IE uses filter instead) // Use a regex to work around a WebKit issue. See #5145 opacity: /^0.55$/.test( a.style.opacity ), // Verify style float existence // (IE uses styleFloat instead of cssFloat) cssFloat: !!a.style.cssFloat, // Make sure that if no value is specified for a checkbox // that it defaults to "on". // (WebKit defaults to "" instead) checkOn: div.getElementsByTagName("input")[0].value === "on", // Make sure that a selected-by-default option has a working selected property. // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) optSelected: document.createElement("select").appendChild( document.createElement("option") ).selected, parentNode: div.removeChild( div.appendChild( document.createElement("div") ) ).parentNode === null, // Will be defined later deleteExpando: true, checkClone: false, scriptEval: false, noCloneEvent: true, boxModel: null }; script.type = "text/javascript"; try { script.appendChild( document.createTextNode( "window." + id + "=1;" ) ); } catch(e) {} root.insertBefore( script, root.firstChild ); // Make sure that the execution of code works by injecting a script // tag with appendChild/createTextNode // (IE doesn't support this, fails, and uses .text instead) if ( window[ id ] ) { jQuery.support.scriptEval = true; delete window[ id ]; } // Test to see if it's possible to delete an expando from an element // Fails in Internet Explorer try { delete script.test; } catch(e) { jQuery.support.deleteExpando = false; } root.removeChild( script ); if ( div.attachEvent && div.fireEvent ) { div.attachEvent("onclick", function click() { // Cloning a node shouldn't copy over any // bound event handlers (IE does this) jQuery.support.noCloneEvent = false; div.detachEvent("onclick", click); }); div.cloneNode(true).fireEvent("onclick"); } div = document.createElement("div"); div.innerHTML = ""; var fragment = document.createDocumentFragment(); fragment.appendChild( div.firstChild ); // WebKit doesn't clone checked state correctly in fragments jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked; // Figure out if the W3C box model works as expected // document.body must exist before we can do this jQuery(function() { var div = document.createElement("div"); div.style.width = div.style.paddingLeft = "1px"; document.body.appendChild( div ); jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2; document.body.removeChild( div ).style.display = 'none'; div = null; }); // Technique from Juriy Zaytsev // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ var eventSupported = function( eventName ) { var el = document.createElement("div"); eventName = "on" + eventName; var isSupported = (eventName in el); if ( !isSupported ) { el.setAttribute(eventName, "return;"); isSupported = typeof el[eventName] === "function"; } el = null; return isSupported; }; jQuery.support.submitBubbles = eventSupported("submit"); jQuery.support.changeBubbles = eventSupported("change"); // release memory in IE root = script = div = all = a = null; })(); jQuery.props = { "for": "htmlFor", "class": "className", readonly: "readOnly", maxlength: "maxLength", cellspacing: "cellSpacing", rowspan: "rowSpan", colspan: "colSpan", tabindex: "tabIndex", usemap: "useMap", frameborder: "frameBorder" }; var expando = "jQuery" + now(), uuid = 0, windowData = {}; jQuery.extend({ cache: {}, expando:expando, // The following elements throw uncatchable exceptions if you // attempt to add expando properties to them. noData: { "embed": true, "object": true, "applet": true }, data: function( elem, name, data ) { if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) { return; } elem = elem == window ? windowData : elem; var id = elem[ expando ], cache = jQuery.cache, thisCache; if ( !id && typeof name === "string" && data === undefined ) { return null; } // Compute a unique ID for the element if ( !id ) { id = ++uuid; } // Avoid generating a new cache unless none exists and we // want to manipulate it. if ( typeof name === "object" ) { elem[ expando ] = id; thisCache = cache[ id ] = jQuery.extend(true, {}, name); } else if ( !cache[ id ] ) { elem[ expando ] = id; cache[ id ] = {}; } thisCache = cache[ id ]; // Prevent overriding the named cache with undefined values if ( data !== undefined ) { thisCache[ name ] = data; } return typeof name === "string" ? thisCache[ name ] : thisCache; }, removeData: function( elem, name ) { if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) { return; } elem = elem == window ? windowData : elem; var id = elem[ expando ], cache = jQuery.cache, thisCache = cache[ id ]; // If we want to remove a specific section of the element's data if ( name ) { if ( thisCache ) { // Remove the section of cache data delete thisCache[ name ]; // If we've removed all the data, remove the element's cache if ( jQuery.isEmptyObject(thisCache) ) { jQuery.removeData( elem ); } } // Otherwise, we want to remove all of the element's data } else { if ( jQuery.support.deleteExpando ) { delete elem[ jQuery.expando ]; } else if ( elem.removeAttribute ) { elem.removeAttribute( jQuery.expando ); } // Completely remove the data cache delete cache[ id ]; } } }); jQuery.fn.extend({ data: function( key, value ) { if ( typeof key === "undefined" && this.length ) { return jQuery.data( this[0] ); } else if ( typeof key === "object" ) { return this.each(function() { jQuery.data( this, key ); }); } var parts = key.split("."); parts[1] = parts[1] ? "." + parts[1] : ""; if ( value === undefined ) { var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); if ( data === undefined && this.length ) { data = jQuery.data( this[0], key ); } return data === undefined && parts[1] ? this.data( parts[0] ) : data; } else { return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function() { jQuery.data( this, key, value ); }); } }, removeData: function( key ) { return this.each(function() { jQuery.removeData( this, key ); }); } }); jQuery.extend({ queue: function( elem, type, data ) { if ( !elem ) { return; } type = (type || "fx") + "queue"; var q = jQuery.data( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( !data ) { return q || []; } if ( !q || jQuery.isArray(data) ) { q = jQuery.data( elem, type, jQuery.makeArray(data) ); } else { q.push( data ); } return q; }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), fn = queue.shift(); // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); } if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift("inprogress"); } fn.call(elem, function() { jQuery.dequeue(elem, type); }); } } }); jQuery.fn.extend({ queue: function( type, data ) { if ( typeof type !== "string" ) { data = type; type = "fx"; } if ( data === undefined ) { return jQuery.queue( this[0], type ); } return this.each(function( i, elem ) { var queue = jQuery.queue( this, type, data ); if ( type === "fx" && queue[0] !== "inprogress" ) { jQuery.dequeue( this, type ); } }); }, dequeue: function( type ) { return this.each(function() { jQuery.dequeue( this, type ); }); }, // Based off of the plugin by Clint Helfers, with permission. // http://blindsignals.com/index.php/2009/07/jquery-delay/ delay: function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[time] || time : time; type = type || "fx"; return this.queue( type, function() { var elem = this; setTimeout(function() { jQuery.dequeue( elem, type ); }, time ); }); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); } }); var rclass = /[\n\t]/g, rspace = /\s+/, rreturn = /\r/g, rspecialurl = /href|src|style/, rtype = /(button|input)/i, rfocusable = /(button|input|object|select|textarea)/i, rclickable = /^(a|area)$/i, rradiocheck = /radio|checkbox/; jQuery.fn.extend({ attr: function( name, value ) { return access( this, name, value, true, jQuery.attr ); }, removeAttr: function( name, fn ) { return this.each(function(){ jQuery.attr( this, name, "" ); if ( this.nodeType === 1 ) { this.removeAttribute( name ); } }); }, addClass: function( value ) { if ( jQuery.isFunction(value) ) { return this.each(function(i) { var self = jQuery(this); self.addClass( value.call(this, i, self.attr("class")) ); }); } if ( value && typeof value === "string" ) { var classNames = (value || "").split( rspace ); for ( var i = 0, l = this.length; i < l; i++ ) { var elem = this[i]; if ( elem.nodeType === 1 ) { if ( !elem.className ) { elem.className = value; } else { var className = " " + elem.className + " ", setClass = elem.className; for ( var c = 0, cl = classNames.length; c < cl; c++ ) { if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) { setClass += " " + classNames[c]; } } elem.className = jQuery.trim( setClass ); } } } } return this; }, removeClass: function( value ) { if ( jQuery.isFunction(value) ) { return this.each(function(i) { var self = jQuery(this); self.removeClass( value.call(this, i, self.attr("class")) ); }); } if ( (value && typeof value === "string") || value === undefined ) { var classNames = (value || "").split(rspace); for ( var i = 0, l = this.length; i < l; i++ ) { var elem = this[i]; if ( elem.nodeType === 1 && elem.className ) { if ( value ) { var className = (" " + elem.className + " ").replace(rclass, " "); for ( var c = 0, cl = classNames.length; c < cl; c++ ) { className = className.replace(" " + classNames[c] + " ", " "); } elem.className = jQuery.trim( className ); } else { elem.className = ""; } } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value, isBool = typeof stateVal === "boolean"; if ( jQuery.isFunction( value ) ) { return this.each(function(i) { var self = jQuery(this); self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal ); }); } return this.each(function() { if ( type === "string" ) { // toggle individual class names var className, i = 0, self = jQuery(this), state = stateVal, classNames = value.split( rspace ); while ( (className = classNames[ i++ ]) ) { // check each className given, space seperated list state = isBool ? state : !self.hasClass( className ); self[ state ? "addClass" : "removeClass" ]( className ); } } else if ( type === "undefined" || type === "boolean" ) { if ( this.className ) { // store className if set jQuery.data( this, "__className__", this.className ); } // toggle whole className this.className = this.className || value === false ? "" : jQuery.data( this, "__className__" ) || ""; } }); }, hasClass: function( selector ) { var className = " " + selector + " "; for ( var i = 0, l = this.length; i < l; i++ ) { if ( (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { return true; } } return false; }, val: function( value ) { if ( value === undefined ) { var elem = this[0]; if ( elem ) { if ( jQuery.nodeName( elem, "option" ) ) { return (elem.attributes.value || {}).specified ? elem.value : elem.text; } // We need to handle select boxes special if ( jQuery.nodeName( elem, "select" ) ) { var index = elem.selectedIndex, values = [], options = elem.options, one = elem.type === "select-one"; // Nothing was selected if ( index < 0 ) { return null; } // Loop through all the selected options for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) { var option = options[ i ]; if ( option.selected ) { // Get the specifc value for the option value = jQuery(option).val(); // We don't need an array for one selects if ( one ) { return value; } // Multi-Selects return an array values.push( value ); } } return values; } // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified if ( rradiocheck.test( elem.type ) && !jQuery.support.checkOn ) { return elem.getAttribute("value") === null ? "on" : elem.value; } // Everything else, we just grab the value return (elem.value || "").replace(rreturn, ""); } return undefined; } var isFunction = jQuery.isFunction(value); return this.each(function(i) { var self = jQuery(this), val = value; if ( this.nodeType !== 1 ) { return; } if ( isFunction ) { val = value.call(this, i, self.val()); } // Typecast each time if the value is a Function and the appended // value is therefore different each time. if ( typeof val === "number" ) { val += ""; } if ( jQuery.isArray(val) && rradiocheck.test( this.type ) ) { this.checked = jQuery.inArray( self.val(), val ) >= 0; } else if ( jQuery.nodeName( this, "select" ) ) { var values = jQuery.makeArray(val); jQuery( "option", this ).each(function() { this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; }); if ( !values.length ) { this.selectedIndex = -1; } } else { this.value = val; } }); } }); jQuery.extend({ attrFn: { val: true, css: true, html: true, text: true, data: true, width: true, height: true, offset: true }, attr: function( elem, name, value, pass ) { // don't set attributes on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { return undefined; } if ( pass && name in jQuery.attrFn ) { return jQuery(elem)[name](value); } var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ), // Whether we are setting (or getting) set = value !== undefined; // Try to normalize/fix the name name = notxml && jQuery.props[ name ] || name; // Only do all the following if this is a node (faster for style) if ( elem.nodeType === 1 ) { // These attributes require special treatment var special = rspecialurl.test( name ); // Safari mis-reports the default selected property of an option // Accessing the parent's selectedIndex property fixes it if ( name === "selected" && !jQuery.support.optSelected ) { var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; // Make sure that it also works with optgroups, see #5701 if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } } // If applicable, access the attribute via the DOM 0 way if ( name in elem && notxml && !special ) { if ( set ) { // We can't allow the type property to be changed (since it causes problems in IE) if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { jQuery.error( "type property can't be changed" ); } elem[ name ] = value; } // browsers index elements by id/name on forms, give priority to attributes. if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) { return elem.getAttributeNode( name ).nodeValue; } // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ if ( name === "tabIndex" ) { var attributeNode = elem.getAttributeNode( "tabIndex" ); return attributeNode && attributeNode.specified ? attributeNode.value : rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? 0 : undefined; } return elem[ name ]; } if ( !jQuery.support.style && notxml && name === "style" ) { if ( set ) { elem.style.cssText = "" + value; } return elem.style.cssText; } if ( set ) { // convert the value to a string (all browsers do this but IE) see #1070 elem.setAttribute( name, "" + value ); } var attr = !jQuery.support.hrefNormalized && notxml && special ? // Some attributes require a special call on IE elem.getAttribute( name, 2 ) : elem.getAttribute( name ); // Non-existent attributes return null, we normalize to undefined return attr === null ? undefined : attr; } // elem is actually elem.style ... set the style // Using attr for specific style information is now deprecated. Use style instead. return jQuery.style( elem, name, value ); } }); var rnamespaces = /\.(.*)$/, fcleanup = function( nm ) { return nm.replace(/[^\w\s\.\|`]/g, function( ch ) { return "\\" + ch; }); }; /* * A number of helper functions used for managing events. * Many of the ideas behind this code originated from * Dean Edwards' addEvent library. */ jQuery.event = { // Bind an event to an element // Original by Dean Edwards add: function( elem, types, handler, data ) { if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } // For whatever reason, IE has trouble passing the window object // around, causing it to be cloned in the process if ( elem.setInterval && ( elem !== window && !elem.frameElement ) ) { elem = window; } var handleObjIn, handleObj; if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; } // Make sure that the function being executed has a unique ID if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure var elemData = jQuery.data( elem ); // If no elemData is found then we must be trying to bind to one of the // banned noData elements if ( !elemData ) { return; } var events = elemData.events = elemData.events || {}, eventHandle = elemData.handle, eventHandle; if ( !eventHandle ) { elemData.handle = eventHandle = function() { // Handle the second event of a trigger and when // an event is called after a page has unloaded return typeof jQuery !== "undefined" && !jQuery.event.triggered ? jQuery.event.handle.apply( eventHandle.elem, arguments ) : undefined; }; } // Add elem as a property of the handle function // This is to prevent a memory leak with non-native events in IE. eventHandle.elem = elem; // Handle multiple events separated by a space // jQuery(...).bind("mouseover mouseout", fn); types = types.split(" "); var type, i = 0, namespaces; while ( (type = types[ i++ ]) ) { handleObj = handleObjIn ? jQuery.extend({}, handleObjIn) : { handler: handler, data: data }; // Namespaced event handlers if ( type.indexOf(".") > -1 ) { namespaces = type.split("."); type = namespaces.shift(); handleObj.namespace = namespaces.slice(0).sort().join("."); } else { namespaces = []; handleObj.namespace = ""; } handleObj.type = type; handleObj.guid = handler.guid; // Get the current list of functions bound to this event var handlers = events[ type ], special = jQuery.event.special[ type ] || {}; // Init the event handler queue if ( !handlers ) { handlers = events[ type ] = []; // Check for a special event handler // Only use addEventListener/attachEvent if the special // events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { // Bind the global event handler to the element if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle, false ); } else if ( elem.attachEvent ) { elem.attachEvent( "on" + type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add the function to the element's handler list handlers.push( handleObj ); // Keep track of which events have been used, for global triggering jQuery.event.global[ type ] = true; } // Nullify elem to prevent memory leaks in IE elem = null; }, global: {}, // Detach an event or set of events from an element remove: function( elem, types, handler, pos ) { // don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } var ret, type, fn, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType, elemData = jQuery.data( elem ), events = elemData && elemData.events; if ( !elemData || !events ) { return; } // types is actually an event object here if ( types && types.type ) { handler = types.handler; types = types.type; } // Unbind all events for the element if ( !types || typeof types === "string" && types.charAt(0) === "." ) { types = types || ""; for ( type in events ) { jQuery.event.remove( elem, type + types ); } return; } // Handle multiple events separated by a space // jQuery(...).unbind("mouseover mouseout", fn); types = types.split(" "); while ( (type = types[ i++ ]) ) { origType = type; handleObj = null; all = type.indexOf(".") < 0; namespaces = []; if ( !all ) { // Namespaced event handlers namespaces = type.split("."); type = namespaces.shift(); namespace = new RegExp("(^|\\.)" + jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)") } eventType = events[ type ]; if ( !eventType ) { continue; } if ( !handler ) { for ( var j = 0; j < eventType.length; j++ ) { handleObj = eventType[ j ]; if ( all || namespace.test( handleObj.namespace ) ) { jQuery.event.remove( elem, origType, handleObj.handler, j ); eventType.splice( j--, 1 ); } } continue; } special = jQuery.event.special[ type ] || {}; for ( var j = pos || 0; j < eventType.length; j++ ) { handleObj = eventType[ j ]; if ( handler.guid === handleObj.guid ) { // remove the given handler for the given type if ( all || namespace.test( handleObj.namespace ) ) { if ( pos == null ) { eventType.splice( j--, 1 ); } if ( special.remove ) { special.remove.call( elem, handleObj ); } } if ( pos != null ) { break; } } } // remove generic event handler if no more handlers exist if ( eventType.length === 0 || pos != null && eventType.length === 1 ) { if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { removeEvent( elem, type, elemData.handle ); } ret = null; delete events[ type ]; } } // Remove the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { var handle = elemData.handle; if ( handle ) { handle.elem = null; } delete elemData.events; delete elemData.handle; if ( jQuery.isEmptyObject( elemData ) ) { jQuery.removeData( elem ); } } }, // bubbling is internal trigger: function( event, data, elem /*, bubbling */ ) { // Event object or event type var type = event.type || event, bubbling = arguments[3]; if ( !bubbling ) { event = typeof event === "object" ? // jQuery.Event object event[expando] ? event : // Object literal jQuery.extend( jQuery.Event(type), event ) : // Just the event type (string) jQuery.Event(type); if ( type.indexOf("!") >= 0 ) { event.type = type = type.slice(0, -1); event.exclusive = true; } // Handle a global trigger if ( !elem ) { // Don't bubble custom events when global (to avoid too much overhead) event.stopPropagation(); // Only trigger if we've ever bound an event for it if ( jQuery.event.global[ type ] ) { jQuery.each( jQuery.cache, function() { if ( this.events && this.events[type] ) { jQuery.event.trigger( event, data, this.handle.elem ); } }); } } // Handle triggering a single element // don't do events on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { return undefined; } // Clean up in case it is reused event.result = undefined; event.target = elem; // Clone the incoming data, if any data = jQuery.makeArray( data ); data.unshift( event ); } event.currentTarget = elem; // Trigger the event, it is assumed that "handle" is a function var handle = jQuery.data( elem, "handle" ); if ( handle ) { handle.apply( elem, data ); } var parent = elem.parentNode || elem.ownerDocument; // Trigger an inline bound script try { if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) { if ( elem[ "on" + type ] && elem[ "on" + type ].apply( elem, data ) === false ) { event.result = false; } } // prevent IE from throwing an error for some elements with some event types, see #3533 } catch (e) {} if ( !event.isPropagationStopped() && parent ) { jQuery.event.trigger( event, data, parent, true ); } else if ( !event.isDefaultPrevented() ) { var target = event.target, old, isClick = jQuery.nodeName(target, "a") && type === "click", special = jQuery.event.special[ type ] || {}; if ( (!special._default || special._default.call( elem, event ) === false) && !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { try { if ( target[ type ] ) { // Make sure that we don't accidentally re-trigger the onFOO events old = target[ "on" + type ]; if ( old ) { target[ "on" + type ] = null; } jQuery.event.triggered = true; target[ type ](); } // prevent IE from throwing an error for some elements with some event types, see #3533 } catch (e) {} if ( old ) { target[ "on" + type ] = old; } jQuery.event.triggered = false; } } }, handle: function( event ) { var all, handlers, namespaces, namespace, events; event = arguments[0] = jQuery.event.fix( event || window.event ); event.currentTarget = this; // Namespaced event handlers all = event.type.indexOf(".") < 0 && !event.exclusive; if ( !all ) { namespaces = event.type.split("."); event.type = namespaces.shift(); namespace = new RegExp("(^|\\.)" + namespaces.slice(0).sort().join("\\.(?:.*\\.)?") + "(\\.|$)"); } var events = jQuery.data(this, "events"), handlers = events[ event.type ]; if ( events && handlers ) { // Clone the handlers to prevent manipulation handlers = handlers.slice(0); for ( var j = 0, l = handlers.length; j < l; j++ ) { var handleObj = handlers[ j ]; // Filter the functions by class if ( all || namespace.test( handleObj.namespace ) ) { // Pass in a reference to the handler function itself // So that we can later remove it event.handler = handleObj.handler; event.data = handleObj.data; event.handleObj = handleObj; var ret = handleObj.handler.apply( this, arguments ); if ( ret !== undefined ) { event.result = ret; if ( ret === false ) { event.preventDefault(); event.stopPropagation(); } } if ( event.isImmediatePropagationStopped() ) { break; } } } } return event.result; }, props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), fix: function( event ) { if ( event[ expando ] ) { return event; } // store a copy of the original event object // and "clone" to set read-only properties var originalEvent = event; event = jQuery.Event( originalEvent ); for ( var i = this.props.length, prop; i; ) { prop = this.props[ --i ]; event[ prop ] = originalEvent[ prop ]; } // Fix target property, if necessary if ( !event.target ) { event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either } // check if target is a textnode (safari) if ( event.target.nodeType === 3 ) { event.target = event.target.parentNode; } // Add relatedTarget, if necessary if ( !event.relatedTarget && event.fromElement ) { event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement; } // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == null && event.clientX != null ) { var doc = document.documentElement, body = document.body; event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0); event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0); } // Add which for key events if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) ) { event.which = event.charCode || event.keyCode; } // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs) if ( !event.metaKey && event.ctrlKey ) { event.metaKey = event.ctrlKey; } // Add which for click: 1 === left; 2 === middle; 3 === right // Note: button is not normalized, so don't use it if ( !event.which && event.button !== undefined ) { event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) )); } return event; }, // Deprecated, use jQuery.guid instead guid: 1E8, // Deprecated, use jQuery.proxy instead proxy: jQuery.proxy, special: { ready: { // Make sure the ready event is setup setup: jQuery.bindReady, teardown: jQuery.noop }, live: { add: function( handleObj ) { jQuery.event.add( this, handleObj.origType, jQuery.extend({}, handleObj, {handler: liveHandler}) ); }, remove: function( handleObj ) { var remove = true, type = handleObj.origType.replace(rnamespaces, ""); jQuery.each( jQuery.data(this, "events").live || [], function() { if ( type === this.origType.replace(rnamespaces, "") ) { remove = false; return false; } }); if ( remove ) { jQuery.event.remove( this, handleObj.origType, liveHandler ); } } }, beforeunload: { setup: function( data, namespaces, eventHandle ) { // We only want to do this special case on windows if ( this.setInterval ) { this.onbeforeunload = eventHandle; } return false; }, teardown: function( namespaces, eventHandle ) { if ( this.onbeforeunload === eventHandle ) { this.onbeforeunload = null; } } } } }; var removeEvent = document.removeEventListener ? function( elem, type, handle ) { elem.removeEventListener( type, handle, false ); } : function( elem, type, handle ) { elem.detachEvent( "on" + type, handle ); }; jQuery.Event = function( src ) { // Allow instantiation without the 'new' keyword if ( !this.preventDefault ) { return new jQuery.Event( src ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Event type } else { this.type = src; } // timeStamp is buggy for some events on Firefox(#3843) // So we won't rely on the native value this.timeStamp = now(); // Mark it as fixed this[ expando ] = true; }; function returnFalse() { return false; } function returnTrue() { return true; } // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { preventDefault: function() { this.isDefaultPrevented = returnTrue; var e = this.originalEvent; if ( !e ) { return; } // if preventDefault exists run it on the original event if ( e.preventDefault ) { e.preventDefault(); } // otherwise set the returnValue property of the original event to false (IE) e.returnValue = false; }, stopPropagation: function() { this.isPropagationStopped = returnTrue; var e = this.originalEvent; if ( !e ) { return; } // if stopPropagation exists run it on the original event if ( e.stopPropagation ) { e.stopPropagation(); } // otherwise set the cancelBubble property of the original event to true (IE) e.cancelBubble = true; }, stopImmediatePropagation: function() { this.isImmediatePropagationStopped = returnTrue; this.stopPropagation(); }, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse }; // Checks if an event happened on an element within another element // Used in jQuery.event.special.mouseenter and mouseleave handlers var withinElement = function( event ) { // Check if mouse(over|out) are still within the same parent element var parent = event.relatedTarget; // Firefox sometimes assigns relatedTarget a XUL element // which we cannot access the parentNode property of try { // Traverse up the tree while ( parent && parent !== this ) { parent = parent.parentNode; } if ( parent !== this ) { // set the correct event type event.type = event.data; // handle event if we actually just moused on to a non sub-element jQuery.event.handle.apply( this, arguments ); } // assuming we've left the element since we most likely mousedover a xul element } catch(e) { } }, // In case of event delegation, we only need to rename the event.type, // liveHandler will take care of the rest. delegate = function( event ) { event.type = event.data; jQuery.event.handle.apply( this, arguments ); }; // Create mouseenter and mouseleave events jQuery.each({ mouseenter: "mouseover", mouseleave: "mouseout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { setup: function( data ) { jQuery.event.add( this, fix, data && data.selector ? delegate : withinElement, orig ); }, teardown: function( data ) { jQuery.event.remove( this, fix, data && data.selector ? delegate : withinElement ); } }; }); // submit delegation if ( !jQuery.support.submitBubbles ) { jQuery.event.special.submit = { setup: function( data, namespaces ) { if ( this.nodeName.toLowerCase() !== "form" ) { jQuery.event.add(this, "click.specialSubmit", function( e ) { var elem = e.target, type = elem.type; if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { return trigger( "submit", this, arguments ); } }); jQuery.event.add(this, "keypress.specialSubmit", function( e ) { var elem = e.target, type = elem.type; if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { return trigger( "submit", this, arguments ); } }); } else { return false; } }, teardown: function( namespaces ) { jQuery.event.remove( this, ".specialSubmit" ); } }; } // change delegation, happens here so we have bind. if ( !jQuery.support.changeBubbles ) { var formElems = /textarea|input|select/i, changeFilters, getVal = function( elem ) { var type = elem.type, val = elem.value; if ( type === "radio" || type === "checkbox" ) { val = elem.checked; } else if ( type === "select-multiple" ) { val = elem.selectedIndex > -1 ? jQuery.map( elem.options, function( elem ) { return elem.selected; }).join("-") : ""; } else if ( elem.nodeName.toLowerCase() === "select" ) { val = elem.selectedIndex; } return val; }, testChange = function testChange( e ) { var elem = e.target, data, val; if ( !formElems.test( elem.nodeName ) || elem.readOnly ) { return; } data = jQuery.data( elem, "_change_data" ); val = getVal(elem); // the current data will be also retrieved by beforeactivate if ( e.type !== "focusout" || elem.type !== "radio" ) { jQuery.data( elem, "_change_data", val ); } if ( data === undefined || val === data ) { return; } if ( data != null || val ) { e.type = "change"; return jQuery.event.trigger( e, arguments[1], elem ); } }; jQuery.event.special.change = { filters: { focusout: testChange, click: function( e ) { var elem = e.target, type = elem.type; if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { return testChange.call( this, e ); } }, // Change has to be called before submit // Keydown will be called before keypress, which is used in submit-event delegation keydown: function( e ) { var elem = e.target, type = elem.type; if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || type === "select-multiple" ) { return testChange.call( this, e ); } }, // Beforeactivate happens also before the previous element is blurred // with this event you can't trigger a change event, but you can store // information/focus[in] is not needed anymore beforeactivate: function( e ) { var elem = e.target; jQuery.data( elem, "_change_data", getVal(elem) ); } }, setup: function( data, namespaces ) { if ( this.type === "file" ) { return false; } for ( var type in changeFilters ) { jQuery.event.add( this, type + ".specialChange", changeFilters[type] ); } return formElems.test( this.nodeName ); }, teardown: function( namespaces ) { jQuery.event.remove( this, ".specialChange" ); return formElems.test( this.nodeName ); } }; changeFilters = jQuery.event.special.change.filters; } function trigger( type, elem, args ) { args[0].type = type; return jQuery.event.handle.apply( elem, args ); } // Create "bubbling" focus and blur events if ( document.addEventListener ) { jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { jQuery.event.special[ fix ] = { setup: function() { this.addEventListener( orig, handler, true ); }, teardown: function() { this.removeEventListener( orig, handler, true ); } }; function handler( e ) { e = jQuery.event.fix( e ); e.type = fix; return jQuery.event.handle.call( this, e ); } }); } jQuery.each(["bind", "one"], function( i, name ) { jQuery.fn[ name ] = function( type, data, fn ) { // Handle object literals if ( typeof type === "object" ) { for ( var key in type ) { this[ name ](key, data, type[key], fn); } return this; } if ( jQuery.isFunction( data ) ) { fn = data; data = undefined; } var handler = name === "one" ? jQuery.proxy( fn, function( event ) { jQuery( this ).unbind( event, handler ); return fn.apply( this, arguments ); }) : fn; if ( type === "unload" && name !== "one" ) { this.one( type, data, fn ); } else { for ( var i = 0, l = this.length; i < l; i++ ) { jQuery.event.add( this[i], type, handler, data ); } } return this; }; }); jQuery.fn.extend({ unbind: function( type, fn ) { // Handle object literals if ( typeof type === "object" && !type.preventDefault ) { for ( var key in type ) { this.unbind(key, type[key]); } } else { for ( var i = 0, l = this.length; i < l; i++ ) { jQuery.event.remove( this[i], type, fn ); } } return this; }, delegate: function( selector, types, data, fn ) { return this.live( types, data, fn, selector ); }, undelegate: function( selector, types, fn ) { if ( arguments.length === 0 ) { return this.unbind( "live" ); } else { return this.die( types, null, fn, selector ); } }, trigger: function( type, data ) { return this.each(function() { jQuery.event.trigger( type, data, this ); }); }, triggerHandler: function( type, data ) { if ( this[0] ) { var event = jQuery.Event( type ); event.preventDefault(); event.stopPropagation(); jQuery.event.trigger( event, data, this[0] ); return event.result; } }, toggle: function( fn ) { // Save reference to arguments for access in closure var args = arguments, i = 1; // link all the functions, so any of them can unbind this click handler while ( i < args.length ) { jQuery.proxy( fn, args[ i++ ] ); } return this.click( jQuery.proxy( fn, function( event ) { // Figure out which function to execute var lastToggle = ( jQuery.data( this, "lastToggle" + fn.guid ) || 0 ) % i; jQuery.data( this, "lastToggle" + fn.guid, lastToggle + 1 ); // Make sure that clicks stop event.preventDefault(); // and execute the function return args[ lastToggle ].apply( this, arguments ) || false; })); }, hover: function( fnOver, fnOut ) { return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); } }); var liveMap = { focus: "focusin", blur: "focusout", mouseenter: "mouseover", mouseleave: "mouseout" }; jQuery.each(["live", "die"], function( i, name ) { jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) { var type, i = 0, match, namespaces, preType, selector = origSelector || this.selector, context = origSelector ? this : jQuery( this.context ); if ( jQuery.isFunction( data ) ) { fn = data; data = undefined; } types = (types || "").split(" "); while ( (type = types[ i++ ]) != null ) { match = rnamespaces.exec( type ); namespaces = ""; if ( match ) { namespaces = match[0]; type = type.replace( rnamespaces, "" ); } if ( type === "hover" ) { types.push( "mouseenter" + namespaces, "mouseleave" + namespaces ); continue; } preType = type; if ( type === "focus" || type === "blur" ) { types.push( liveMap[ type ] + namespaces ); type = type + namespaces; } else { type = (liveMap[ type ] || type) + namespaces; } if ( name === "live" ) { // bind live handler context.each(function(){ jQuery.event.add( this, liveConvert( type, selector ), { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } ); }); } else { // unbind live handler context.unbind( liveConvert( type, selector ), fn ); } } return this; } }); function liveHandler( event ) { var stop, elems = [], selectors = [], args = arguments, related, match, handleObj, elem, j, i, l, data, events = jQuery.data( this, "events" ); // Make sure we avoid non-left-click bubbling in Firefox (#3861) if ( event.liveFired === this || !events || !events.live || event.button && event.type === "click" ) { return; } event.liveFired = this; var live = events.live.slice(0); for ( j = 0; j < live.length; j++ ) { handleObj = live[j]; if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) { selectors.push( handleObj.selector ); } else { live.splice( j--, 1 ); } } match = jQuery( event.target ).closest( selectors, event.currentTarget ); for ( i = 0, l = match.length; i < l; i++ ) { for ( j = 0; j < live.length; j++ ) { handleObj = live[j]; if ( match[i].selector === handleObj.selector ) { elem = match[i].elem; related = null; // Those two events require additional checking if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) { related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0]; } if ( !related || related !== elem ) { elems.push({ elem: elem, handleObj: handleObj }); } } } } for ( i = 0, l = elems.length; i < l; i++ ) { match = elems[i]; event.currentTarget = match.elem; event.data = match.handleObj.data; event.handleObj = match.handleObj; if ( match.handleObj.origHandler.apply( match.elem, args ) === false ) { stop = false; break; } } return stop; } function liveConvert( type, selector ) { return "live." + (type && type !== "*" ? type + "." : "") + selector.replace(/\./g, "`").replace(/ /g, "&"); } jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + "change select submit keydown keypress keyup error").split(" "), function( i, name ) { // Handle event binding jQuery.fn[ name ] = function( fn ) { return fn ? this.bind( name, fn ) : this.trigger( name ); }; if ( jQuery.attrFn ) { jQuery.attrFn[ name ] = true; } }); // Prevent memory leaks in IE // Window isn't included so as not to unbind existing unload events // More info: // - http://isaacschlueter.com/2006/10/msie-memory-leaks/ if ( window.attachEvent && !window.addEventListener ) { window.attachEvent("onunload", function() { for ( var id in jQuery.cache ) { if ( jQuery.cache[ id ].handle ) { // Try/Catch is to handle iframes being unloaded, see #4280 try { jQuery.event.remove( jQuery.cache[ id ].handle.elem ); } catch(e) {} } } }); } /*! * Sizzle CSS Selector Engine - v1.0 * Copyright 2009, The Dojo Foundation * Released under the MIT, BSD, and GPL Licenses. * More information: http://sizzlejs.com/ */ (function(){ var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, done = 0, toString = Object.prototype.toString, hasDuplicate = false, baseHasDuplicate = true; // Here we check if the JavaScript engine is using some sort of // optimization where it does not always call our comparision // function. If that is the case, discard the hasDuplicate value. // Thus far that includes Google Chrome. [0, 0].sort(function(){ baseHasDuplicate = false; return 0; }); var Sizzle = function(selector, context, results, seed) { results = results || []; var origContext = context = context || document; if ( context.nodeType !== 1 && context.nodeType !== 9 ) { return []; } if ( !selector || typeof selector !== "string" ) { return results; } var parts = [], m, set, checkSet, extra, prune = true, contextXML = isXML(context), soFar = selector; // Reset the position of the chunker regexp (start from head) while ( (chunker.exec(""), m = chunker.exec(soFar)) !== null ) { soFar = m[3]; parts.push( m[1] ); if ( m[2] ) { extra = m[3]; break; } } if ( parts.length > 1 && origPOS.exec( selector ) ) { if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { set = posProcess( parts[0] + parts[1], context ); } else { set = Expr.relative[ parts[0] ] ? [ context ] : Sizzle( parts.shift(), context ); while ( parts.length ) { selector = parts.shift(); if ( Expr.relative[ selector ] ) { selector += parts.shift(); } set = posProcess( selector, set ); } } } else { // Take a shortcut and set the context if the root selector is an ID // (but not if it'll be faster if the inner selector is an ID) if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { var ret = Sizzle.find( parts.shift(), context, contextXML ); context = ret.expr ? Sizzle.filter( ret.expr, ret.set )[0] : ret.set[0]; } if ( context ) { var ret = seed ? { expr: parts.pop(), set: makeArray(seed) } : Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); set = ret.expr ? Sizzle.filter( ret.expr, ret.set ) : ret.set; if ( parts.length > 0 ) { checkSet = makeArray(set); } else { prune = false; } while ( parts.length ) { var cur = parts.pop(), pop = cur; if ( !Expr.relative[ cur ] ) { cur = ""; } else { pop = parts.pop(); } if ( pop == null ) { pop = context; } Expr.relative[ cur ]( checkSet, pop, contextXML ); } } else { checkSet = parts = []; } } if ( !checkSet ) { checkSet = set; } if ( !checkSet ) { Sizzle.error( cur || selector ); } if ( toString.call(checkSet) === "[object Array]" ) { if ( !prune ) { results.push.apply( results, checkSet ); } else if ( context && context.nodeType === 1 ) { for ( var i = 0; checkSet[i] != null; i++ ) { if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && contains(context, checkSet[i])) ) { results.push( set[i] ); } } } else { for ( var i = 0; checkSet[i] != null; i++ ) { if ( checkSet[i] && checkSet[i].nodeType === 1 ) { results.push( set[i] ); } } } } else { makeArray( checkSet, results ); } if ( extra ) { Sizzle( extra, origContext, results, seed ); Sizzle.uniqueSort( results ); } return results; }; Sizzle.uniqueSort = function(results){ if ( sortOrder ) { hasDuplicate = baseHasDuplicate; results.sort(sortOrder); if ( hasDuplicate ) { for ( var i = 1; i < results.length; i++ ) { if ( results[i] === results[i-1] ) { results.splice(i--, 1); } } } } return results; }; Sizzle.matches = function(expr, set){ return Sizzle(expr, null, null, set); }; Sizzle.find = function(expr, context, isXML){ var set, match; if ( !expr ) { return []; } for ( var i = 0, l = Expr.order.length; i < l; i++ ) { var type = Expr.order[i], match; if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { var left = match[1]; match.splice(1,1); if ( left.substr( left.length - 1 ) !== "\\" ) { match[1] = (match[1] || "").replace(/\\/g, ""); set = Expr.find[ type ]( match, context, isXML ); if ( set != null ) { expr = expr.replace( Expr.match[ type ], "" ); break; } } } } if ( !set ) { set = context.getElementsByTagName("*"); } return {set: set, expr: expr}; }; Sizzle.filter = function(expr, set, inplace, not){ var old = expr, result = [], curLoop = set, match, anyFound, isXMLFilter = set && set[0] && isXML(set[0]); while ( expr && set.length ) { for ( var type in Expr.filter ) { if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { var filter = Expr.filter[ type ], found, item, left = match[1]; anyFound = false; match.splice(1,1); if ( left.substr( left.length - 1 ) === "\\" ) { continue; } if ( curLoop === result ) { result = []; } if ( Expr.preFilter[ type ] ) { match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); if ( !match ) { anyFound = found = true; } else if ( match === true ) { continue; } } if ( match ) { for ( var i = 0; (item = curLoop[i]) != null; i++ ) { if ( item ) { found = filter( item, match, i, curLoop ); var pass = not ^ !!found; if ( inplace && found != null ) { if ( pass ) { anyFound = true; } else { curLoop[i] = false; } } else if ( pass ) { result.push( item ); anyFound = true; } } } } if ( found !== undefined ) { if ( !inplace ) { curLoop = result; } expr = expr.replace( Expr.match[ type ], "" ); if ( !anyFound ) { return []; } break; } } } // Improper expression if ( expr === old ) { if ( anyFound == null ) { Sizzle.error( expr ); } else { break; } } old = expr; } return curLoop; }; Sizzle.error = function( msg ) { throw "Syntax error, unrecognized expression: " + msg; }; var Expr = Sizzle.selectors = { order: [ "ID", "NAME", "TAG" ], match: { ID: /#((?:[\w\u00c0-\uFFFF-]|\\.)+)/, CLASS: /\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/, NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/, ATTR: /\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/, TAG: /^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/, CHILD: /:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/, POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/, PSEUDO: /:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ }, leftMatch: {}, attrMap: { "class": "className", "for": "htmlFor" }, attrHandle: { href: function(elem){ return elem.getAttribute("href"); } }, relative: { "+": function(checkSet, part){ var isPartStr = typeof part === "string", isTag = isPartStr && !/\W/.test(part), isPartStrNotTag = isPartStr && !isTag; if ( isTag ) { part = part.toLowerCase(); } for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { if ( (elem = checkSet[i]) ) { while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? elem || false : elem === part; } } if ( isPartStrNotTag ) { Sizzle.filter( part, checkSet, true ); } }, ">": function(checkSet, part){ var isPartStr = typeof part === "string"; if ( isPartStr && !/\W/.test(part) ) { part = part.toLowerCase(); for ( var i = 0, l = checkSet.length; i < l; i++ ) { var elem = checkSet[i]; if ( elem ) { var parent = elem.parentNode; checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; } } } else { for ( var i = 0, l = checkSet.length; i < l; i++ ) { var elem = checkSet[i]; if ( elem ) { checkSet[i] = isPartStr ? elem.parentNode : elem.parentNode === part; } } if ( isPartStr ) { Sizzle.filter( part, checkSet, true ); } } }, "": function(checkSet, part, isXML){ var doneName = done++, checkFn = dirCheck; if ( typeof part === "string" && !/\W/.test(part) ) { var nodeCheck = part = part.toLowerCase(); checkFn = dirNodeCheck; } checkFn("parentNode", part, doneName, checkSet, nodeCheck, isXML); }, "~": function(checkSet, part, isXML){ var doneName = done++, checkFn = dirCheck; if ( typeof part === "string" && !/\W/.test(part) ) { var nodeCheck = part = part.toLowerCase(); checkFn = dirNodeCheck; } checkFn("previousSibling", part, doneName, checkSet, nodeCheck, isXML); } }, find: { ID: function(match, context, isXML){ if ( typeof context.getElementById !== "undefined" && !isXML ) { var m = context.getElementById(match[1]); return m ? [m] : []; } }, NAME: function(match, context){ if ( typeof context.getElementsByName !== "undefined" ) { var ret = [], results = context.getElementsByName(match[1]); for ( var i = 0, l = results.length; i < l; i++ ) { if ( results[i].getAttribute("name") === match[1] ) { ret.push( results[i] ); } } return ret.length === 0 ? null : ret; } }, TAG: function(match, context){ return context.getElementsByTagName(match[1]); } }, preFilter: { CLASS: function(match, curLoop, inplace, result, not, isXML){ match = " " + match[1].replace(/\\/g, "") + " "; if ( isXML ) { return match; } for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { if ( elem ) { if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n]/g, " ").indexOf(match) >= 0) ) { if ( !inplace ) { result.push( elem ); } } else if ( inplace ) { curLoop[i] = false; } } } return false; }, ID: function(match){ return match[1].replace(/\\/g, ""); }, TAG: function(match, curLoop){ return match[1].toLowerCase(); }, CHILD: function(match){ if ( match[1] === "nth" ) { // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' var test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec( match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); // calculate the numbers (first)n+(last) including if they are negative match[2] = (test[1] + (test[2] || 1)) - 0; match[3] = test[3] - 0; } // TODO: Move to normal caching system match[0] = done++; return match; }, ATTR: function(match, curLoop, inplace, result, not, isXML){ var name = match[1].replace(/\\/g, ""); if ( !isXML && Expr.attrMap[name] ) { match[1] = Expr.attrMap[name]; } if ( match[2] === "~=" ) { match[4] = " " + match[4] + " "; } return match; }, PSEUDO: function(match, curLoop, inplace, result, not){ if ( match[1] === "not" ) { // If we're dealing with a complex expression, or a simple one if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { match[3] = Sizzle(match[3], null, null, curLoop); } else { var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); if ( !inplace ) { result.push.apply( result, ret ); } return false; } } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { return true; } return match; }, POS: function(match){ match.unshift( true ); return match; } }, filters: { enabled: function(elem){ return elem.disabled === false && elem.type !== "hidden"; }, disabled: function(elem){ return elem.disabled === true; }, checked: function(elem){ return elem.checked === true; }, selected: function(elem){ // Accessing this property makes selected-by-default // options in Safari work properly elem.parentNode.selectedIndex; return elem.selected === true; }, parent: function(elem){ return !!elem.firstChild; }, empty: function(elem){ return !elem.firstChild; }, has: function(elem, i, match){ return !!Sizzle( match[3], elem ).length; }, header: function(elem){ return /h\d/i.test( elem.nodeName ); }, text: function(elem){ return "text" === elem.type; }, radio: function(elem){ return "radio" === elem.type; }, checkbox: function(elem){ return "checkbox" === elem.type; }, file: function(elem){ return "file" === elem.type; }, password: function(elem){ return "password" === elem.type; }, submit: function(elem){ return "submit" === elem.type; }, image: function(elem){ return "image" === elem.type; }, reset: function(elem){ return "reset" === elem.type; }, button: function(elem){ return "button" === elem.type || elem.nodeName.toLowerCase() === "button"; }, input: function(elem){ return /input|select|textarea|button/i.test(elem.nodeName); } }, setFilters: { first: function(elem, i){ return i === 0; }, last: function(elem, i, match, array){ return i === array.length - 1; }, even: function(elem, i){ return i % 2 === 0; }, odd: function(elem, i){ return i % 2 === 1; }, lt: function(elem, i, match){ return i < match[3] - 0; }, gt: function(elem, i, match){ return i > match[3] - 0; }, nth: function(elem, i, match){ return match[3] - 0 === i; }, eq: function(elem, i, match){ return match[3] - 0 === i; } }, filter: { PSEUDO: function(elem, match, i, array){ var name = match[1], filter = Expr.filters[ name ]; if ( filter ) { return filter( elem, i, match, array ); } else if ( name === "contains" ) { return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; } else if ( name === "not" ) { var not = match[3]; for ( var i = 0, l = not.length; i < l; i++ ) { if ( not[i] === elem ) { return false; } } return true; } else { Sizzle.error( "Syntax error, unrecognized expression: " + name ); } }, CHILD: function(elem, match){ var type = match[1], node = elem; switch (type) { case 'only': case 'first': while ( (node = node.previousSibling) ) { if ( node.nodeType === 1 ) { return false; } } if ( type === "first" ) { return true; } node = elem; case 'last': while ( (node = node.nextSibling) ) { if ( node.nodeType === 1 ) { return false; } } return true; case 'nth': var first = match[2], last = match[3]; if ( first === 1 && last === 0 ) { return true; } var doneName = match[0], parent = elem.parentNode; if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) { var count = 0; for ( node = parent.firstChild; node; node = node.nextSibling ) { if ( node.nodeType === 1 ) { node.nodeIndex = ++count; } } parent.sizcache = doneName; } var diff = elem.nodeIndex - last; if ( first === 0 ) { return diff === 0; } else { return ( diff % first === 0 && diff / first >= 0 ); } } }, ID: function(elem, match){ return elem.nodeType === 1 && elem.getAttribute("id") === match; }, TAG: function(elem, match){ return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match; }, CLASS: function(elem, match){ return (" " + (elem.className || elem.getAttribute("class")) + " ") .indexOf( match ) > -1; }, ATTR: function(elem, match){ var name = match[1], result = Expr.attrHandle[ name ] ? Expr.attrHandle[ name ]( elem ) : elem[ name ] != null ? elem[ name ] : elem.getAttribute( name ), value = result + "", type = match[2], check = match[4]; return result == null ? type === "!=" : type === "=" ? value === check : type === "*=" ? value.indexOf(check) >= 0 : type === "~=" ? (" " + value + " ").indexOf(check) >= 0 : !check ? value && result !== false : type === "!=" ? value !== check : type === "^=" ? value.indexOf(check) === 0 : type === "$=" ? value.substr(value.length - check.length) === check : type === "|=" ? value === check || value.substr(0, check.length + 1) === check + "-" : false; }, POS: function(elem, match, i, array){ var name = match[2], filter = Expr.setFilters[ name ]; if ( filter ) { return filter( elem, i, match, array ); } } } }; var origPOS = Expr.match.POS; for ( var type in Expr.match ) { Expr.match[ type ] = new RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source ); Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, function(all, num){ return "\\" + (num - 0 + 1); })); } var makeArray = function(array, results) { array = Array.prototype.slice.call( array, 0 ); if ( results ) { results.push.apply( results, array ); return results; } return array; }; // Perform a simple check to determine if the browser is capable of // converting a NodeList to an array using builtin methods. // Also verifies that the returned array holds DOM nodes // (which is not the case in the Blackberry browser) try { Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; // Provide a fallback method if it does not work } catch(e){ makeArray = function(array, results) { var ret = results || []; if ( toString.call(array) === "[object Array]" ) { Array.prototype.push.apply( ret, array ); } else { if ( typeof array.length === "number" ) { for ( var i = 0, l = array.length; i < l; i++ ) { ret.push( array[i] ); } } else { for ( var i = 0; array[i]; i++ ) { ret.push( array[i] ); } } } return ret; }; } var sortOrder; if ( document.documentElement.compareDocumentPosition ) { sortOrder = function( a, b ) { if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { if ( a == b ) { hasDuplicate = true; } return a.compareDocumentPosition ? -1 : 1; } var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1; if ( ret === 0 ) { hasDuplicate = true; } return ret; }; } else if ( "sourceIndex" in document.documentElement ) { sortOrder = function( a, b ) { if ( !a.sourceIndex || !b.sourceIndex ) { if ( a == b ) { hasDuplicate = true; } return a.sourceIndex ? -1 : 1; } var ret = a.sourceIndex - b.sourceIndex; if ( ret === 0 ) { hasDuplicate = true; } return ret; }; } else if ( document.createRange ) { sortOrder = function( a, b ) { if ( !a.ownerDocument || !b.ownerDocument ) { if ( a == b ) { hasDuplicate = true; } return a.ownerDocument ? -1 : 1; } var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange(); aRange.setStart(a, 0); aRange.setEnd(a, 0); bRange.setStart(b, 0); bRange.setEnd(b, 0); var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange); if ( ret === 0 ) { hasDuplicate = true; } return ret; }; } // Utility function for retreiving the text value of an array of DOM nodes function getText( elems ) { var ret = "", elem; for ( var i = 0; elems[i]; i++ ) { elem = elems[i]; // Get the text from text nodes and CDATA nodes if ( elem.nodeType === 3 || elem.nodeType === 4 ) { ret += elem.nodeValue; // Traverse everything else, except comment nodes } else if ( elem.nodeType !== 8 ) { ret += getText( elem.childNodes ); } } return ret; } // Check to see if the browser returns elements by name when // querying by getElementById (and provide a workaround) (function(){ // We're going to inject a fake input element with a specified name var form = document.createElement("div"), id = "script" + (new Date).getTime(); form.innerHTML = ""; // Inject it into the root element, check its status, and remove it quickly var root = document.documentElement; root.insertBefore( form, root.firstChild ); // The workaround has to do additional checks after a getElementById // Which slows things down for other browsers (hence the branching) if ( document.getElementById( id ) ) { Expr.find.ID = function(match, context, isXML){ if ( typeof context.getElementById !== "undefined" && !isXML ) { var m = context.getElementById(match[1]); return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : []; } }; Expr.filter.ID = function(elem, match){ var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); return elem.nodeType === 1 && node && node.nodeValue === match; }; } root.removeChild( form ); root = form = null; // release memory in IE })(); (function(){ // Check to see if the browser returns only elements // when doing getElementsByTagName("*") // Create a fake element var div = document.createElement("div"); div.appendChild( document.createComment("") ); // Make sure no comments are found if ( div.getElementsByTagName("*").length > 0 ) { Expr.find.TAG = function(match, context){ var results = context.getElementsByTagName(match[1]); // Filter out possible comments if ( match[1] === "*" ) { var tmp = []; for ( var i = 0; results[i]; i++ ) { if ( results[i].nodeType === 1 ) { tmp.push( results[i] ); } } results = tmp; } return results; }; } // Check to see if an attribute returns normalized href attributes div.innerHTML = ""; if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && div.firstChild.getAttribute("href") !== "#" ) { Expr.attrHandle.href = function(elem){ return elem.getAttribute("href", 2); }; } div = null; // release memory in IE })(); if ( document.querySelectorAll ) { (function(){ var oldSizzle = Sizzle, div = document.createElement("div"); div.innerHTML = "

    "; // Safari can't handle uppercase or unicode characters when // in quirks mode. if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { return; } Sizzle = function(query, context, extra, seed){ context = context || document; // Only use querySelectorAll on non-XML documents // (ID selectors don't work in non-HTML documents) if ( !seed && context.nodeType === 9 && !isXML(context) ) { try { return makeArray( context.querySelectorAll(query), extra ); } catch(e){} } return oldSizzle(query, context, extra, seed); }; for ( var prop in oldSizzle ) { Sizzle[ prop ] = oldSizzle[ prop ]; } div = null; // release memory in IE })(); } (function(){ var div = document.createElement("div"); div.innerHTML = "
    "; // Opera can't find a second classname (in 9.6) // Also, make sure that getElementsByClassName actually exists if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { return; } // Safari caches class attributes, doesn't catch changes (in 3.2) div.lastChild.className = "e"; if ( div.getElementsByClassName("e").length === 1 ) { return; } Expr.order.splice(1, 0, "CLASS"); Expr.find.CLASS = function(match, context, isXML) { if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { return context.getElementsByClassName(match[1]); } }; div = null; // release memory in IE })(); function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { for ( var i = 0, l = checkSet.length; i < l; i++ ) { var elem = checkSet[i]; if ( elem ) { elem = elem[dir]; var match = false; while ( elem ) { if ( elem.sizcache === doneName ) { match = checkSet[elem.sizset]; break; } if ( elem.nodeType === 1 && !isXML ){ elem.sizcache = doneName; elem.sizset = i; } if ( elem.nodeName.toLowerCase() === cur ) { match = elem; break; } elem = elem[dir]; } checkSet[i] = match; } } } function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { for ( var i = 0, l = checkSet.length; i < l; i++ ) { var elem = checkSet[i]; if ( elem ) { elem = elem[dir]; var match = false; while ( elem ) { if ( elem.sizcache === doneName ) { match = checkSet[elem.sizset]; break; } if ( elem.nodeType === 1 ) { if ( !isXML ) { elem.sizcache = doneName; elem.sizset = i; } if ( typeof cur !== "string" ) { if ( elem === cur ) { match = true; break; } } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { match = elem; break; } } elem = elem[dir]; } checkSet[i] = match; } } } var contains = document.compareDocumentPosition ? function(a, b){ return !!(a.compareDocumentPosition(b) & 16); } : function(a, b){ return a !== b && (a.contains ? a.contains(b) : true); }; var isXML = function(elem){ // documentElement is verified for cases where it doesn't yet exist // (such as loading iframes in IE - #4833) var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; return documentElement ? documentElement.nodeName !== "HTML" : false; }; var posProcess = function(selector, context){ var tmpSet = [], later = "", match, root = context.nodeType ? [context] : context; // Position selectors must be done after the filter // And so must :not(positional) so we move all PSEUDOs to the end while ( (match = Expr.match.PSEUDO.exec( selector )) ) { later += match[0]; selector = selector.replace( Expr.match.PSEUDO, "" ); } selector = Expr.relative[selector] ? selector + "*" : selector; for ( var i = 0, l = root.length; i < l; i++ ) { Sizzle( selector, root[i], tmpSet ); } return Sizzle.filter( later, tmpSet ); }; // EXPOSE jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[":"] = jQuery.expr.filters; jQuery.unique = Sizzle.uniqueSort; jQuery.text = getText; jQuery.isXMLDoc = isXML; jQuery.contains = contains; return; window.Sizzle = Sizzle; })(); var runtil = /Until$/, rparentsprev = /^(?:parents|prevUntil|prevAll)/, // Note: This RegExp should be improved, or likely pulled from Sizzle rmultiselector = /,/, slice = Array.prototype.slice; // Implement the identical functionality for filter and not var winnow = function( elements, qualifier, keep ) { if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep(elements, function( elem, i ) { return !!qualifier.call( elem, i, elem ) === keep; }); } else if ( qualifier.nodeType ) { return jQuery.grep(elements, function( elem, i ) { return (elem === qualifier) === keep; }); } else if ( typeof qualifier === "string" ) { var filtered = jQuery.grep(elements, function( elem ) { return elem.nodeType === 1; }); if ( isSimple.test( qualifier ) ) { return jQuery.filter(qualifier, filtered, !keep); } else { qualifier = jQuery.filter( qualifier, filtered ); } } return jQuery.grep(elements, function( elem, i ) { return (jQuery.inArray( elem, qualifier ) >= 0) === keep; }); }; jQuery.fn.extend({ find: function( selector ) { var ret = this.pushStack( "", "find", selector ), length = 0; for ( var i = 0, l = this.length; i < l; i++ ) { length = ret.length; jQuery.find( selector, this[i], ret ); if ( i > 0 ) { // Make sure that the results are unique for ( var n = length; n < ret.length; n++ ) { for ( var r = 0; r < length; r++ ) { if ( ret[r] === ret[n] ) { ret.splice(n--, 1); break; } } } } } return ret; }, has: function( target ) { var targets = jQuery( target ); return this.filter(function() { for ( var i = 0, l = targets.length; i < l; i++ ) { if ( jQuery.contains( this, targets[i] ) ) { return true; } } }); }, not: function( selector ) { return this.pushStack( winnow(this, selector, false), "not", selector); }, filter: function( selector ) { return this.pushStack( winnow(this, selector, true), "filter", selector ); }, is: function( selector ) { return !!selector && jQuery.filter( selector, this ).length > 0; }, closest: function( selectors, context ) { if ( jQuery.isArray( selectors ) ) { var ret = [], cur = this[0], match, matches = {}, selector; if ( cur && selectors.length ) { for ( var i = 0, l = selectors.length; i < l; i++ ) { selector = selectors[i]; if ( !matches[selector] ) { matches[selector] = jQuery.expr.match.POS.test( selector ) ? jQuery( selector, context || this.context ) : selector; } } while ( cur && cur.ownerDocument && cur !== context ) { for ( selector in matches ) { match = matches[selector]; if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) { ret.push({ selector: selector, elem: cur }); delete matches[selector]; } } cur = cur.parentNode; } } return ret; } var pos = jQuery.expr.match.POS.test( selectors ) ? jQuery( selectors, context || this.context ) : null; return this.map(function( i, cur ) { while ( cur && cur.ownerDocument && cur !== context ) { if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selectors) ) { return cur; } cur = cur.parentNode; } return null; }); }, // Determine the position of an element within // the matched set of elements index: function( elem ) { if ( !elem || typeof elem === "string" ) { return jQuery.inArray( this[0], // If it receives a string, the selector is used // If it receives nothing, the siblings are used elem ? jQuery( elem ) : this.parent().children() ); } // Locate the position of the desired element return jQuery.inArray( // If it receives a jQuery object, the first element is used elem.jquery ? elem[0] : elem, this ); }, add: function( selector, context ) { var set = typeof selector === "string" ? jQuery( selector, context || this.context ) : jQuery.makeArray( selector ), all = jQuery.merge( this.get(), set ); return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? all : jQuery.unique( all ) ); }, andSelf: function() { return this.add( this.prevObject ); } }); // A painfully simple check to see if an element is disconnected // from a document (should be improved, where feasible). function isDisconnected( node ) { return !node || !node.parentNode || node.parentNode.nodeType === 11; } jQuery.each({ parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { return jQuery.dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { return jQuery.dir( elem, "parentNode", until ); }, next: function( elem ) { return jQuery.nth( elem, 2, "nextSibling" ); }, prev: function( elem ) { return jQuery.nth( elem, 2, "previousSibling" ); }, nextAll: function( elem ) { return jQuery.dir( elem, "nextSibling" ); }, prevAll: function( elem ) { return jQuery.dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { return jQuery.dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { return jQuery.dir( elem, "previousSibling", until ); }, siblings: function( elem ) { return jQuery.sibling( elem.parentNode.firstChild, elem ); }, children: function( elem ) { return jQuery.sibling( elem.firstChild ); }, contents: function( elem ) { return jQuery.nodeName( elem, "iframe" ) ? elem.contentDocument || elem.contentWindow.document : jQuery.makeArray( elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var ret = jQuery.map( this, fn, until ); if ( !runtil.test( name ) ) { selector = until; } if ( selector && typeof selector === "string" ) { ret = jQuery.filter( selector, ret ); } ret = this.length > 1 ? jQuery.unique( ret ) : ret; if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { ret = ret.reverse(); } return this.pushStack( ret, name, slice.call(arguments).join(",") ); }; }); jQuery.extend({ filter: function( expr, elems, not ) { if ( not ) { expr = ":not(" + expr + ")"; } return jQuery.find.matches(expr, elems); }, dir: function( elem, dir, until ) { var matched = [], cur = elem[dir]; while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { if ( cur.nodeType === 1 ) { matched.push( cur ); } cur = cur[dir]; } return matched; }, nth: function( cur, result, dir, elem ) { result = result || 1; var num = 0; for ( ; cur; cur = cur[dir] ) { if ( cur.nodeType === 1 && ++num === result ) { break; } } return cur; }, sibling: function( n, elem ) { var r = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { r.push( n ); } } return r; } }); var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, rleadingWhitespace = /^\s+/, rxhtmlTag = /(<([\w:]+)[^>]*?)\/>/g, rselfClosing = /^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i, rtagName = /<([\w:]+)/, rtbody = /"; }, wrapMap = { option: [ 1, "" ], legend: [ 1, "
    ", "
    " ], thead: [ 1, "", "
    " ], tr: [ 2, "", "
    " ], td: [ 3, "", "
    " ], col: [ 2, "", "
    " ], area: [ 1, "", "" ], _default: [ 0, "", "" ] }; wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; // IE can't serialize and semanticscuttle-0.98.5+dfsg/www/www-header.php000066400000000000000000000014171227405131600213560ustar00rootroot00000000000000 * @author Christian Weiske * @author Eric Dane * @license GPL http://www.gnu.org/licenses/gpl.html * @link http://sourceforge.net/projects/semanticscuttle */ if ('@data_dir@' == '@' . 'data_dir@') { //non pear-install require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php'; } else { //pear installation; files are in include path require_once 'SemanticScuttle/header.php'; } ?>