diff options
Diffstat (limited to 'data')
74 files changed, 18038 insertions, 0 deletions
diff --git a/data/config.default.inc.php b/data/config.default.inc.php new file mode 100644 index 0000000..ec2be20 --- /dev/null +++ b/data/config.default.inc.php @@ -0,0 +1,557 @@ +<?php +/** + * Default configuration file for SemanticScuttle + * + * This file is included just before config.inc.php + * If there is something you want to change, copy the lines + * in your personal config.inc.php file + * + * This program is free software. You can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License. + * + * @link http://sourceforge.net/projects/semanticscuttle/ + */ + + +/*************************************************** + * HTML output configuration + */ + +/** + * The name of this site. + * + * @var string + */ +$sitename = 'SemanticScuttle'; + +/** + * The welcome message on the homepage. + * + * @var string + */ +$welcomeMessage = 'Welcome to SemanticScuttle!' + . ' Social bookmarking for small communities.'; + +/** + * HTML message appearing at the bottom of the page. + * (just above SemanticScuttle credits) + * + * @var string + */ +$footerMessage = ''; + +/** + * HTML message appearing at the top of the sidebar + * + * @var string + */ +$sidebarTopMessage = ''; + +/** + * HTML message appearing at the bottom of the sidebar + * + * @var string + */ +$sidebarBottomMessage = ''; + + + +/*************************************************** + * System configuration + */ + + +/** + * SemanticScuttle root directory. + * + * Set to NULL to autodetect the root url of the website. + * + * If your installation is in a subdirectory like + * "http://www.example.com/semanticscuttle/" then + * replace NULL by your address (between "" and with trailing '/') + * + * @var string + */ +$root = null; + +/** + * Translation from locales/ folder. + * + * Examples: de_DE, en_GB, fr_FR + * + * @var string + */ +$locale = 'en_GB'; + +/** + * If the cache shall be used (true/false) + * + * @var boolean + */ +$usecache = false; + +/** + * Cache directory. + * + * @var string + */ +$dir_cache = dirname(__FILE__) . '/cache/'; + +/** + * Use clean urls without .php filenames. + * Requires mod_rewrite (for Apache) to be active. + * + * @var boolean + */ +$cleanurls = false; + +/** + * Show debug messages. + * This setting is recommended when setting up SemanticScuttle, + * and when hacking on it. + * + * @var boolean + */ +$debugMode = false; + + + +/*************************************************** + * Database configuration + */ + +/** + * Database driver + * + * available: + * mysql4, mysqli, mysql, oracle, postgres, sqlite, db2, firebird, + * mssql, mssq-odbc + * + * @var string + */ +$dbtype = 'mysql4'; + +/** + * Database hostname/IP + * + * @var string + */ +$dbhost = 'localhost'; + +/** + * Database port. + * + * When using mysqli, leave this to null + * - connecting will fail otherwise. + * + * @var string|integer + */ +$dbport = null; + +/** + * Database username + * + * @var string + */ +$dbuser = 'username'; + +/** + * Database password + * + * @var string + */ +$dbpass = 'password'; + + +/** + * Name of database + * + * @var string + */ +$dbname = 'scuttle'; + +/** + * Database table name prefix. + * Do not use "-" since this is badly handled by MySQL. + * + * @var string + */ +$tableprefix = 'sc_'; + + + +/*************************************************** + * Users + */ + +/** + * Contact address for the site administrator. + * Used as the FROM address in password retrieval e-mails. + * + * @var string + */ +$adminemail = 'admin@example.org'; + +/** + * Array of user names who have admin rights + * + * Example: + * <code> + * $admin_users = array('adminnickname', 'user1nick', 'user2nick'); + * </code> + * + * @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'; + + + +/*************************************************** + * 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 = 'd-m-Y'; + +/** + * 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'; + +/** + * 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='; + +/** + * 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') +); + +/** + * Enable the "common bookmark description" functionality + * + * @var boolean + */ +$enableCommonBookmarkDescription = true; + + + +/**************************** + * 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', 'configincphp' +); + + + +/**************************** + * 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; + +?> diff --git a/data/config.inc.php.dist b/data/config.inc.php.dist new file mode 100644 index 0000000..2615bc6 --- /dev/null +++ b/data/config.inc.php.dist @@ -0,0 +1,106 @@ +<?php +/** + * Configuration for SemanticScuttle. + * + * Copy this file to config.inc.php and adjust it. + * + * See config.default.inc.php for more options. + */ + +/** + * The name of this site. + * + * @var string + */ +$sitename = 'SemanticScuttle'; + +/** + * The welcome message on the homepage. + * + * @var string + */ +$welcomeMessage = 'Welcome to SemanticScuttle! Social bookmarking for small communities.'; + +/** + * SemanticScuttle root directory. + * + * Set to NULL to autodetect the root url of the website. + * + * If your installation is in a subdirectory like + * "http://www.example.com/semanticscuttle/" then + * replace NULL by your address (between "" and with trailing '/') + * + * @var string + */ +$root = null; + +/** + * Translation from locales/ folder. + * + * Examples: de_DE, en_GB, fr_FR + * + * @var string + */ +$locale = 'en_GB'; + +/** + * Use clean urls without .php filenames. + * Requires mod_rewrite (for Apache) to be active. + * + * @var boolean + */ +$cleanurls = false; + +/** + * Show debug messages. + * This setting is recommended when setting up SemanticScuttle, + * and when hacking on it. + * + * @var boolean + */ +$debugMode = true; + + +/*************************************************** + * Database configuration + */ + +/** + * Database driver + * + * available: + * mysql4, mysqli, mysql, oracle, postgres, sqlite, db2, firebird, + * mssql, mssq-odbc + * + * @var string + */ +$dbtype = 'mysql4'; +/** + * Database username + * + * @var string + */ +$dbuser = 'username'; + +/** + * Database password + * + * @var string + */ +$dbpass = 'password'; + +/** + * Name of database + * + * @var string + */ +$dbname = 'scuttle'; + +/** + * Database hostname/IP + * + * @var string + */ +$dbhost = 'localhost'; + +?> diff --git a/data/locales/de_DE/LC_MESSAGES/messages.mo b/data/locales/de_DE/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..8bfe61f --- /dev/null +++ b/data/locales/de_DE/LC_MESSAGES/messages.mo diff --git a/data/locales/de_DE/LC_MESSAGES/messages.po b/data/locales/de_DE/LC_MESSAGES/messages.po new file mode 100644 index 0000000..64cf4de --- /dev/null +++ b/data/locales/de_DE/LC_MESSAGES/messages.po @@ -0,0 +1,1137 @@ +# Copyright (C) 2008 by Elmar H. Beer
+# This file is distributed under the same license as the SemanticScuttle package.
+# Elmar H. Beer <info@ehb-world.com>
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: SemanticScuttle\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2005-04-29 11:17+0200\n"
+"PO-Revision-Date: 2009-09-25 14:18+0100\n"
+"Last-Translator: Christian Weiske <cweiske@cweiske.de>\n"
+"Language-Team: de-AT <info@ehb-world.com>\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"
+
+#: ../../../about.php:25
+#: ../../../templates/toolbar.inc.php:16
+#: ../../../templates/toolbar.inc.php:25
+msgid "About"
+msgstr "Impressum"
+
+#: ../../../ajaxDelete.php:30
+msgid "You are not allowed to delete this bookmark"
+msgstr "Sie dรผrfen dieses Lesezeichen nicht lรถschen"
+
+#: ../../../ajaxDelete.php:34
+#: ../../../edit.php:78
+msgid "Failed to delete bookmark"
+msgstr "Das Lรถschen des Lesezeichens ist fehlgeschlagen."
+
+#: ../../../alltags.php:48
+msgid "All Tags"
+msgstr "Alle Schlagwรถrter"
+
+#: ../../../alltags.php:57
+#: ../../../bookmarks.php:72
+#: ../../../populartags.php:58
+#: ../../../profile.php:44
+#: ../../../rss.php:62
+#: ../../../search.php:88
+#: ../../../watch.php:34
+#: ../../../watchlist.php:61
+#, php-format
+msgid "User with username %s was not found"
+msgstr "Der Benutzer %s wurde nicht gefunden."
+
+#: ../../../bookmarkcommondescriptionedit.php:35
+#: ../../../tag2tagadd.php:31
+#: ../../../tag2tagdelete.php:31
+#: ../../../tag2tagedit.php:31
+#: ../../../tagcommondescriptionedit.php:35
+#: ../../../tagedit.php:34
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
+
+#: ../../../bookmarkcommondescriptionedit.php:45
+msgid "Bookmark common description updated"
+msgstr "Die gemeinsame Lesezeichenbeschreibung wurde aktualisiert"
+
+#: ../../../bookmarkcommondescriptionedit.php:48
+msgid "Failed to update the bookmark common description"
+msgstr "Das รndern der gemeinsamen Lesezeichenbeschreibung ist fehlgeschlagen."
+
+#: ../../../bookmarkcommondescriptionedit.php:57
+msgid "Edit Bookmark Common Description"
+msgstr "Die gemeinsame Lesezeichenbeschreibung bearbeiten."
+
+#: ../../../bookmarks.php:95
+#: ../../../edit.php:44
+msgid "Your bookmark must have a title and an address"
+msgstr "Ihr Lesezeichen muss einen Titel und eine URL haben."
+
+#: ../../../bookmarks.php:115
+#: ../../../edit.php:58
+msgid "Bookmark saved"
+msgstr "Ihr Lesezeichen wurde erfolgreich gespeichert."
+
+#: ../../../bookmarks.php:123
+#: ../../../import.php:99
+#: ../../../importNetscape.php:74
+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."
+
+#: ../../../bookmarks.php:161
+#: ../../../templates/toolbar.inc.php:14
+msgid "Add a Bookmark"
+msgstr "Lesezeichen hinzufรผgen"
+
+#: ../../../bookmarks.php:164
+msgid "Add Bookmark"
+msgstr "Lesezeichen hinzufรผgen"
+
+#: ../../../bookmarks.php:167
+msgid "You must be logged in before you can add bookmarks."
+msgstr "Sie mรผssen angemeldet sein, um ein Lesezeichen hinzuzufรผgen."
+
+#: ../../../bookmarks.php:218
+msgid "My Bookmarks"
+msgstr "Meine Lesezeichen"
+
+#: ../../../edit.php:29
+msgid "Edit Bookmark"
+msgstr "Lesezeichen bearbeiten"
+
+#: ../../../edit.php:34
+#, php-format
+msgid "Bookmark with id %s not was not found"
+msgstr "Das Lesezeichen mit der ID %s wurde nicht gefunden."
+
+#: ../../../edit.php:39
+msgid "You are not allowed to edit this bookmark"
+msgstr "Sie dรผrfen dieses Lesezeichen nicht bearbeiten"
+
+#: ../../../edit.php:55
+msgid "Error while saving your bookmark"
+msgstr "Beim Speichern des Lesezeichens ist ein Fehler aufgetreten"
+
+#: ../../../edit.php:88
+#: ../../../templates/editprofile.tpl.php:51
+msgid "Save Changes"
+msgstr "รnderungen speichern"
+
+#: ../../../functions.inc.php:108
+msgid "message_die() was called multiple times."
+msgstr "message_die() wurde mehrmals aufgerufen."
+
+#: ../../../functions.inc.php:120
+msgid "SQL Error"
+msgstr "SQL-Fehler"
+
+#: ../../../functions.inc.php:126
+msgid "Line"
+msgstr "Zeile"
+
+#: ../../../functions.inc.php:126
+#: ../../../templates/importDelicious.tpl.php:8
+#: ../../../templates/importNetscape.tpl.php:9
+msgid "File"
+msgstr "Datei"
+
+#: ../../../functions.inc.php:132
+msgid "Information"
+msgstr "Information"
+
+#: ../../../functions.inc.php:137
+msgid "Critical Information"
+msgstr "Kritische Information"
+
+#: ../../../functions.inc.php:142
+msgid "An error occured"
+msgstr "Es ist ein Fehler aufgetreten."
+
+#: ../../../functions.inc.php:145
+msgid "General Error"
+msgstr "Allgemeiner Fehler"
+
+#: ../../../functions.inc.php:153
+msgid "An critical error occured"
+msgstr "Es ist ein kritischer Fehler aufgetreten."
+
+#: ../../../functions.inc.php:156
+msgid "Critical Error"
+msgstr "Kritischer Fehler"
+
+#: ../../../functions.inc.php:165
+msgid "DEBUG MODE"
+msgstr "Debugmodus"
+
+#: ../../../history.php:65
+msgid "History"
+msgstr "Verlauf"
+
+#: ../../../history.php:66
+#, php-format
+msgid "History for %s"
+msgstr "Verlauf von %s"
+
+#: ../../../history.php:82
+msgid "Address was not found"
+msgstr "Die Adresse wurde nicht gefunden."
+
+#: ../../../import.php:41
+msgid "Could not open XML input"
+msgstr "Die XML-Daten konnten nicht geรถffnet werden."
+
+#: ../../../import.php:45
+#, php-format
+msgid "XML error: %s at line %d"
+msgstr "XML-Fehler: %s in Zeile %d"
+
+#: ../../../import.php:54
+msgid "Import Bookmarks from del.icio.us"
+msgstr "Lesezeichen von del.icio.us importieren"
+
+#: ../../../import.php:86
+#: ../../../importNetscape.php:64
+msgid "You have already submitted this bookmark."
+msgstr "Sie haben dieses Lesezeichen bereits gespeichert."
+
+#: ../../../import.php:97
+#: ../../../importNetscape.php:72
+msgid "Bookmark imported."
+msgstr "Lesezeichen importiert."
+
+#: ../../../importNetscape.php:81
+msgid "Import Bookmarks from Browser File"
+msgstr "Lesezeichen aus Browser-Lesezeichendatei importieren"
+
+#: ../../../index.php:32
+msgid "You have now logged out"
+msgstr "Sie sind jetzt abgemeldet."
+
+#: ../../../index.php:39
+#, php-format
+msgid "%s: Recent bookmarks"
+msgstr "%s: Neue Lesezeichen"
+
+#: ../../../index.php:73
+msgid "Store, share and tag your favourite links"
+msgstr "Speichern, teilen und kategorisieren Sie Ihre Lesezeichen!"
+
+#: ../../../index.php:74
+msgid "All Bookmarks"
+msgstr "Alle Lesezeichen"
+
+#: ../../../jsScuttle.php:22
+#: ../../../templates/tag2tagadd.tpl.php:21
+#: ../../../templates/tag2tagdelete.tpl.php:13
+#: ../../../templates/tag2tagedit.tpl.php:14
+#: ../../../templates/tag2tagedit.tpl.php:35
+#: ../../../templates/tagdelete.tpl.php:6
+msgid "Are you sure?"
+msgstr "Sind Sie sicher?"
+
+#: ../../../jsScuttle.php:22
+#: ../../../templates/tag2tagdelete.tpl.php:15
+#: ../../../templates/tag2tagedit.tpl.php:16
+#: ../../../templates/tagdelete.tpl.php:8
+msgid "Yes"
+msgstr "Ja"
+
+#: ../../../jsScuttle.php:22
+#: ../../../templates/tag2tagdelete.tpl.php:16
+#: ../../../templates/tag2tagedit.tpl.php:17
+#: ../../../templates/tagdelete.tpl.php:9
+msgid "No"
+msgstr "Nein"
+
+#: ../../../jsScuttle.php:68
+msgid "Available"
+msgstr "Vorhanden"
+
+#: ../../../jsScuttle.php:71
+msgid "Not Available"
+msgstr "Nicht vorhanden"
+
+#: ../../../login.php:38
+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."
+
+#: ../../../login.php:48
+#: ../../../templates/login.tpl.php:26
+#: ../../../templates/toolbar.inc.php:26
+msgid "Log In"
+msgstr "Anmelden"
+
+#: ../../../password.php:31
+msgid "You must enter your username."
+msgstr "Sie mรผssen Ihren Benutzernamen eingeben."
+
+#: ../../../password.php:35
+msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address."
+msgstr "Sie mรผssen Ihre <abbr title=\"electronic mail\">E-Mail</abbr>adresse eingeben."
+
+#: ../../../password.php:42
+msgid "No matches found for that username."
+msgstr "Keine Ergebnisse fรผr diesen Benutzernamen gefunden."
+
+#: ../../../password.php:45
+msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address."
+msgstr "Keine Ergebnisse fรผr diesen Benutzernamen und diese <abbr title=\"electronic mail\">E-Mail</abbr>adresse gefunden."
+
+#: ../../../password.php:53
+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."
+
+#: ../../../password.php:57
+msgid "Your new password is:"
+msgstr "Ihr neues Passwort lautet:"
+
+#: ../../../password.php:57
+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."
+
+#: ../../../password.php:60
+#, php-format
+msgid "%s Account Information"
+msgstr "%s Zugangsinformationen"
+
+#: ../../../password.php:62
+#, php-format
+msgid "New password generated and sent to %s"
+msgstr "Ein neues Passwort wurde erstellt und an %s gesandt."
+
+#: ../../../password.php:69
+msgid "Forgotten Password"
+msgstr "Vergessenes Passwort"
+
+#: ../../../populartags.php:49
+#: ../../../templates/dynamictags.inc.php:101
+#: ../../../templates/sidebar.block.common.php:9
+#: ../../../templates/sidebar.block.menu.php:68
+#: ../../../templates/sidebar.block.popular.php:15
+#: ../../../templates/sidebar.block.recent.php:30
+#: ../../../templates/toolbar.inc.php:24
+msgid "Popular Tags"
+msgstr "Populรคre Schlagwรถrter"
+
+#: ../../../profile.php:52
+#: ../../../watchlist.php:116
+msgid "Username was not specified"
+msgstr "Der Benutzername wurde nicht angegeben."
+
+#: ../../../profile.php:58
+msgid "My Profile"
+msgstr "Mein Profil"
+
+#: ../../../profile.php:60
+#: ../../../templates/toolbar.inc.php:13
+msgid "Profile"
+msgstr "Profil"
+
+#: ../../../profile.php:78
+msgid "Password and confirmation do not match."
+msgstr "Das Passwort und dessen Bestรคtigung ist nicht identisch."
+
+#: ../../../profile.php:82
+msgid "Password must be at least 6 characters long."
+msgstr "Das Passwort muss mindestens sechs Zeichen lang sein."
+
+#: ../../../profile.php:86
+msgid "E-mail address is not valid."
+msgstr "Die E-Mailadresse ist nicht gรผltig."
+
+#: ../../../profile.php:90
+msgid "An error occurred while saving your changes."
+msgstr "Beim Speichern Ihrer รnderungen trat ein Fehler auf."
+
+#: ../../../profile.php:92
+msgid "Changes saved."
+msgstr "Die รnderungen wurden gespeichert."
+
+#: ../../../register.php:33
+msgid "You <em>must</em> enter a username, password and e-mail address."
+msgstr "Sie mรผssen einen Benutzernamen, ein Passwort und eine <abbr title=\"electronic mail\">E-Mail</abbr>addresse eingeben."
+
+#: ../../../register.php:37
+msgid "This username has been reserved, please make another choice."
+msgstr "Dieser Benutzername ist bereits reserviert. Bitte treffen Sie eine andere Wahl."
+
+#: ../../../register.php:41
+msgid "This username already exists, please make another choice."
+msgstr "Dieser Benutzername existiert bereits. Bitte treffen Sie eine andere Wahl."
+
+#: ../../../register.php:45
+msgid "E-mail address is not valid. Please try again."
+msgstr "Diese E-Mailadresse ist nicht gรผltig. Bitte versuchen Sie es erneut."
+
+#: ../../../register.php:49
+msgid "Antispam answer is not valid. Please try again."
+msgstr "Die Sicherheitsfrage wurde nicht korrekt beantwortet. Bitte versuchen Sie es erneut."
+
+#: ../../../register.php:58
+msgid "You have successfully registered. Enjoy!"
+msgstr "Ihre Registrierung war erfolgreich!"
+
+#: ../../../register.php:60
+msgid "Registration failed. Please try again."
+msgstr "Ihre Registrierung ist fehlgeschlagen. Bitte versuchen Sie es erneut."
+
+#: ../../../register.php:66
+#: ../../../templates/register.tpl.php:41
+#: ../../../templates/toolbar.inc.php:27
+msgid "Register"
+msgstr "Registrieren"
+
+#: ../../../rss.php:79
+#, php-format
+msgid "Recent bookmarks posted to %s"
+msgstr "Neueste Lesezeichen in %s"
+
+#: ../../../search.inc.php:13
+#: ../../../search.inc.php:41
+msgid "Search"
+msgstr "Suche"
+
+#: ../../../search.inc.php:19
+msgid "this user's bookmarks"
+msgstr "Lesezeichen des Benutzers"
+
+#: ../../../search.inc.php:24
+msgid "my bookmarks"
+msgstr "meine Lesezeichen"
+
+#: ../../../search.inc.php:25
+msgid "my watchlist"
+msgstr "meine Beobachtungsliste"
+
+#: ../../../search.inc.php:29
+msgid "all bookmarks"
+msgstr "alle Lesezeichen"
+
+#: ../../../search.inc.php:32
+msgid "for"
+msgstr "nach"
+
+#: ../../../search.php:59
+#: ../../../search.php:108
+msgid "Search Bookmarks"
+msgstr "Suche Lesezeichen"
+
+#: ../../../search.php:65
+msgid "Search Results"
+msgstr "Suche Ergebnisse"
+
+#: ../../../tag2tagadd.php:44
+msgid "Tag link created"
+msgstr "Der Weblink fรผr das Schlagwort wurde erfolgreich erstellt."
+
+#: ../../../tag2tagadd.php:47
+msgid "Failed to create the link"
+msgstr "Der Weblink fรผr das Schlagwort konnte nicht erstellt werden."
+
+#: ../../../tag2tagadd.php:58
+msgid "Add Tag Link"
+msgstr "Eine Verbindung fรผr das Schlagwort hinzufรผgen"
+
+#: ../../../tag2tagdelete.php:43
+#: ../../../tag2tagedit.php:43
+msgid "Tag link deleted"
+msgstr "Der Weblink fรผr das Schlagwort wurde erfolgreich gelรถscht."
+
+#: ../../../tag2tagdelete.php:46
+#: ../../../tag2tagedit.php:46
+msgid "Failed to delete the link"
+msgstr "Das Lรถschen des Weblinks ist fehlgeschlagen."
+
+#: ../../../tag2tagdelete.php:58
+msgid "Delete Link Between Tags"
+msgstr "Eine Verbindung zwischen Schlagwรถrtern lรถschen"
+
+#: ../../../tag2tagedit.php:58
+msgid "Edit Link Between Tags"
+msgstr "Einen Weblink zwischen Schlagwรถrtern editieren"
+
+#: ../../../tagcommondescriptionedit.php:45
+msgid "Tag common description updated"
+msgstr "Die gemeinsame Beschreibung des Schlagwortes wurde erfolgreich aktualisiert."
+
+#: ../../../tagcommondescriptionedit.php:48
+msgid "Failed to update the tag common description"
+msgstr "รndern der gemeinsame Beschreibung des Schlagwortes ist fehlgeschlagen."
+
+#: ../../../tagcommondescriptionedit.php:55
+#: ../../../templates/sidebar.block.tagactions.php:27
+msgid "Edit Tag Common Description"
+msgstr "Die gemeinsame Beschreibung des Schlagwortes bearbeiten."
+
+#: ../../../tagdelete.php:33
+msgid "Tag deleted"
+msgstr "Das Schlagwort wurde erfolgreich gelรถscht."
+
+#: ../../../tagdelete.php:36
+msgid "Failed to delete the tag"
+msgstr "Das Lรถschen des Schlagwortes ist fehlgeschlagen."
+
+#: ../../../tagdelete.php:44
+#: ../../../templates/sidebar.block.tagactions.php:23
+msgid "Delete Tag"
+msgstr "Das Schlagwort lรถschen."
+
+#: ../../../tagedit.php:44
+msgid "Tag description updated"
+msgstr "Die Schlagwortbeschreibung wurde aktualisiert."
+
+#: ../../../tagedit.php:47
+msgid "Failed to update the tag description"
+msgstr "Das Aktualisieren der Schlagwortbeschreibung ist fehlgeschlagen"
+
+#: ../../../tagedit.php:54
+#: ../../../templates/sidebar.block.tagactions.php:25
+msgid "Edit Tag Description"
+msgstr "Die Schlagwortbeschreibung bearbeiten"
+
+#: ../../../tagrename.php:50
+msgid "Tag renamed"
+msgstr "Das Schlagwort wurde umbenannt."
+
+#: ../../../tagrename.php:54
+msgid "Failed to rename the tag"
+msgstr "Die Umbenennung des Schlagwortes ist fehlgeschlagen."
+
+#: ../../../tagrename.php:61
+#: ../../../templates/sidebar.block.tagactions.php:10
+msgid "Rename Tag"
+msgstr "Das Schlagwort umbenennen."
+
+#: ../../../tags.php:38
+#: ../../../templates/editbookmark.tpl.php:44
+#: ../../../templates/toolbar.inc.php:11
+msgid "Tags"
+msgstr "Schlagwรถrter"
+
+#: ../../../users.php:33
+msgid "Users"
+msgstr "Benutzer"
+
+#: ../../../watch.php:46
+msgid "User removed from your watchlist"
+msgstr "Der Benutzer wurde aus Ihrer Beobachtungsliste entfernt."
+
+#: ../../../watch.php:48
+msgid "User added to your watchlist"
+msgstr "Der Benutzer wurde zu Ihrer Beobachtungsliste hinzugefรผgt."
+
+#: ../../../watchlist.php:103
+msgid "My Watchlist"
+msgstr "Meine Beobachtungsliste"
+
+#: ../../../watchlist.php:105
+#: ../../../templates/toolbar.inc.php:12
+msgid "Watchlist"
+msgstr "Beobachtungsliste"
+
+#: ../../../templates/about.tpl.php:6
+msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere."
+msgstr "<strong>Speichern</ strong> Sie Ihre sรคmtlichen Lesezeichen an einem Ort, von รผberall zugรคnglich."
+
+#: ../../../templates/about.tpl.php:7
+msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private."
+msgstr "<strong>Teilen</ strong> Sie Ihre Lesezeichen mit allen anderen, mit Freunden auf Ihrer Beobachtungsliste oder einfach privat fรผr Sie persรถnlich."
+
+#: ../../../templates/about.tpl.php:8
+msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders."
+msgstr "<strong>Kategorisieren</ strong> Sie Ihre Lesezeichen mittels unbegrenzten Schlagwรถrtern, anstatt Sie in unรผbersichtlichen Ordnern zu speichern."
+
+#: ../../../templates/about.tpl.php:9
+msgid "Register now"
+msgstr "Registrieren Sie sich jetzt"
+
+#: ../../../templates/about.tpl.php:9
+#, php-format
+msgid " to start using %s!"
+msgstr "um %s zu nutzen!"
+
+#: ../../../templates/about.tpl.php:12
+msgid "Geek Stuff"
+msgstr "Softwareinformationen"
+
+#: ../../../templates/about.tpl.php:14
+msgid "is licensed under the "
+msgstr "ist lizenziert unter der"
+
+#: ../../../templates/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"
+
+#: ../../../templates/about.tpl.php:15
+#, php-format
+msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">-API </ abbr></ a>. 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."
+
+#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:15
+#: ../../../templates/bookmarks.tpl.php:67
+#: ../../../templates/editbookmark.tpl.php:34
+msgid "Title"
+msgstr "Titel"
+
+#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:20
+#: ../../../templates/editbookmark.tpl.php:39
+#: ../../../templates/editprofile.tpl.php:46
+#: ../../../templates/profile.tpl.php:28
+#: ../../../templates/tagcommondescriptionedit.tpl.php:13
+#: ../../../templates/tagedit.tpl.php:13
+msgid "Description"
+msgstr "Beschreibung"
+
+#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:28
+#: ../../../templates/tagcommondescriptionedit.tpl.php:21
+msgid "Last modification:"
+msgstr "Letzte รnderung:"
+
+#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:39
+#: ../../../templates/tagcommondescriptionedit.tpl.php:32
+#: ../../../templates/tagedit.tpl.php:19
+msgid "Update"
+msgstr "Aktualisieren"
+
+#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:40
+#: ../../../templates/tag2tagadd.tpl.php:24
+#: ../../../templates/tag2tagedit.tpl.php:38
+#: ../../../templates/tagcommondescriptionedit.tpl.php:33
+#: ../../../templates/tagedit.tpl.php:20
+#: ../../../templates/tagrename.tpl.php:25
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: ../../../templates/bookmarks.tpl.php:34
+#: ../../../templates/bookmarks.tpl.php:37
+msgid "edit common description"
+msgstr "Die gemeinsame Beschreibung bearbeiten"
+
+#: ../../../templates/bookmarks.tpl.php:64
+msgid "bookmark(s)"
+msgstr "Lesezeichen"
+
+#: ../../../templates/bookmarks.tpl.php:65
+#: ../../../templates/tags.tpl.php:10
+#: ../../../templates/users.tpl.php:8
+msgid "Sort by:"
+msgstr "Sortieren nach:"
+
+#: ../../../templates/bookmarks.tpl.php:66
+msgid "Date"
+msgstr "Datum"
+
+#: ../../../templates/bookmarks.tpl.php:71
+msgid "URL"
+msgstr "URL"
+
+#: ../../../templates/bookmarks.tpl.php:81
+msgid "Bookmarks from other users for this tag"
+msgstr "Lesezeichen anderer Benutzer mit diesem Schlagwort"
+
+#: ../../../templates/bookmarks.tpl.php:86
+msgid "Only your bookmarks for this tag"
+msgstr "Nur meine Lesezeichen fรผr dieses Schlagwort"
+
+#: ../../../templates/bookmarks.tpl.php:129
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: ../../../templates/bookmarks.tpl.php:129
+msgid "Delete"
+msgstr "Lรถschen"
+
+#: ../../../templates/bookmarks.tpl.php:135
+msgid "by"
+msgstr "von"
+
+#: ../../../templates/bookmarks.tpl.php:147
+#, php-format
+msgid " and %s1 other%s"
+msgstr " und %s1 anderen Person%s"
+
+#: ../../../templates/bookmarks.tpl.php:150
+#, php-format
+msgid " and %2$s%1$s others%3$s"
+msgstr " und %2$s%1$s anderer Person%3$s"
+
+#: ../../../templates/bookmarks.tpl.php:159
+msgid "Copy"
+msgstr "Kopieren"
+
+#: ../../../templates/bookmarks.tpl.php:218
+#: ../../../templates/bookmarks.tpl.php:224
+msgid "First"
+msgstr "neueste Lesezeichen"
+
+#: ../../../templates/bookmarks.tpl.php:219
+#: ../../../templates/bookmarks.tpl.php:225
+msgid "Previous"
+msgstr "vorherige"
+
+#: ../../../templates/bookmarks.tpl.php:232
+#: ../../../templates/bookmarks.tpl.php:235
+msgid "Next"
+msgstr "weitere"
+
+#: ../../../templates/bookmarks.tpl.php:233
+#: ../../../templates/bookmarks.tpl.php:236
+msgid "Last"
+msgstr "รคlteste Lesezeichen"
+
+#: ../../../templates/bookmarks.tpl.php:246
+#, php-format
+msgid "Page %d of %d"
+msgstr "Seite %d von %d"
+
+#: ../../../templates/bookmarks.tpl.php:252
+msgid "No bookmarks available"
+msgstr "Leider sind keine Lesezeichen vorhanden."
+
+#: ../../../templates/dynamictags.inc.php:108
+#: ../../../templates/sidebar.block.common.php:20
+#: ../../../templates/sidebar.block.popular.php:26
+#: ../../../templates/sidebar.block.recent.php:25
+#: ../../../templates/tags.tpl.php:19
+msgid "bookmark"
+msgstr "Lesezeichen"
+
+#: ../../../templates/editbookmark.tpl.php:29
+msgid "Address"
+msgstr "Webadresse"
+
+#: ../../../templates/editbookmark.tpl.php:31
+#: ../../../templates/editbookmark.tpl.php:36
+#: ../../../templates/editprofile.tpl.php:30
+#: ../../../templates/tagrename.tpl.php:14
+#: ../../../templates/tagrename.tpl.php:19
+msgid "Required"
+msgstr "Erforderlich"
+
+#: ../../../templates/editbookmark.tpl.php:46
+msgid "Comma-separated"
+msgstr "kommagetrennt"
+
+#: ../../../templates/editbookmark.tpl.php:50
+#: ../../../templates/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)"
+
+#: ../../../templates/editbookmark.tpl.php:54
+#: ../../../templates/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)"
+
+#: ../../../templates/editbookmark.tpl.php:57
+#: ../../../templates/importDelicious.tpl.php:15
+#: ../../../templates/importNetscape.tpl.php:16
+msgid "Privacy"
+msgstr "Status"
+
+#: ../../../templates/editbookmark.tpl.php:60
+#: ../../../templates/importDelicious.tpl.php:18
+#: ../../../templates/importNetscape.tpl.php:19
+msgid "Public"
+msgstr "รffentlich"
+
+#: ../../../templates/editbookmark.tpl.php:61
+msgid "Shared with Watch List"
+msgstr "Beobachtungsliste"
+
+#: ../../../templates/editbookmark.tpl.php:62
+#: ../../../templates/importDelicious.tpl.php:20
+#: ../../../templates/importNetscape.tpl.php:21
+msgid "Private"
+msgstr "Privat"
+
+#: ../../../templates/editbookmark.tpl.php:74
+msgid "Delete Bookmark"
+msgstr "Lesezeichen lรถschen"
+
+#: ../../../templates/editbookmark.tpl.php:101
+msgid "Bookmarklet"
+msgstr "Bookmarklet"
+
+#: ../../../templates/editbookmark.tpl.php:102
+#, 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"
+
+#: ../../../templates/editbookmark.tpl.php:114
+#, php-format
+msgid "Post to %s"
+msgstr "Lesezeichen zu %s hinzufรผgen."
+
+#: ../../../templates/editbookmark.tpl.php:115
+#, php-format
+msgid "Post to %s (Pop-up)"
+msgstr "Lesezeichen zu %s hinzufรผgen (Pop-up)"
+
+#: ../../../templates/editbookmark.tpl.php:119
+#: ../../../templates/importDelicious.tpl.php:26
+#: ../../../templates/importNetscape.tpl.php:27
+msgid "Import"
+msgstr "Importieren"
+
+#: ../../../templates/editbookmark.tpl.php:121
+msgid "Import bookmarks from bookmark file"
+msgstr "Die Lesezeichen aus einer Lesezeichendatei importieren."
+
+#: ../../../templates/editbookmark.tpl.php:121
+msgid "Internet Explorer, Mozilla Firefox and Netscape"
+msgstr "Microsoft Internet Explorer, Mozilla Firefox und Netscape"
+
+#: ../../../templates/editbookmark.tpl.php:122
+msgid "Import bookmarks from del.icio.us"
+msgstr "Lesezeichen von del.icio.us importieren."
+
+#: ../../../templates/editprofile.tpl.php:9
+msgid "Account Details"
+msgstr "Kontodetails"
+
+#: ../../../templates/editprofile.tpl.php:13
+#: ../../../templates/login.tpl.php:15
+#: ../../../templates/password.tpl.php:10
+#: ../../../templates/profile.tpl.php:7
+#: ../../../templates/register.tpl.php:16
+msgid "Username"
+msgstr "Benutzername"
+
+#: ../../../templates/editprofile.tpl.php:18
+msgid "New Password"
+msgstr "Neues Passwort"
+
+#: ../../../templates/editprofile.tpl.php:23
+msgid "Confirm Password"
+msgstr "Passwort bestรคtigen"
+
+#: ../../../templates/editprofile.tpl.php:28
+#: ../../../templates/password.tpl.php:14
+#: ../../../templates/register.tpl.php:26
+msgid "E-mail"
+msgstr "E-Mail"
+
+#: ../../../templates/editprofile.tpl.php:34
+msgid "Personal Details"
+msgstr "Persรถnliche Details"
+
+#: ../../../templates/editprofile.tpl.php:38
+#: ../../../templates/profile.tpl.php:12
+msgid "Name"
+msgstr "Name"
+
+#: ../../../templates/editprofile.tpl.php:42
+#: ../../../templates/profile.tpl.php:18
+msgid "Homepage"
+msgstr "Homepage"
+
+#: ../../../templates/editprofile.tpl.php:54
+#: ../../../templates/sidebar.block.tagactions.php:18
+#: ../../../templates/sidebar.block.watchstatus.php:17
+msgid "Actions"
+msgstr "Aktionen"
+
+#: ../../../templates/editprofile.tpl.php:57
+msgid "Export bookmarks"
+msgstr "Lesezeichen exportieren"
+
+#: ../../../templates/editprofile.tpl.php:59
+msgid "HTML file (for browsers)"
+msgstr "HTML-Datei (fรผr Webbrowser)"
+
+#: ../../../templates/editprofile.tpl.php:60
+msgid "XML file (like del.icio.us)"
+msgstr "XML-Datei (fรผr del.icio.us etc.)"
+
+#: ../../../templates/error.404.tpl.php:5
+msgid "Not Found"
+msgstr "Nicht gefunden!"
+
+#: ../../../templates/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"
+
+#: ../../../templates/error.500.tpl.php:5
+msgid "General server error"
+msgstr "Allgemeiner Serverfehler"
+
+#: ../../../templates/error.500.tpl.php:6
+msgid "The requested URL could not be processed"
+msgstr "Die angeforderte URL konnte nicht verarbeitet werden"
+
+#: ../../../templates/importDelicious.tpl.php:19
+#: ../../../templates/importNetscape.tpl.php:20
+msgid "Shared with Watchlist"
+msgstr "Beobachtungsliste"
+
+#: ../../../templates/importDelicious.tpl.php:31
+#: ../../../templates/importNetscape.tpl.php:32
+msgid "Instructions"
+msgstr "Instruktionen"
+
+#: ../../../templates/importDelicious.tpl.php:33
+msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>"
+msgstr "Melden Sie sich <a href=\"http://del.icio.us/api/posts/all\">bei del.icio.us an</a>, um Ihre Lesezeichen zu exportieren"
+
+#: ../../../templates/importDelicious.tpl.php:34
+msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer"
+msgstr "Speichern Sie die resultierende <abbr title=\"Extensible Markup Language\">XML</abbr-Datei lokal auf Ihrem Computer"
+
+#: ../../../templates/importDelicious.tpl.php:35
+msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB"
+msgstr "Klicken Sie auf <kbd>Durchsuchen...</kbd> um die bereits gespeicherte Lesezeichendatei auszuwรคhlen. Die Dateigrรถรe darf maximal 1 MB betragen"
+
+#: ../../../templates/importDelicious.tpl.php:36
+#: ../../../templates/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"
+
+#: ../../../templates/importDelicious.tpl.php:37
+#: ../../../templates/importNetscape.tpl.php:44
+msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute"
+msgstr "Klicken Sie auf <kbd>Importieren</kbd> um die bereits lokal gespeicherte Lesezeichendatei zu importieren. Dieser Prozess kann bis zu eine Minute andauern"
+
+#: ../../../templates/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"
+
+#: ../../../templates/importNetscape.tpl.php:37
+msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites"
+msgstr "Microsoft Internet Explorer: <kbd>Datei > Importieren und Exportieren... > Favoriten exportieren"
+
+#: ../../../templates/importNetscape.tpl.php:38
+msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..."
+msgstr "Mozilla Firefox: <kbd>Lesezeichen > Lesezeichen verwalten... > Datei > Exportieren..."
+
+#: ../../../templates/importNetscape.tpl.php:39
+msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..."
+msgstr "Netscape: <kbd>Lesezeichen > Lesezeichen verwalten... > Werkzeuge > Exportieren..."
+
+#: ../../../templates/importNetscape.tpl.php:42
+msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB"
+msgstr "Klicken Sie auf <kbd>Durchsuchen...</kbd> um die bereits gespeicherte Lesezeichendatei auszuwรคhlen. Die Dateigrรถรe darf maximal 1 MB betragen"
+
+#: ../../../templates/login.tpl.php:20
+#: ../../../templates/register.tpl.php:21
+msgid "Password"
+msgstr "Passwort"
+
+#: ../../../templates/login.tpl.php:22
+msgid "Don't ask for my password for 2 weeks"
+msgstr "Zwei Wochen nicht nach meinem Passwort fragen"
+
+#: ../../../templates/login.tpl.php:30
+msgid "Forgotten your password?"
+msgstr "Haben Sie Ihr Passwort vergessen?"
+
+#: ../../../templates/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."
+
+#: ../../../templates/password.tpl.php:19
+msgid "Generate Password"
+msgstr "Passwort generieren"
+
+#: ../../../templates/profile.tpl.php:23
+msgid "Member Since"
+msgstr "Mitglied seit"
+
+#: ../../../templates/profile.tpl.php:35
+#: ../../../templates/sidebar.block.watchlist.php:8
+msgid "Watching"
+msgstr "Beobachten"
+
+#: ../../../templates/profile.tpl.php:50
+msgid "Watched By"
+msgstr "Beobachtet von"
+
+#: ../../../templates/profile.tpl.php:63
+#: ../../../templates/toolbar.inc.php:10
+msgid "Bookmarks"
+msgstr "Lesezeichen"
+
+#: ../../../templates/profile.tpl.php:64
+msgid "Go to bookmarks"
+msgstr "Zu den Lesezeichen"
+
+#: ../../../templates/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"
+
+#: ../../../templates/register.tpl.php:33
+msgid "Antispam question"
+msgstr "Sicherheitsfrage"
+
+#: ../../../templates/sidebar.block.linked.php:41
+msgid "Linked Tags"
+msgstr "Ausgewรคhlte Schlagwรถrter"
+
+#: ../../../templates/sidebar.block.linked.php:55
+#: ../../../templates/sidebar.block.menu.php:40
+msgid "Add new link"
+msgstr "Einen neuen Navigationslink hinzufรผgen."
+
+#: ../../../templates/sidebar.block.linked.php:56
+#: ../../../templates/sidebar.block.menu.php:41
+msgid "Delete link"
+msgstr "Einen Navigationslink lรถschen."
+
+#: ../../../templates/sidebar.block.menu.php:29
+#, php-format
+msgid "Tags included into the tag '%s'"
+msgstr "Schlagwรถrter, die im Schlagwort '%s' enthalten sind."
+
+#: ../../../templates/sidebar.block.menu.php:29
+msgid "Menu Tags"
+msgstr "Spezielle Schlagwรถrter"
+
+#: ../../../templates/sidebar.block.menu.php:62
+msgid "See all your tags"
+msgstr "Betrachten Sie all Ihre Schlagwรถrter."
+
+#: ../../../templates/sidebar.block.menu.php:62
+msgid "all your tags"
+msgstr "All Ihre Schlagwรถrter."
+
+#: ../../../templates/sidebar.block.menu.php:64
+msgid "See all tags from this user"
+msgstr "Betrachten Sie sรคmtliche Schlagwรถrter dieses Benutzers."
+
+#: ../../../templates/sidebar.block.menu.php:64
+msgid "all tags from this user"
+msgstr "Sรคmtliche Schlagwรถrter dieses Benutzers."
+
+#: ../../../templates/sidebar.block.menu.php:68
+msgid "See popular tags"
+msgstr "Betrachten Sie populรคre Schlagwรถrter."
+
+#: ../../../templates/sidebar.block.recent.php:15
+msgid "Recent Tags"
+msgstr "Neueste Schlagwรถrter"
+
+#: ../../../templates/sidebar.block.related.php:17
+msgid "Related Tags"
+msgstr "Verwandte Schlagwรถrter"
+
+#: ../../../templates/sidebar.block.search.php:15
+msgid "Last Searches"
+msgstr "Neueste Suchbegriffe"
+
+#: ../../../templates/sidebar.block.search.php:24
+msgid "Number of bookmarks for this query"
+msgstr "Die Anzahl der Favoriten fรผr diese Anfrage"
+
+#: ../../../templates/sidebar.block.tagactions.php:29
+msgid "Create a link to another tag"
+msgstr "Eine Verbindung zwischen Schlagwรถrtern erstellen."
+
+#: ../../../templates/sidebar.block.users.php:13
+msgid "Last Users"
+msgstr "Neueste Benutzer"
+
+#: ../../../templates/sidebar.block.users.php:22
+#: ../../../templates/users.tpl.php:17
+msgid "bookmarks"
+msgstr "Lesezeichen"
+
+#: ../../../templates/sidebar.block.users.php:29
+msgid "See all users"
+msgstr "Alle Benutzer anzeigen"
+
+#: ../../../templates/sidebar.block.users.php:29
+msgid "All users"
+msgstr "Alle Benutzer"
+
+#: ../../../templates/sidebar.block.watchstatus.php:10
+msgid "Remove from Watchlist"
+msgstr "Aus der Beobachtungsliste lรถschen"
+
+#: ../../../templates/sidebar.block.watchstatus.php:12
+msgid "Add to Watchlist"
+msgstr "Zur Beobachtungsliste hinzufรผgen"
+
+#: ../../../templates/sidebar.linkedtags.inc.php:18
+msgid "Edit link"
+msgstr "Den Weblink bearbeiten."
+
+#: ../../../templates/sidebar.linkedtags.inc.php:45
+msgid "Synonyms:"
+msgstr "Synonyme:"
+
+#: ../../../templates/tag2tagadd.tpl.php:12
+msgid "Create new link:"
+msgstr "Eine neue Verbindung erstellen:"
+
+#: ../../../templates/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."
+
+#: ../../../templates/tag2tagadd.tpl.php:23
+#: ../../../templates/tag2tagedit.tpl.php:37
+msgid "Create"
+msgstr "Erstellen"
+
+#: ../../../templates/tag2tagadd.tpl.php:35
+#: ../../../templates/tag2tagdelete.tpl.php:27
+#: ../../../templates/tag2tagedit.tpl.php:51
+msgid "Existing links:"
+msgstr "Bereits bestehende Navigationslinks:"
+
+#: ../../../templates/tag2tagadd.tpl.php:53
+#: ../../../templates/tag2tagdelete.tpl.php:45
+#: ../../../templates/tag2tagedit.tpl.php:69
+msgid "No links"
+msgstr "Leider derzeit keine Weblinks."
+
+#: ../../../templates/tag2tagedit.tpl.php:6
+msgid "Delete the link"
+msgstr "Den Weblink lรถschen."
+
+#: ../../../templates/tag2tagedit.tpl.php:29
+msgid "Create new link"
+msgstr "Einen neuen Weblink erstellen"
+
+#: ../../../templates/tagrename.tpl.php:12
+msgid "Old"
+msgstr "Alt"
+
+#: ../../../templates/tagrename.tpl.php:17
+msgid "New"
+msgstr "Neu"
+
+#: ../../../templates/tagrename.tpl.php:24
+msgid "Rename"
+msgstr "Umbenennen"
+
+#: ../../../templates/tags.tpl.php:11
+#: ../../../templates/users.tpl.php:9
+msgid "Alphabet"
+msgstr "Alphabet"
+
+#: ../../../templates/tags.tpl.php:12
+#: ../../../templates/users.tpl.php:10
+msgid "Popularity"
+msgstr "Popularitรคt"
+
+#: ../../../templates/toolbar.inc.php:15
+msgid "Log Out"
+msgstr "Abmelden"
+
+#: ../../../templates/users.tpl.php:17
+msgid "profile"
+msgstr "Profil"
+
+#: ../../../templates/users.tpl.php:17
+msgid "created in"
+msgstr "erstellt in"
+
diff --git a/data/locales/dk_DK/LC_MESSAGES/messages.mo b/data/locales/dk_DK/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..a46c715 --- /dev/null +++ b/data/locales/dk_DK/LC_MESSAGES/messages.mo diff --git a/data/locales/dk_DK/LC_MESSAGES/messages.po b/data/locales/dk_DK/LC_MESSAGES/messages.po new file mode 100644 index 0000000..3d06851 --- /dev/null +++ b/data/locales/dk_DK/LC_MESSAGES/messages.po @@ -0,0 +1,808 @@ +# Scuttle dk-DK Translation +# Copyright (C) 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# Nicki Brรธchner <nicki.brochner@gmail.com> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-04-29 11:17+0200\n" +"PO-Revision-Date: 2006-04-16 22:04-0800\n" +"Last-Translator: Marcus Campbell <marcus.campbell@gmail.com>\n" +"Language-Team: dk-DK <Nicki.brochner@gmail.com>\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "Om programmet" + +#: ..\..\..\ajaxDelete.php:29 +msgid "You are not allowed to delete this bookmark" +msgstr "Du har ikke tilladelse til at slette dette bogmรฆrke" + +#: ..\..\..\ajaxDelete.php:33 +msgid "Failed to delete bookmark" +msgstr "Kunne ikke slette bogmรฆrket" + +#: ..\..\..\alltags.php:50 +msgid "All Tags" +msgstr "Alle mรฆrker" + +#: ..\..\..\alltags.php:59 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:46 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:61 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:62 +#, php-format +msgid "User with username %s not was not found" +msgstr "Bruger med brugernavn %s kunne ikke findes" + +#: ..\..\..\bookmarks.php:71 +#, php-format +msgid "User with username %s was not found" +msgstr "Bruger med brugernavn %s kunne ikke findes" + +#: ..\..\..\bookmarks.php:94 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "Dit bogmรฆrke skal have bรฅde en titel og en adresse" + +#: ..\..\..\bookmarks.php:114 +#: ..\..\..\edit.php:58 +msgid "Bookmark saved" +msgstr "Bogmรฆrke gemt" + +#: ..\..\..\bookmarks.php:122 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:74 +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" + +#: ..\..\..\bookmarks.php:160 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Tilfรธj et bogmรฆrke" + +#: ..\..\..\bookmarks.php:163 +msgid "Add Bookmark" +msgstr "Tilfรธj bogmรฆrke" + +#: ..\..\..\bookmarks.php:166 +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" + +#: ..\..\..\bookmarks.php:213 +msgid "My Bookmarks" +msgstr "Mine bogmรฆrker" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "Rediger bogmรฆrker" + +#: ..\..\..\edit.php:34 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "Bogmรฆrke med id %s kunne ikke findes" + +#: ..\..\..\edit.php:39 +msgid "You are not allowed to edit this bookmark" +msgstr "Du har ikke tilladelse til at redigere dette bogmรฆrke" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "Der opstod en fejl, ved forsรธg pรฅ at gemme dit bogmรฆrke." + +#: ..\..\..\edit.php:78 +msgid "Failed to delete the bookmark" +msgstr "Kunne ikke slette bogmรฆrket" + +#: ..\..\..\edit.php:88 +#: ..\..\..\templates\editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "Gem รฆndringer" + +#: ..\..\..\functions.inc.php:92 +msgid "message_die() was called multiple times." +msgstr "message_die() blev kaldt flere gange" + +#: ..\..\..\functions.inc.php:104 +msgid "SQL Error" +msgstr "SQL fejl" + +#: ..\..\..\functions.inc.php:110 +msgid "Line" +msgstr "Line" + +#: ..\..\..\functions.inc.php:110 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "Filer" + +#: ..\..\..\functions.inc.php:116 +msgid "Information" +msgstr "Information" + +#: ..\..\..\functions.inc.php:121 +msgid "Critical Information" +msgstr "Kritisk information" + +#: ..\..\..\functions.inc.php:126 +msgid "An error occured" +msgstr "En fejl opstod" + +#: ..\..\..\functions.inc.php:129 +msgid "General Error" +msgstr "General fejl" + +#: ..\..\..\functions.inc.php:137 +msgid "An critical error occured" +msgstr "En kritisk fejl opstod" + +#: ..\..\..\functions.inc.php:140 +msgid "Critical Error" +msgstr "Kritisk fejl" + +#: ..\..\..\functions.inc.php:149 +msgid "DEBUG MODE" +msgstr "DEBUG MODE" + +#: ..\..\..\history.php:65 +msgid "History" +msgstr "Historie" + +#: ..\..\..\history.php:66 +#, php-format +msgid "History for %s" +msgstr "Historie for %s" + +#: ..\..\..\history.php:81 +msgid "Address was not found" +msgstr "Adressen kunne ikke findes" + +#: ..\..\..\import.php:41 +msgid "Could not open XML input" +msgstr "Kunne ikke รฅbne XML input" + +#: ..\..\..\import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "XLM fejl: %s i line %d" + +#: ..\..\..\import.php:54 +msgid "Import Bookmarks from del.icio.us" +msgstr "Importere bogmรฆrker fra del.icio.us" + +#: ..\..\..\import.php:86 +#: ..\..\..\importNetscape.php:64 +msgid "You have already submitted this bookmark." +msgstr "Du har allerede tilfรธjet dette bogmรฆrke" + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:72 +msgid "Bookmark imported." +msgstr "Bogmรฆrke importeret" + +#: ..\..\..\importNetscape.php:81 +msgid "Import Bookmarks from Browser File" +msgstr "Importere bogmรฆrker fra browser" + +#: ..\..\..\index.php:32 +msgid "You have now logged out" +msgstr "Du er nu logget ud" + +#: ..\..\..\index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Seneste bogmรฆrker" + +#: ..\..\..\index.php:72 +msgid "Store, share and tag your favourite links" +msgstr "Gem, del og mรฆrk dine favorit links" + +#: ..\..\..\index.php:73 +msgid "Recent Bookmarks" +msgstr "Seneste bogmรฆrker" + +#: ..\..\..\jsScuttle.php:22 +msgid "Are you sure?" +msgstr "Er du sikker?" + +#: ..\..\..\jsScuttle.php:22 +msgid "Yes" +msgstr "Ja" + +#: ..\..\..\jsScuttle.php:22 +msgid "No" +msgstr "Nej" + +#: ..\..\..\jsScuttle.php:68 +msgid "Available" +msgstr "Tilgรฆngelig" + +#: ..\..\..\jsScuttle.php:71 +msgid "Not Available" +msgstr "Ikke tilgรฆngelig" + +#: ..\..\..\login.php:38 +msgid "The details you have entered are incorrect. Please try again." +msgstr "Detaljerne du har indtastet er forkerte. Prรธv venligst igen." + +#: ..\..\..\login.php:48 +#: ..\..\..\templates\login.tpl.php:26 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "Log ind" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "Du skal indtaste dit brugernavn" + +#: ..\..\..\password.php:35 +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Du skal indtaste din <abbr title=\"Elektronisk post\">E-mail</abbr> adresse." + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "Sรธgning gav igen resultat pรฅ det brugernavn." + +#: ..\..\..\password.php:45 +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Sรธgning gav igen resultat pรฅ den kombination af brugernavn og <abbr title=\"elektronisk post\">e-mail</abbr> adresse." + +#: ..\..\..\password.php:53 +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." + +#: ..\..\..\password.php:57 +msgid "Your new password is:" +msgstr "Dit nye kodeord er:" + +#: ..\..\..\password.php:57 +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." + +#: ..\..\..\password.php:60 +#, php-format +msgid "%s Account Information" +msgstr "%s Konto oplysninger" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "Nyt kodeord er blevet genereret og sendt til %s" + +#: ..\..\..\password.php:69 +msgid "Forgotten Password" +msgstr "Glemt kodeord" + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\dynamictags.inc.php:101 +#: ..\..\..\templates\sidebar.block.common.php:9 +#: ..\..\..\templates\sidebar.block.popular.php:15 +#: ..\..\..\templates\sidebar.block.recent.php:25 +msgid "Popular Tags" +msgstr "Populรฆre mรฆrkater" + +#: ..\..\..\profile.php:54 +#: ..\..\..\watched.php:114 +msgid "Username was not specified" +msgstr "Brugernavn var ikke specificerede" + +#: ..\..\..\profile.php:60 +msgid "My Profile" +msgstr "Min profil" + +#: ..\..\..\profile.php:62 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Profile" +msgstr "Profil" + +#: ..\..\..\profile.php:80 +msgid "Password and confirmation do not match." +msgstr "Kodeord og bekrรฆftelse matcher ikke." + +#: ..\..\..\profile.php:84 +msgid "Password must be at least 6 characters long." +msgstr "Kodeordet skal mindst vรฆre pรฅ 6 karakterer." + +#: ..\..\..\profile.php:88 +msgid "E-mail address is not valid." +msgstr "E-mail adressen er ikke gyldig." + +#: ..\..\..\profile.php:92 +msgid "An error occurred while saving your changes." +msgstr "En fejl opstod ved forsรธg pรฅ at gemme dine รฆndringer." + +#: ..\..\..\profile.php:94 +msgid "Changes saved." +msgstr "รndringer gemt." + +#: ..\..\..\register.php:33 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "Du <em>skal</em> indtaste et brugernavn, kodeord og e-mail adresse." + +#: ..\..\..\register.php:37 +msgid "This username already exists, please make another choice." +msgstr "Brugernavnet eksistere allerede, vรฆlg venligst et andet." + +#: ..\..\..\register.php:41 +msgid "E-mail address is not valid. Please try again." +msgstr "E-mail addressen er ikke gyldig. Prรธv venligst igen." + +#: ..\..\..\register.php:50 +msgid "You have successfully registered. Enjoy!" +msgstr "Du er nu succesfuldt registeret. God fornรธjelse!" + +#: ..\..\..\register.php:52 +msgid "Registration failed. Please try again." +msgstr "Registreringen fejlede. Prรธv venligst igen." + +#: ..\..\..\register.php:57 +#: ..\..\..\templates\register.tpl.php:32 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "Registrere" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:57 +msgid "Search" +msgstr "Sรธg" + +#: ..\..\..\search.inc.php:35 +msgid "this user's bookmarks" +msgstr "denne brugers bogmรฆrker" + +#: ..\..\..\search.inc.php:40 +msgid "my bookmarks" +msgstr "mine bogmรฆrker" + +#: ..\..\..\search.inc.php:41 +msgid "my watchlist" +msgstr "Min Overvรฅgningsliste" + +#: ..\..\..\search.inc.php:45 +msgid "all bookmarks" +msgstr "alle bogmรฆrkerne" + +#: ..\..\..\search.inc.php:48 +msgid "for" +msgstr "for" + +#: ..\..\..\search.php:91 +#: ..\..\..\search.php:128 +msgid "Search Bookmarks" +msgstr "Sรธge i bogmรฆrker" + +#: ..\..\..\search.php:97 +msgid "Search Results" +msgstr "Sรธge resultat" + +#: ..\..\..\tags.php:38 +#: ..\..\..\templates\editbookmark.tpl.php:44 +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Tags" +msgstr "Mรฆrkater" + +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "%s Bogmรฆrker" + +#: ..\..\..\watch.php:84 +msgid "User removed from your watchlist" +msgstr "Bruger fjernet fra din overvรฅgningsliste" + +#: ..\..\..\watch.php:86 +msgid "User added to your watchlist" +msgstr "Bruger tilfรธjet til din overvรฅgningsliste " + +#: ..\..\..\watched.php:105 +msgid "My Watchlist" +msgstr "Min Overvรฅgningsliste " + +#: ..\..\..\watched.php:107 +#: ..\..\..\templates\sidebar.block.profile.php:14 +#: ..\..\..\templates\toolbar.inc.php:12 +msgid "Watchlist" +msgstr "Overvรฅgningsliste" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "<strong>Gem</strong> alle dine favorit links et sted, tilgรฆngelig fra hvor som helst" + +#: ..\..\..\templates\about.tpl.php:7 +msgid "<strong>Share</strong> 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." + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "<strong>Marker</strong> dine bogmรฆrker med sรฅ mange mรฆrkater som du รธnsker, i stedet for at kรฆmpe med mapper." + +#: ..\..\..\templates\about.tpl.php:9 +#, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "<strong><a href=\"register.php\">Register nu</a></strong> for at starte med at bruge %s!" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "Nรธrd Ting" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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รฅ <a href=\"http://sourceforge.net/projects/scuttle/\">et รฅbent-kode projekt</a> licenseret under <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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." + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Forbindelsesflade imellem forskellige programmer \">API</abbr></a>. 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." + +#: ..\..\..\templates\bookmarks.tpl.php:17 +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Sort by:" +msgstr "Sortere efter:" + +#: ..\..\..\templates\bookmarks.tpl.php:18 +msgid "Date" +msgstr "Dato" + +#: ..\..\..\templates\bookmarks.tpl.php:19 +#: ..\..\..\templates\editbookmark.tpl.php:34 +msgid "Title" +msgstr "Titel" + +#: ..\..\..\templates\bookmarks.tpl.php:23 +msgid "URL" +msgstr "URL" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Edit" +msgstr "Redigere" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Delete" +msgstr "Slet" + +#: ..\..\..\templates\bookmarks.tpl.php:66 +msgid "by" +msgstr "af" + +#: ..\..\..\templates\bookmarks.tpl.php:78 +#, php-format +msgid " and %s1 other%s" +msgstr "og %s1 andre%s" + +#: ..\..\..\templates\bookmarks.tpl.php:81 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " og %2$s%1$s andre%3$s" + +#: ..\..\..\templates\bookmarks.tpl.php:90 +msgid "Copy" +msgstr "Kopi" + +#: ..\..\..\templates\bookmarks.tpl.php:136 +#: ..\..\..\templates\bookmarks.tpl.php:142 +msgid "First" +msgstr "Fรธrste" + +#: ..\..\..\templates\bookmarks.tpl.php:137 +#: ..\..\..\templates\bookmarks.tpl.php:143 +msgid "Previous" +msgstr "Forrige" + +#: ..\..\..\templates\bookmarks.tpl.php:150 +#: ..\..\..\templates\bookmarks.tpl.php:153 +msgid "Next" +msgstr "Nรฆste" + +#: ..\..\..\templates\bookmarks.tpl.php:151 +#: ..\..\..\templates\bookmarks.tpl.php:154 +msgid "Last" +msgstr "Sidste" + +#: ..\..\..\templates\bookmarks.tpl.php:156 +#, php-format +msgid "Page %d of %d" +msgstr "Side %d af %d" + +#: ..\..\..\templates\bookmarks.tpl.php:160 +msgid "No bookmarks available" +msgstr "Igen bogmรฆrker tilgรฆngelig" + +#: ..\..\..\templates\dynamictags.inc.php:108 +#: ..\..\..\templates\sidebar.block.common.php:15 +#: ..\..\..\templates\sidebar.block.popular.php:21 +#: ..\..\..\templates\sidebar.block.recent.php:20 +#: ..\..\..\templates\tags.tpl.php:16 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "bogmรฆrke" +msgstr[1] "bogmรฆrker" + +#: ..\..\..\templates\editbookmark.tpl.php:29 +msgid "Address" +msgstr "Adresse" + +#: ..\..\..\templates\editbookmark.tpl.php:31 +#: ..\..\..\templates\editbookmark.tpl.php:36 +#: ..\..\..\templates\editprofile.tpl.php:31 +msgid "Required" +msgstr "Pรฅkrรฆvet" + +#: ..\..\..\templates\editbookmark.tpl.php:39 +#: ..\..\..\templates\editprofile.tpl.php:47 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "Beskrivelse" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "Komma adskillelse" + +#: ..\..\..\templates\editbookmark.tpl.php:49 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Privat" + +#: ..\..\..\templates\editbookmark.tpl.php:52 +#: ..\..\..\templates\importDelicious.tpl.php:18 +#: ..\..\..\templates\importNetscape.tpl.php:19 +msgid "Public" +msgstr "Offentligt" + +#: ..\..\..\templates\editbookmark.tpl.php:53 +#: ..\..\..\templates\importDelicious.tpl.php:19 +#: ..\..\..\templates\importNetscape.tpl.php:20 +msgid "Shared with Watch List" +msgstr "Del med Overvรฅgningslisten" + +#: ..\..\..\templates\editbookmark.tpl.php:54 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Private" +msgstr "Private" + +#: ..\..\..\templates\editbookmark.tpl.php:66 +msgid "Delete Bookmark" +msgstr "Slet bogmรฆrker" + +#: ..\..\..\templates\editbookmark.tpl.php:93 +msgid "Bookmarklet" +msgstr "Bogmรฆrkelet" + +#: ..\..\..\templates\editbookmark.tpl.php:94 +#, 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" + +#: ..\..\..\templates\editbookmark.tpl.php:106 +#, php-format +msgid "Post to %s" +msgstr "Send til %s" + +#: ..\..\..\templates\editbookmark.tpl.php:107 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Send til %s (Pop-up)" + +#: ..\..\..\templates\editbookmark.tpl.php:111 +#: ..\..\..\templates\importDelicious.tpl.php:26 +#: ..\..\..\templates\importNetscape.tpl.php:27 +msgid "Import" +msgstr "Importere" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Import bookmarks from bookmark file" +msgstr "Importere bogmรฆrker fra bogmรฆrke fil" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox og Netscape" + +#: ..\..\..\templates\editbookmark.tpl.php:114 +msgid "Import bookmarks from del.icio.us" +msgstr "Importere bogmรฆrker fra del.icio.us" + +#: ..\..\..\templates\editprofile.tpl.php:10 +msgid "Account Details" +msgstr "Konto oplysninger" + +#: ..\..\..\templates\editprofile.tpl.php:14 +#: ..\..\..\templates\login.tpl.php:15 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:16 +msgid "Username" +msgstr "Brugernavn" + +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "New Password" +msgstr "Nyt kodeord" + +#: ..\..\..\templates\editprofile.tpl.php:24 +msgid "Confirm Password" +msgstr "bekrรฆft kodeord" + +#: ..\..\..\templates\editprofile.tpl.php:29 +#: ..\..\..\templates\register.tpl.php:26 +msgid "E-mail" +msgstr "E-mail" + +#: ..\..\..\templates\editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "Personlige detaljer" + +#: ..\..\..\templates\editprofile.tpl.php:39 +#: ..\..\..\templates\profile.tpl.php:12 +msgid "Name" +msgstr "Navn" + +#: ..\..\..\templates\editprofile.tpl.php:43 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "Hjemmeside" + +#: ..\..\..\templates\error.404.tpl.php:5 +msgid "Not Found" +msgstr "Ikke fundet" + +#: ..\..\..\templates\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" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "General server fejl" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "Den forespurgte adresse kunne ikke afvikles" + +#: ..\..\..\templates\importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Log ind pรฅ <a href=\"http://del.icio.us/api/posts/all\">del.icio.us' eksport side</a>" + +#: ..\..\..\templates\importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Gem <abbr title=\"Extensible Markup Language\">XML</abbr> fillen pรฅ din computer" + +#: ..\..\..\templates\importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Tryk <kbd>Gennemse...</kbd> for at finde denne fil pรฅ din computer. Filstรธrrelsen mรฅ maksimum vรฆre pรฅ 1MB" + +#: ..\..\..\templates\importDelicious.tpl.php:36 +#: ..\..\..\templates\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" + +#: ..\..\..\templates\importDelicious.tpl.php:37 +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> 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." + +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "Instruktioner" + +#: ..\..\..\templates\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" + +#: ..\..\..\templates\importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>Filer > Importer og eksporter... > Eksporter foretrukne emner" + +#: ..\..\..\templates\importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Bogmรฆrker > Arranger bogmรฆrker... > Filer > Eksporter..." + +#: ..\..\..\templates\importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Bogmรฆrker > Arranger bogmรฆrker... > Vรฆrktรธjer > Eksporter..." + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Tryk <kbd>Gennemse...</kbd> for at finde den gemte bogmรฆrke fil pรฅ din computer. Filstรธrrelsen mรฅ maksimum vรฆre pรฅ 1MB" + +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\register.tpl.php:21 +msgid "Password" +msgstr "Kodeord" + +#: ..\..\..\templates\login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Sรธg ikke efter mit kodeord i 2 uger" + +#: ..\..\..\templates\login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "Glemt dit kodeord?" + +#: ..\..\..\templates\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." + +#: ..\..\..\templates\password.tpl.php:14 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "<abbr title=\"Elektronisk post\">E-mail</abbr>" + +#: ..\..\..\templates\password.tpl.php:19 +msgid "Generate Password" +msgstr "Generere kodeord" + +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "Medlem siden" + +#: ..\..\..\templates\profile.tpl.php:35 +#: ..\..\..\templates\sidebar.block.watchlist.php:8 +msgid "Watching" +msgstr "Overvรฅger" + +#: ..\..\..\templates\profile.tpl.php:50 +msgid "Watched By" +msgstr "Overvรฅgede af" + +#: ..\..\..\templates\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." + +#: ..\..\..\templates\rss.tpl.php:9 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Seneste bogmรฆrker sendt til %s" + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +msgid "No bookmarks found" +msgstr "Igen bogmรฆrker fundet" + +#: ..\..\..\templates\sidebar.block.recent.php:15 +msgid "Recent Tags" +msgstr "Nylig mรฆrker" + +#: ..\..\..\templates\sidebar.block.related.php:15 +msgid "Related Tags" +msgstr "Lignede mรฆrker" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "Fjern fra Overvรฅgningslisten" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "Tilfรธj til Overvรฅgningslisten" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:17 +msgid "Actions" +msgstr "Aktion" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Alphabet" +msgstr "Alfabet" + +#: ..\..\..\templates\tags.tpl.php:9 +msgid "Popularity" +msgstr "Popularitet" + +#: ..\..\..\templates\toolbar.inc.php:11 +msgid "Bookmarks" +msgstr "Bogmรฆrker" + +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "Log ud" + diff --git a/data/locales/en_GB/LC_MESSAGES/messages.mo b/data/locales/en_GB/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..309f732 --- /dev/null +++ b/data/locales/en_GB/LC_MESSAGES/messages.mo diff --git a/data/locales/en_GB/LC_MESSAGES/messages.po b/data/locales/en_GB/LC_MESSAGES/messages.po new file mode 100644 index 0000000..1bac385 --- /dev/null +++ b/data/locales/en_GB/LC_MESSAGES/messages.po @@ -0,0 +1,1470 @@ +# Scuttle en-GB Translation +# Copyright (C) 2005 - 2009 SemanticScuttle project +# This file is distributed under the same license as the SemanticScuttle package. +# Ogee <ogee@ogee.de> +# +msgid "" +msgstr "" +"Project-Id-Version: Semantic Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-04 11:33+0200\n" +"PO-Revision-Date: 2009-06-01 02:29+0100\n" +"Last-Translator: Jan Seifert <seif1301@users.sourceforge.net>\n" +"Language-Team: Ogee <ogee@ogee.de>\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" + +#: ../../../about.php:23 ../../../about.php:24 +#: ../../../templates/bottom.inc.php:5 ../../../templates/toolbar.inc.php:15 +#: ../../../templates/toolbar.inc.php:28 +msgid "About" +msgstr "About" + +#: ../../../admin.php:32 +msgid "Manage users" +msgstr "Manage users" + +#: ../../../admin.php:68 +#, php-format +msgid "%s and all his bookmarks and tags were deleted." +msgstr "%s and all his bookmarks and tags were deleted." + +#: ../../../admin.php:75 +msgid "Problem with " +msgstr "Problem with " + +#: ../../../ajaxDelete.php:37 +msgid "You are not allowed to delete this bookmark" +msgstr "You are not allowed to delete this bookmark" + +#: ../../../ajaxDelete.php:41 ../../../edit.php:103 +msgid "Failed to delete bookmark" +msgstr "Failed to delete bookmark" + +#: ../../../alltags.php:49 +msgid "All Tags" +msgstr "All Tags" + +#: ../../../alltags.php:55 ../../../bookmarks.php:96 +#: ../../../populartags.php:52 ../../../profile.php:51 ../../../rss.php:67 +#: ../../../search.php:101 ../../../watch.php:45 ../../../watchlist.php:61 +#, php-format +msgid "User with username %s was not found" +msgstr "User with username %s was not found" + +#: ../../../bookmarkcommondescriptionedit.php:51 ../../../tag2tagadd.php:37 +#: ../../../tag2tagdelete.php:41 ../../../tag2tagedit.php:33 +#: ../../../tagcommondescriptionedit.php:43 ../../../tagedit.php:43 +msgid "Permission denied." +msgstr "Permission denied." + +#: ../../../bookmarkcommondescriptionedit.php:60 +msgid "Bookmark common description updated" +msgstr "Bookmark common description updated" + +#: ../../../bookmarkcommondescriptionedit.php:63 +msgid "Failed to update the bookmark common description" +msgstr "Failed to update the bookmark common description" + +#: ../../../bookmarkcommondescriptionedit.php:71 +msgid "Edit Bookmark Common Description" +msgstr "Edit Bookmark common description" + +#: ../../../bookmarks.php:111 ../../../tags.php:47 +msgid "Remove the tag from the selection" +msgstr "Remove the tag from the selection" + +#: ../../../bookmarks.php:131 ../../../edit.php:65 +msgid "Your bookmark must have a title and an address" +msgstr "Your bookmark must have a title and an address" + +#: ../../../bookmarks.php:152 ../../../edit.php:83 ../../../edit.php:86 +msgid "Bookmark saved" +msgstr "Bookmark saved" + +#: ../../../bookmarks.php:152 +msgid "(Come back to previous page.)" +msgstr "(Go back to previous page.)" + +#: ../../../bookmarks.php:159 ../../../import.php:106 +#: ../../../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." + +#: ../../../bookmarks.php:209 ../../../templates/toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Add a Bookmark" + +#: ../../../bookmarks.php:213 +msgid "Add Bookmark" +msgstr "Add Bookmark" + +#: ../../../bookmarks.php:216 +msgid "You must be logged in before you can add bookmarks." +msgstr "You must be logged in before you can add bookmarks." + +#: ../../../bookmarks.php:270 ../../../bookmarks.php:271 +msgid "My Bookmarks" +msgstr "My Bookmarks" + +#: ../../../edit.php:44 ../../../edit.php:45 +msgid "Edit Bookmark" +msgstr "Edit Bookmark" + +#: ../../../edit.php:51 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "Bookmark with id %s was not found" + +#: ../../../edit.php:57 +msgid "You are not allowed to edit this bookmark" +msgstr "You are not allowed to edit this bookmark" + +#: ../../../edit.php:77 +msgid "Error while saving your bookmark" +msgstr "Error while saving your bookmark" + +#: ../../../edit.php:113 ../../../templates/editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "Save Changes" + +#: ../../../functions.inc.php:144 +msgid "message_die() was called multiple times." +msgstr "message_die() was called multiple times." + +#: ../../../functions.inc.php:156 +msgid "SQL Error" +msgstr "SQL Error" + +#: ../../../functions.inc.php:162 +msgid "Line" +msgstr "Line" + +#: ../../../functions.inc.php:162 ../../../templates/importDelicious.tpl.php:8 +#: ../../../templates/importNetscape.tpl.php:9 +#: ../../../templates/importStructure.tpl.php:10 +msgid "File" +msgstr "File" + +#: ../../../functions.inc.php:168 +msgid "Information" +msgstr "Information" + +#: ../../../functions.inc.php:173 +msgid "Critical Information" +msgstr "Critical Information" + +#: ../../../functions.inc.php:178 +msgid "An error occured" +msgstr "An error has occurred" + +#: ../../../functions.inc.php:181 +msgid "General Error" +msgstr "General Error" + +#: ../../../functions.inc.php:189 +msgid "An critical error occured" +msgstr "A critical error has occurred" + +#: ../../../functions.inc.php:192 +msgid "Critical Error" +msgstr "Critical Error" + +#: ../../../functions.inc.php:201 +msgid "DEBUG MODE" +msgstr "DEBUG MODE" + +#: ../../../history.php:61 +msgid "History" +msgstr "History" + +#: ../../../history.php:62 +#, php-format +msgid "History for %s" +msgstr "History for %s" + +#: ../../../history.php:84 +msgid "Address was not found" +msgstr "Address was not found" + +#: ../../../import.php:47 +msgid "Could not open XML input" +msgstr "Could not open XML input" + +#: ../../../import.php:51 +#, php-format +msgid "XML error: %s at line %d" +msgstr "XML error: %s at line %d" + +#: ../../../import.php:60 +msgid "Import Bookmarks from del.icio.us" +msgstr "Import bookmarks from del.icio.us" + +#: ../../../import.php:93 +msgid "You have already submitted this bookmark." +msgstr "You have already submitted this bookmark." + +#: ../../../import.php:104 +msgid "Bookmark imported." +msgstr "Bookmark imported." + +#: ../../../importNetscape.php:95 +msgid "You have already submitted some of these bookmarks." +msgstr "You have already submitted some of these bookmarks." + +#: ../../../importNetscape.php:115 +msgid "Bookmarks found: " +msgstr "Bookmarks found: " + +#: ../../../importNetscape.php:116 +msgid "Bookmarks imported: " +msgstr "Bookmarks imported: " + +#: ../../../importNetscape.php:117 ../../../importNetscape.php:122 +msgid "Import Bookmarks from Browser File" +msgstr "Import Bookmarks from browser file" + +#: ../../../importStructure.php:61 +msgid "Bad indentation" +msgstr "Bad indentation" + +#: ../../../importStructure.php:67 +msgid "New links between tags: " +msgstr "New links between tags: " + +#: ../../../importStructure.php:72 +msgid "Import Structure" +msgstr "Import Structure" + +#: ../../../index.php:38 +msgid "You have now logged out" +msgstr "You have now logged out" + +#: ../../../index.php:45 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Recent bookmarks" + +#: ../../../index.php:78 +msgid "Store, share and tag your favourite links" +msgstr "Store, share and tag your favourite links" + +#: ../../../index.php:79 +msgid "All Bookmarks" +msgstr "All Bookmarks" + +#: ../../../jsScuttle.php:22 ../../../templates/admin.tpl.php:19 +#: ../../../templates/tag2tagadd.tpl.php:21 +#: ../../../templates/tag2tagdelete.tpl.php:13 +#: ../../../templates/tag2tagedit.tpl.php:14 +#: ../../../templates/tag2tagedit.tpl.php:35 +#: ../../../templates/tagdelete.tpl.php:6 +msgid "Are you sure?" +msgstr "Are you sure?" + +#: ../../../jsScuttle.php:22 ../../../templates/tag2tagdelete.tpl.php:15 +#: ../../../templates/tag2tagedit.tpl.php:16 +#: ../../../templates/tagdelete.tpl.php:8 +msgid "Yes" +msgstr "Yes" + +#: ../../../jsScuttle.php:22 ../../../templates/tag2tagdelete.tpl.php:16 +#: ../../../templates/tag2tagedit.tpl.php:17 +#: ../../../templates/tagdelete.tpl.php:9 +msgid "No" +msgstr "No" + +#: ../../../jsScuttle.php:69 +msgid "Available" +msgstr "Available" + +#: ../../../jsScuttle.php:72 +msgid "Not Available" +msgstr "Not available" + +#: ../../../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." + +#: ../../../login.php:57 ../../../templates/login.tpl.php:26 +#: ../../../templates/toolbar.inc.php:29 +msgid "Log In" +msgstr "Log In" + +#: ../../../password.php:36 +msgid "You must enter your username." +msgstr "You must enter your username." + +#: ../../../password.php:40 +msgid "" +"You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "" +"You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." + +#: ../../../password.php:48 +msgid "No matches found for that username." +msgstr "No matches found for that username." + +#: ../../../password.php:51 +msgid "" +"No matches found for that combination of username and <abbr title=" +"\"electronic mail\">e-mail</abbr> address." +msgstr "" +"No matches found for that combination of username and <abbr title=" +"\"electronic mail\">e-mail</abbr> address." + +#: ../../../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." + +#: ../../../password.php:63 +msgid "Your new password is:" +msgstr "Your new password is:" + +#: ../../../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." + +#: ../../../password.php:66 +#, php-format +msgid "%s Account Information" +msgstr "%s Account Information" + +#: ../../../password.php:68 +#, php-format +msgid "New password generated and sent to %s" +msgstr "New password generated and sent to %s" + +#: ../../../password.php:75 +msgid "Forgotten Password" +msgstr "Forgotten Password" + +#: ../../../populartags.php:46 ../../../templates/dynamictags.inc.php:128 +#: ../../../templates/sidebar.block.common.php:9 +#: ../../../templates/sidebar.block.menu.php:74 +#: ../../../templates/sidebar.block.popular.php:23 +#: ../../../templates/sidebar.block.recent.php:34 +#: ../../../templates/toolbar.inc.php:27 +msgid "Popular Tags" +msgstr "Popular Tags" + +#: ../../../profile.php:59 ../../../watchlist.php:119 +msgid "Username was not specified" +msgstr "Username was not specified" + +#: ../../../profile.php:65 +msgid "My Profile" +msgstr "My Profile" + +#: ../../../profile.php:67 ../../../templates/toolbar.inc.php:12 +msgid "Profile" +msgstr "Profile" + +#: ../../../profile.php:89 +msgid "Invalid Token" +msgstr "Invalid token" + +#: ../../../profile.php:94 +msgid "Password and confirmation do not match." +msgstr "Password and confirmation do not match." + +#: ../../../profile.php:98 +msgid "Password must be at least 6 characters long." +msgstr "Password must be at least 6 characters long." + +#: ../../../profile.php:102 +msgid "E-mail address is not valid." +msgstr "E-mail address is not valid." + +#: ../../../profile.php:106 +msgid "An error occurred while saving your changes." +msgstr "An error occurred while saving your changes." + +#: ../../../profile.php:108 +msgid "Changes saved." +msgstr "Changes saved." + +#: ../../../register.php:40 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "You <em>must</em> enter a username, password and e-mail address." + +#: ../../../register.php:44 +msgid "This username has been reserved, please make another choice." +msgstr "This username has been reserved, please make another choice." + +#: ../../../register.php:48 +msgid "This username already exists, please make another choice." +msgstr "This username already exists, please make another choice." + +#: ../../../register.php:52 +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." + +#: ../../../register.php:56 +msgid "E-mail address is not valid. Please try again." +msgstr "E-mail address is not valid. Please try again." + +#: ../../../register.php:60 +msgid "Antispam answer is not valid. Please try again." +msgstr "Antispam answer is not valid. Please try again." + +#: ../../../register.php:69 +msgid "You have successfully registered. Enjoy!" +msgstr "You have successfully registered. Enjoy!" + +#: ../../../register.php:71 +msgid "Registration failed. Please try again." +msgstr "Registration failed. Please try again." + +#: ../../../register.php:77 ../../../templates/register.tpl.php:41 +#: ../../../templates/toolbar.inc.php:30 +msgid "Register" +msgstr "Register" + +#: ../../../rss.php:84 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Recent bookmarks posted to %s" + +#: ../../../search.inc.php:23 +msgid "Search..." +msgstr "Search..." + +#: ../../../search.inc.php:24 +msgid "in" +msgstr "in" + +#: ../../../search.inc.php:30 +msgid "this user's bookmarks" +msgstr "this user's bookmarks" + +#: ../../../search.inc.php:35 +msgid "my bookmarks" +msgstr "my bookmarks" + +#: ../../../search.inc.php:36 +msgid "my watchlist" +msgstr "my watchlist" + +#: ../../../search.inc.php:40 +msgid "all bookmarks" +msgstr "all bookmarks" + +#: ../../../search.inc.php:50 +msgid "Search" +msgstr "Search" + +#: ../../../search.php:73 ../../../search.php:123 +msgid "Search Bookmarks" +msgstr "Search Bookmarks" + +#: ../../../search.php:79 +msgid "Search Results" +msgstr "Search Results" + +#: ../../../search.php:114 +msgid "Unsatisfied? You can also try our " +msgstr "Unsatisfied? You can also try our " + +#: ../../../tag2tagadd.php:50 +msgid "Tag link created" +msgstr "Tag link created" + +#: ../../../tag2tagadd.php:53 +msgid "Failed to create the link" +msgstr "Failed to create the link" + +#: ../../../tag2tagadd.php:65 +msgid "Add Tag Link" +msgstr "Add Tag Link" + +#: ../../../tag2tagdelete.php:66 +msgid "Tag link deleted" +msgstr "Tag link deleted" + +#: ../../../tag2tagdelete.php:69 +msgid "Failed to delete the link" +msgstr "Failed to delete the link" + +#: ../../../tag2tagdelete.php:81 +msgid "Delete Link Between Tags" +msgstr "Delete Link between Tags" + +#: ../../../tag2tagedit.php:55 +msgid "Edit Link Between Tags" +msgstr "Edit Link between Tags" + +#: ../../../tagcommondescriptionedit.php:55 +msgid "Tag common description updated" +msgstr "Tag common description updated" + +#: ../../../tagcommondescriptionedit.php:58 +msgid "Failed to update the tag common description" +msgstr "Failed to update the tag common description" + +#: ../../../tagcommondescriptionedit.php:64 +#: ../../../templates/sidebar.block.tagactions.php:26 +msgid "Edit Tag Common Description" +msgstr "Edit Tag common description" + +#: ../../../tagdelete.php:43 +msgid "Tag deleted" +msgstr "Tag deleted" + +#: ../../../tagdelete.php:46 +msgid "Failed to delete the tag" +msgstr "Failed to delete the tag" + +#: ../../../tagdelete.php:54 +#: ../../../templates/sidebar.block.tagactions.php:22 +msgid "Delete Tag" +msgstr "Delete tag" + +#: ../../../tagedit.php:52 +msgid "Tag description updated" +msgstr "Tag description updated" + +#: ../../../tagedit.php:55 +msgid "Failed to update the tag description" +msgstr "Failed to update the tag description" + +#: ../../../tagedit.php:61 ../../../templates/sidebar.block.tagactions.php:24 +msgid "Edit Tag Description" +msgstr "Edit tag description" + +#: ../../../tagrename.php:63 +msgid "Tag renamed" +msgstr "Tag renamed" + +#: ../../../tagrename.php:66 +msgid "Failed to rename the tag" +msgstr "Failed to rename the tag" + +#: ../../../tagrename.php:72 ../../../templates/sidebar.block.tagactions.php:9 +msgid "Rename Tag" +msgid_plural "Rename Tags" +msgstr[0] "Rename tag" +msgstr[1] "Rename tags" + +#: ../../../tags.php:45 ../../../tags.php:67 +#: ../../../templates/editbookmark.tpl.php:69 +#: ../../../templates/toolbar.inc.php:10 +msgid "Tags" +msgstr "Tags" + +#: ../../../users.php:35 +msgid "Users" +msgstr "Users" + +#: ../../../watch.php:54 +msgid "User removed from your watchlist" +msgstr "User removed from your watchlist" + +#: ../../../watch.php:56 +msgid "User added to your watchlist" +msgstr "User added to your watchlist" + +#: ../../../watchlist.php:104 +msgid "My Watchlist" +msgstr "My Watchlist" + +#: ../../../watchlist.php:106 ../../../templates/toolbar.inc.php:11 +msgid "Watchlist" +msgstr "Watchlist" + +#: ../../../templates/about.tpl.php:6 +msgid "" +"<strong>Store</strong> all your favourite links in one place, accessible " +"from anywhere." +msgstr "" +"<strong>Store</strong> all your favourite links in one place, accessible " +"from anywhere." + +#: ../../../templates/about.tpl.php:7 +msgid "" +"<strong>Share</strong> your bookmarks with everyone, with friends on your " +"watchlist or just keep them private." +msgstr "" +"<strong>Share</strong> your bookmarks with everyone, with friends on your " +"watchlist or just keep them private." + +#: ../../../templates/about.tpl.php:8 +msgid "" +"<strong>Tag</strong> your bookmarks with as many labels as you want, instead " +"of wrestling with folders." +msgstr "" +"<strong>Tag</strong> your bookmarks with as many labels as you want, instead " +"of wrestling with folders." + +#: ../../../templates/about.tpl.php:9 +msgid "Register now" +msgstr "Register now" + +#: ../../../templates/about.tpl.php:9 +#, php-format +msgid " to start using %s!" +msgstr " to start using %s!" + +#: ../../../templates/about.tpl.php:12 +msgid "Geek Stuff" +msgstr "Geek Stuff" + +#: ../../../templates/about.tpl.php:14 +msgid "is licensed under the " +msgstr "is licensed under the " + +#: ../../../templates/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." + +#: ../../../templates/about.tpl.php:15 +#, php-format +msgid "" +"%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us " +"<abbr title=\"Application Programming Interface\">API</abbr></a>. 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 <a href=\"http://del.icio.us/doc/api\">del.icio.us " +"<abbr title=\"Application Programming Interface\">API</abbr></a>. 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." + +#: ../../../templates/about.tpl.php:24 +msgid "Tips" +msgstr "Tips" + +#: ../../../templates/about.tpl.php:26 +msgid "Add search plugin into your browser:" +msgstr "Add search plugin into your browser:" + +#: ../../../templates/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." + +#: ../../../templates/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." + +#: ../../../templates/admin.tpl.php:5 +msgid "Users management" +msgstr "User management" + +#: ../../../templates/admin.tpl.php:14 +msgid "Public/Shared/Private" +msgstr "Public/Shared/Private" + +#: ../../../templates/admin.tpl.php:14 ../../../templates/bookmarks.tpl.php:93 +msgid "bookmark(s)" +msgstr "bookmark(s)" + +#: ../../../templates/admin.tpl.php:19 +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Delete" +msgstr "Delete" + +#: ../../../templates/admin.tpl.php:27 +msgid "Other actions" +msgstr "Other actions" + +#: ../../../templates/admin.tpl.php:29 +msgid "Check all URLs (May take some time)" +msgstr "Check all URLs (may take some time)" + +#: ../../../templates/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" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:18 +#: ../../../templates/bookmarks.tpl.php:123 +#: ../../../templates/editbookmark.tpl.php:38 +msgid "Title" +msgstr "Title" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:23 +#: ../../../templates/editbookmark.tpl.php:44 +#: ../../../templates/editprofile.tpl.php:47 +#: ../../../templates/profile.tpl.php:33 +#: ../../../templates/tagcommondescriptionedit.tpl.php:13 +#: ../../../templates/tagedit.tpl.php:12 +msgid "Description" +msgstr "Description" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:31 +#: ../../../templates/tagcommondescriptionedit.tpl.php:21 +msgid "Last modification:" +msgstr "Last modification:" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:42 +#: ../../../templates/tagcommondescriptionedit.tpl.php:32 +#: ../../../templates/tagedit.tpl.php:18 +msgid "Update" +msgstr "Update" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:43 +#: ../../../templates/editbookmark.tpl.php:98 +#: ../../../templates/tag2tagadd.tpl.php:24 +#: ../../../templates/tag2tagedit.tpl.php:38 +#: ../../../templates/tagcommondescriptionedit.tpl.php:33 +#: ../../../templates/tagedit.tpl.php:19 +#: ../../../templates/tagrename.tpl.php:25 +msgid "Cancel" +msgstr "Cancel" + +#: ../../../templates/bookmarks.tpl.php:26 +msgid "Bookmarks on this page are managed by an admin user." +msgstr "Bookmarks on this page are managed by an admin user." + +#: ../../../templates/bookmarks.tpl.php:51 +#: ../../../templates/bookmarks.tpl.php:52 +msgid "Edit the common description of this tag" +msgstr "Edit the common description of this tag" + +#: ../../../templates/bookmarks.tpl.php:55 +#: ../../../templates/bookmarks.tpl.php:56 +msgid "Edit the common description of this bookmark" +msgstr "Edit the common description of this bookmark" + +#: ../../../templates/bookmarks.tpl.php:76 +#: ../../../templates/bookmarks.tpl.php:77 +msgid "Edit your personal description of this tag" +msgstr "Edit your personal description of this tag" + +#: ../../../templates/bookmarks.tpl.php:93 ../../../templates/tags.tpl.php:10 +#: ../../../templates/users.tpl.php:8 +msgid "Sort by:" +msgstr "Sort by:" + +#: ../../../templates/bookmarks.tpl.php:122 +msgid "Date" +msgstr "Date" + +#: ../../../templates/bookmarks.tpl.php:129 +msgid "Bookmarks from other users for this tag" +msgstr "Bookmarks from other users for this tag" + +#: ../../../templates/bookmarks.tpl.php:134 +msgid "Only your bookmarks for this tag" +msgstr "Only your bookmarks for this tag" + +#: ../../../templates/bookmarks.tpl.php:157 +#: ../../../templates/bookmarks.tpl.php:163 +msgid "First" +msgstr "First" + +#: ../../../templates/bookmarks.tpl.php:158 +#: ../../../templates/bookmarks.tpl.php:164 +msgid "Previous" +msgstr "Previous" + +#: ../../../templates/bookmarks.tpl.php:171 +#: ../../../templates/bookmarks.tpl.php:174 +msgid "Next" +msgstr "Next" + +#: ../../../templates/bookmarks.tpl.php:172 +#: ../../../templates/bookmarks.tpl.php:175 +msgid "Last" +msgstr "Last" + +#: ../../../templates/bookmarks.tpl.php:185 +#, php-format +msgid "Page %d of %d" +msgstr "Page %d of %d" + +#: ../../../templates/bookmarks.tpl.php:225 +msgid "Tags:" +msgstr "Tags:" + +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Edit" +msgstr "Edit" + +#: ../../../templates/bookmarks.tpl.php:235 +msgid "Last update" +msgstr "Last update" + +#: ../../../templates/bookmarks.tpl.php:238 +msgid "by" +msgstr "by" + +#: ../../../templates/bookmarks.tpl.php:240 +msgid "you" +msgstr "you" + +#: ../../../templates/bookmarks.tpl.php:254 +#, php-format +msgid " and %s1 other%s" +msgstr " and %s1 other%s" + +#: ../../../templates/bookmarks.tpl.php:257 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " and %2$s%1$s others%3$s" + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy this bookmark to YOUR bookmarks." +msgstr "Copy this bookmark to YOUR bookmarks." + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy" +msgstr "Copy" + +#: ../../../templates/bookmarks.tpl.php:284 +msgid "This bookmark is certified by an admin user." +msgstr "This bookmark is certified by an admin user." + +#: ../../../templates/bookmarks.tpl.php:323 +msgid "Private Note on this bookmark" +msgstr "Private note on this bookmark" + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Come back to the top of this page." +msgstr "Come back to the top of this page." + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Top of the page" +msgstr "Top of the page" + +#: ../../../templates/bookmarks.tpl.php:340 +msgid "No bookmarks available" +msgstr "No bookmarks available" + +#: ../../../templates/bottom.inc.php:7 +msgid "Propulsed by " +msgstr "Propulsed by " + +#: ../../../templates/dynamictags.inc.php:47 +#: ../../../templates/sidebar.block.common.php:19 +#: ../../../templates/sidebar.block.popular.php:34 +#: ../../../templates/sidebar.block.recent.php:29 +#: ../../../templates/tags.tpl.php:19 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "bookmark" +msgstr[1] "bookmarks" + +#: ../../../templates/dynamictags.inc.php:131 +msgid "Popular Tags From All Users" +msgstr "Popular tags from all users" + +#: ../../../templates/editbookmark.tpl.php:33 +msgid "Address" +msgstr "Address" + +#: ../../../templates/editbookmark.tpl.php:35 +#: ../../../templates/editbookmark.tpl.php:40 +#: ../../../templates/editprofile.tpl.php:31 +#: ../../../templates/tagrename.tpl.php:14 +#: ../../../templates/tagrename.tpl.php:19 +msgid "Required" +msgstr "Required" + +#: ../../../templates/editbookmark.tpl.php:45 +msgid "Add Note" +msgstr "Add Note" + +#: ../../../templates/editbookmark.tpl.php:48 +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] " + +#: ../../../templates/editbookmark.tpl.php:51 +msgid "Suggested anchors: " +msgstr "Suggested anchors: " + +#: ../../../templates/editbookmark.tpl.php:63 +msgid "Private Note" +msgstr "Private Note" + +#: ../../../templates/editbookmark.tpl.php:65 +#, fuzzy +msgid "Just visible by you and your contacts." +msgstr "Just visible by you and your friends." + +#: ../../../templates/editbookmark.tpl.php:73 +msgid "Comma-separated" +msgstr "Comma-separated" + +#: ../../../templates/editbookmark.tpl.php:77 +#: ../../../templates/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" + +#: ../../../templates/editbookmark.tpl.php:81 +#: ../../../templates/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" + +#: ../../../templates/editbookmark.tpl.php:84 +#: ../../../templates/importDelicious.tpl.php:15 +#: ../../../templates/importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Privacy" + +#: ../../../templates/editbookmark.tpl.php:87 +#: ../../../templates/importDelicious.tpl.php:18 +#: ../../../templates/importNetscape.tpl.php:19 +msgid "Public" +msgstr "Public" + +#: ../../../templates/editbookmark.tpl.php:88 +msgid "Shared with Watch List" +msgstr "Shared with Watchlist" + +#: ../../../templates/editbookmark.tpl.php:89 +#: ../../../templates/importDelicious.tpl.php:20 +#: ../../../templates/importNetscape.tpl.php:21 +msgid "Private" +msgstr "Private" + +#: ../../../templates/editbookmark.tpl.php:102 +msgid "Delete Bookmark" +msgstr "Delete Bookmark" + +#: ../../../templates/editbookmark.tpl.php:107 +msgid "edit common description" +msgstr "edit common description" + +#: ../../../templates/editbookmark.tpl.php:134 +msgid "Bookmarklet" +msgstr "Bookmarklet" + +#: ../../../templates/editbookmark.tpl.php:140 +#, 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" + +#: ../../../templates/editbookmark.tpl.php:144 +#, 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" + +#: ../../../templates/editbookmark.tpl.php:157 +#: ../../../templates/editbookmark.tpl.php:162 +#, php-format +msgid "Post to %s" +msgstr "Post to %s" + +#: ../../../templates/editbookmark.tpl.php:158 +#: ../../../templates/editbookmark.tpl.php:163 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Post to %s (pop-up)" + +#: ../../../templates/editbookmark.tpl.php:168 +#: ../../../templates/importDelicious.tpl.php:26 +#: ../../../templates/importNetscape.tpl.php:27 +#: ../../../templates/importStructure.tpl.php:16 +msgid "Import" +msgstr "Import" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Import bookmarks from bookmark file" +msgstr "Import bookmarks from bookmark file" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox and Netscape" + +#: ../../../templates/editbookmark.tpl.php:171 +msgid "Import bookmarks from del.icio.us" +msgstr "Import bookmarks from del.icio.us" + +#: ../../../templates/editprofile.tpl.php:10 +msgid "Account Details" +msgstr "Account Details" + +#: ../../../templates/editprofile.tpl.php:14 +#: ../../../templates/login.tpl.php:15 ../../../templates/password.tpl.php:10 +#: ../../../templates/profile.tpl.php:6 ../../../templates/register.tpl.php:16 +msgid "Username" +msgstr "Username" + +#: ../../../templates/editprofile.tpl.php:19 +msgid "New Password" +msgstr "New Password" + +#: ../../../templates/editprofile.tpl.php:24 +msgid "Confirm Password" +msgstr "Confirm Password" + +#: ../../../templates/editprofile.tpl.php:29 +#: ../../../templates/password.tpl.php:14 +#: ../../../templates/register.tpl.php:26 +msgid "E-mail" +msgstr "E-mail" + +#: ../../../templates/editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "Personal Details" + +#: ../../../templates/editprofile.tpl.php:39 +#: ../../../templates/profile.tpl.php:17 +msgid "Name" +msgstr "Name" + +#: ../../../templates/editprofile.tpl.php:43 +#: ../../../templates/profile.tpl.php:23 +msgid "Homepage" +msgstr "Homepage" + +#: ../../../templates/editprofile.tpl.php:55 +#: ../../../templates/sidebar.block.tagactions.php:17 +#: ../../../templates/sidebar.block.watchstatus.php:18 +msgid "Actions" +msgstr "Actions" + +#: ../../../templates/editprofile.tpl.php:58 +msgid "Export bookmarks" +msgstr "Export bookmarks" + +#: ../../../templates/editprofile.tpl.php:60 +msgid "HTML file (for browsers)" +msgstr "HTML file (for browsers)" + +#: ../../../templates/editprofile.tpl.php:61 +msgid "XML file (like del.icio.us)" +msgstr "XML file (like del.icio.us)" + +#: ../../../templates/editprofile.tpl.php:62 +msgid "CSV file (for spreadsheet tools)" +msgstr "CSV file (for spreadsheet tools)" + +#: ../../../templates/error.404.tpl.php:5 +msgid "Not Found" +msgstr "Not Found" + +#: ../../../templates/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" + +#: ../../../templates/error.500.tpl.php:5 +msgid "General server error" +msgstr "General server error" + +#: ../../../templates/error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "The requested URL could not be processed" + +#: ../../../templates/importDelicious.tpl.php:19 +#: ../../../templates/importNetscape.tpl.php:20 +msgid "Shared with Watchlist" +msgstr "Shared with Watchlist" + +#: ../../../templates/importDelicious.tpl.php:31 +#: ../../../templates/importNetscape.tpl.php:32 +#: ../../../templates/importStructure.tpl.php:21 +msgid "Instructions" +msgstr "Instructions" + +#: ../../../templates/importDelicious.tpl.php:33 +msgid "" +"Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at " +"del.icio.us</a>" +msgstr "" +"Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at " +"del.icio.us</a>" + +#: ../../../templates/importDelicious.tpl.php:34 +msgid "" +"Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> " +"file to your computer" +msgstr "" +"Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> " +"file to your computer" + +#: ../../../templates/importDelicious.tpl.php:35 +msgid "" +"Click <kbd>Browse...</kbd> to find this file on your computer. The maximum " +"size the file can be is 1MB" +msgstr "" +"Click <kbd>Browse...</kbd> to find this file on your computer. The maximum " +"size the file can be is 1MB" + +#: ../../../templates/importDelicious.tpl.php:36 +#: ../../../templates/importNetscape.tpl.php:43 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "Select the default privacy setting for your imported bookmarks" + +#: ../../../templates/importDelicious.tpl.php:37 +#: ../../../templates/importNetscape.tpl.php:44 +msgid "" +"Click <kbd>Import</kbd> to start importing the bookmarks; it may take a " +"minute" +msgstr "" +"Click <kbd>Import</kbd> to start importing the bookmarks; it may take a " +"minute" + +#: ../../../templates/importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "Export your bookmarks from your browser to a file" + +#: ../../../templates/importNetscape.tpl.php:37 +msgid "" +"Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "" +"Internet Explorer: <kbd>File > Import and Export... > Export Favorites" + +#: ../../../templates/importNetscape.tpl.php:38 +msgid "" +"Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > " +"Export..." +msgstr "" +"Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > " +"Export..." + +#: ../../../templates/importNetscape.tpl.php:39 +msgid "" +"Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "" +"Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." + +#: ../../../templates/importNetscape.tpl.php:42 +msgid "" +"Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. " +"The maximum size the file can be is 1MB" +msgstr "" +"Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. " +"The maximum size the file can be is 1MB" + +#: ../../../templates/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:" + +#: ../../../templates/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." + +#: ../../../templates/login.tpl.php:20 ../../../templates/register.tpl.php:21 +msgid "Password" +msgstr "Password" + +#: ../../../templates/login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Don't ask for my password for 2 weeks" + +#: ../../../templates/login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "Forgotten your password?" + +#: ../../../templates/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." + +#: ../../../templates/password.tpl.php:19 +msgid "Generate Password" +msgstr "Generate Password" + +#: ../../../templates/profile.tpl.php:11 +msgid "Email" +msgstr "Email" + +#: ../../../templates/profile.tpl.php:28 +msgid "Member Since" +msgstr "Member Since" + +#: ../../../templates/profile.tpl.php:40 +#: ../../../templates/sidebar.block.watchlist.php:30 +msgid "Watching" +msgstr "Watching" + +#: ../../../templates/profile.tpl.php:55 +#: ../../../templates/sidebar.block.watchlist.php:52 +msgid "Watched By" +msgstr "Watched By" + +#: ../../../templates/profile.tpl.php:68 ../../../templates/toolbar.inc.php:9 +msgid "Bookmarks" +msgstr "Bookmarks" + +#: ../../../templates/profile.tpl.php:69 +msgid "Go to bookmarks" +msgstr "Go to bookmarks" + +#: ../../../templates/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" + +#: ../../../templates/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)" + +#: ../../../templates/register.tpl.php:28 +msgid " to send you your password if you forget it" +msgstr " to send you your password if you forget it" + +#: ../../../templates/register.tpl.php:33 +msgid "Antispam question" +msgstr "Antispam question" + +#: ../../../templates/sidebar.block.linked.php:51 +msgid "Linked Tags" +msgstr "Linked Tags" + +#: ../../../templates/sidebar.block.linked.php:62 +#: ../../../templates/sidebar.block.menu.php:46 +msgid "Add new link" +msgstr "Add new link" + +#: ../../../templates/sidebar.block.linked.php:63 +#: ../../../templates/sidebar.block.menu.php:47 +msgid "Delete link" +msgstr "Delete link" + +#: ../../../templates/sidebar.block.menu.php:35 +#, php-format +msgid "Tags included into the tag '%s'" +msgstr "Tags included into the tag '%s'" + +#: ../../../templates/sidebar.block.menu.php:35 +msgid "Menu Tags" +msgstr "Menu Tags" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "See all your tags" +msgstr "See all your tags" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "all your tags" +msgstr "all your tags" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "See all tags from this user" +msgstr "See all tags from this user" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "all tags from this user" +msgstr "all tags from this user" + +#: ../../../templates/sidebar.block.menu.php:74 +msgid "See popular tags" +msgstr "See popular tags" + +#: ../../../templates/sidebar.block.menu2.php:25 +msgid "Featured Menu Tags" +msgstr "Featured Menu Tags" + +#: ../../../templates/sidebar.block.menu2.php:29 +msgid "This menu is composed of keywords (tags) organized by admins." +msgstr "This menu is composed of keywords (tags) organized by admins." + +#: ../../../templates/sidebar.block.recent.php:18 +msgid "Recent Tags" +msgstr "Recent Tags" + +#: ../../../templates/sidebar.block.related.php:26 +msgid "Related Tags" +msgstr "Related Tags" + +#: ../../../templates/sidebar.block.search.php:15 +msgid "Last Searches" +msgstr "Last searches" + +#: ../../../templates/sidebar.block.search.php:24 +msgid "Number of bookmarks for this query" +msgstr "Number of bookmarks for this query" + +#: ../../../templates/sidebar.block.tagactions.php:28 +msgid "Create a link to another tag" +msgstr "Create a link to another tag" + +#: ../../../templates/sidebar.block.users.php:14 +msgid "New Users" +msgstr "New users" + +#: ../../../templates/sidebar.block.users.php:23 +#: ../../../templates/users.tpl.php:17 +msgid "bookmarks" +msgstr "bookmarks" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "See all users" +msgstr "See all users" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "All users" +msgstr "All users" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts are mutual contacts" +msgstr "Close contacts are mutual contacts" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts" +msgstr "Close contacts" + +#: ../../../templates/sidebar.block.watchlist.php:36 +msgid "Add a contact..." +msgstr "Add a contact..." + +#: ../../../templates/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." + +#: ../../../templates/sidebar.block.watchlist.php:44 +msgid "Remove this contact" +msgstr "Remove this contact" + +#: ../../../templates/sidebar.block.watchstatus.php:11 +msgid "Remove from Watchlist" +msgstr "Remove from Watchlist" + +#: ../../../templates/sidebar.block.watchstatus.php:13 +msgid "Add to Watchlist" +msgstr "Add to Watchlist" + +#: ../../../templates/sidebar.linkedtags.inc.php:18 +msgid "Edit link" +msgstr "Edit link" + +#: ../../../templates/sidebar.linkedtags.inc.php:47 +msgid "Synonyms:" +msgstr "Synonyms:" + +#: ../../../templates/tag2tagadd.tpl.php:12 +msgid "Create new link:" +msgstr "Create new link:" + +#: ../../../templates/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" + +#: ../../../templates/tag2tagadd.tpl.php:23 +#: ../../../templates/tag2tagedit.tpl.php:37 +msgid "Create" +msgstr "Create" + +#: ../../../templates/tag2tagadd.tpl.php:35 +#: ../../../templates/tag2tagdelete.tpl.php:27 +#: ../../../templates/tag2tagedit.tpl.php:51 +msgid "Existing links:" +msgstr "Existing links:" + +#: ../../../templates/tag2tagadd.tpl.php:53 +#: ../../../templates/tag2tagdelete.tpl.php:45 +#: ../../../templates/tag2tagedit.tpl.php:69 +msgid "No links" +msgstr "No links" + +#: ../../../templates/tag2tagedit.tpl.php:6 +msgid "Delete the link" +msgstr "Delete the link" + +#: ../../../templates/tag2tagedit.tpl.php:29 +msgid "Create new link" +msgstr "Create new link" + +#: ../../../templates/tagrename.tpl.php:12 +msgid "Old" +msgstr "Old" + +#: ../../../templates/tagrename.tpl.php:17 +msgid "New" +msgstr "New" + +#: ../../../templates/tagrename.tpl.php:24 +msgid "Rename" +msgstr "Rename" + +#: ../../../templates/tags.tpl.php:11 ../../../templates/users.tpl.php:9 +msgid "Alphabet" +msgstr "Alphabet" + +#: ../../../templates/tags.tpl.php:12 ../../../templates/users.tpl.php:10 +msgid "Popularity" +msgstr "Popularity" + +#: ../../../templates/toolbar.inc.php:8 ../../../templates/toolbar.inc.php:26 +msgid "Home" +msgstr "Home" + +#: ../../../templates/toolbar.inc.php:14 +msgid "Log Out" +msgstr "Log Out" + +#: ../../../templates/toolbar.inc.php:17 +msgid "Admin" +msgstr "Admin" + +#: ../../../templates/top.inc.php:51 +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.inc.php." +msgstr "" + +#: ../../../templates/users.tpl.php:17 +msgid "profile" +msgstr "Profile" + +#: ../../../templates/users.tpl.php:17 +msgid "created in" +msgstr "created in" diff --git a/data/locales/es_ES/LC_MESSAGES/messages.mo b/data/locales/es_ES/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..7812d22 --- /dev/null +++ b/data/locales/es_ES/LC_MESSAGES/messages.mo diff --git a/data/locales/es_ES/LC_MESSAGES/messages.po b/data/locales/es_ES/LC_MESSAGES/messages.po new file mode 100644 index 0000000..73567fb --- /dev/null +++ b/data/locales/es_ES/LC_MESSAGES/messages.po @@ -0,0 +1,826 @@ +# Scuttle es-ES Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# Francisco Portero <fportero@serbinario.com> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-12-16 06:31+0200\n" +"PO-Revision-Date: 2006-03-26 14:28-0800\n" +"Last-Translator: Marcus Campbell <marcus.campbell@gmail.com>\n" +"Language-Team: es-ES <fportero@serbinario.com>\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "Acerca de" + +#: ..\..\..\ajaxDelete.php:29 +msgid "You are not allowed to delete this bookmark" +msgstr "No puede borrar estos enlaces" + +#: ..\..\..\ajaxDelete.php:33 +msgid "Failed to delete bookmark" +msgstr "Error al borrar los enlaces" + +#: ..\..\..\alltags.php:50 +msgid "All Tags" +msgstr "Todas" + +#: ..\..\..\alltags.php:59 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:46 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:61 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:62 +#, php-format +msgid "User with username %s not was not found" +msgstr "No se encontro el usuario %s" + +#: ..\..\..\bookmarks.php:71 +#, fuzzy, php-format +msgid "User with username %s was not found" +msgstr "No se encontro el usuario %s" + +#: ..\..\..\bookmarks.php:94 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "Su enlace debe tener un título y una dirección" + +#: ..\..\..\bookmarks.php:114 +#: ..\..\..\edit.php:58 +msgid "Bookmark saved" +msgstr "Enlace salvado" + +#: ..\..\..\bookmarks.php:122 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:74 +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." + +#: ..\..\..\bookmarks.php:160 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Agregar" + +#: ..\..\..\bookmarks.php:163 +msgid "Add Bookmark" +msgstr "Agregar Enlace" + +#: ..\..\..\bookmarks.php:166 +msgid "You must be logged in before you can add bookmarks." +msgstr "Debe introducir su usuario y contraseña para poder agregar enlaces" + +#: ..\..\..\bookmarks.php:213 +msgid "My Bookmarks" +msgstr "Mis Enlaces" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "Editar enlace" + +#: ..\..\..\edit.php:34 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "El enlace con id %s no funciona" + +#: ..\..\..\edit.php:39 +msgid "You are not allowed to edit this bookmark" +msgstr "Usted no tiene permisos para editar este enlace" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "Se ha producido un error al salvar su enlace" + +#: ..\..\..\edit.php:78 +msgid "Failed to delete the bookmark" +msgstr "Fallo al borrar el enlace" + +#: ..\..\..\edit.php:88 +#: ..\..\..\templates\editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "Guardar Cambios" + +#: ..\..\..\functions.inc.php:92 +msgid "message_die() was called multiple times." +msgstr "message_die() requerido en varios ocasiones." + +#: ..\..\..\functions.inc.php:104 +msgid "SQL Error" +msgstr "Error de SQL" + +#: ..\..\..\functions.inc.php:110 +msgid "Line" +msgstr "Línea" + +#: ..\..\..\functions.inc.php:110 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "Archivo" + +#: ..\..\..\functions.inc.php:116 +msgid "Information" +msgstr "Información" + +#: ..\..\..\functions.inc.php:121 +msgid "Critical Information" +msgstr "Información Critica" + +#: ..\..\..\functions.inc.php:126 +msgid "An error occured" +msgstr "Ha habido un error" + +#: ..\..\..\functions.inc.php:129 +msgid "General Error" +msgstr "Error General" + +#: ..\..\..\functions.inc.php:137 +msgid "An critical error occured" +msgstr "Ha habido un error critico" + +#: ..\..\..\functions.inc.php:140 +msgid "Critical Error" +msgstr "Error Critico" + +#: ..\..\..\functions.inc.php:149 +msgid "DEBUG MODE" +msgstr "MODO DEPURACION" + +#: ..\..\..\history.php:65 +msgid "History" +msgstr "Historial" + +#: ..\..\..\history.php:66 +#, php-format +msgid "History for %s" +msgstr "Historial de %s" + +#: ..\..\..\history.php:81 +msgid "Address was not found" +msgstr "La dirección no existe" + +#: ..\..\..\import.php:41 +msgid "Could not open XML input" +msgstr "No se pude abrir la entrada XML" + +#: ..\..\..\import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "Errores: %s en la linea %d del XML" + +#: ..\..\..\import.php:54 +msgid "Import Bookmarks from del.icio.us" +msgstr "Importar enlaces de del.icio.us" + +#: ..\..\..\import.php:86 +#: ..\..\..\importNetscape.php:64 +msgid "You have already submitted this bookmark." +msgstr "Usted ya ha agregado este enlace" + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:72 +msgid "Bookmark imported." +msgstr "Enlaces importados." + +#: ..\..\..\importNetscape.php:81 +msgid "Import Bookmarks from Browser File" +msgstr "Importar enlaces de un Navegador" + +#: ..\..\..\index.php:32 +msgid "You have now logged out" +msgstr "Usted esta ahora desconectado" + +#: ..\..\..\index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Enlaces recientes" + +#: ..\..\..\index.php:72 +msgid "Store, share and tag your favourite links" +msgstr "Almacene, navege y etiquete sus enlaces favoritos" + +#: ..\..\..\index.php:73 +msgid "Recent Bookmarks" +msgstr "Enlaces Recientes" + +#: ..\..\..\jsScuttle.php:22 +msgid "Are you sure?" +msgstr "Esta usted seguro?" + +#: ..\..\..\jsScuttle.php:22 +msgid "Yes" +msgstr "Si" + +#: ..\..\..\jsScuttle.php:22 +msgid "No" +msgstr "No" + +#: ..\..\..\jsScuttle.php:68 +msgid "Available" +msgstr "Disponible" + +#: ..\..\..\jsScuttle.php:71 +#, fuzzy +msgid "Not Available" +msgstr "No hay enlaces disponibles" + +#: ..\..\..\login.php:38 +msgid "The details you have entered are incorrect. Please try again." +msgstr "Los datos introducidos son incorrectos. Por favor intentelo de nuevo." + +#: ..\..\..\login.php:48 +#: ..\..\..\templates\login.tpl.php:26 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "Acceder" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "Introduzca su nombre de usuario" + +#: ..\..\..\password.php:35 +#, fuzzy +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Debe <em>especificar</em> usuario, clave, nombre y <abbr title=\"electronic mail\">correo electrónico</abbr>." + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "No se encuentra ningún usuario con ese nombre" + +#: ..\..\..\password.php:45 +#, fuzzy +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Debe <em>especificar</em> usuario, clave, nombre y <abbr title=\"electronic mail\">correolectrónico</abbr>." + +#: ..\..\..\password.php:53 +#, 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." + +#: ..\..\..\password.php:57 +#, fuzzy +msgid "Your new password is:" +msgstr "Confirmar la nueva clave" + +#: ..\..\..\password.php:57 +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" + +#: ..\..\..\password.php:60 +#, fuzzy, php-format +msgid "%s Account Information" +msgstr "Información" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "Se ha creado una nueva clave y se ha enviado a %s" + +#: ..\..\..\password.php:69 +#, fuzzy +msgid "Forgotten Password" +msgstr "Nueva clave" + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\dynamictags.inc.php:101 +#: ..\..\..\templates\sidebar.block.common.php:9 +#: ..\..\..\templates\sidebar.block.popular.php:15 +#: ..\..\..\templates\sidebar.block.recent.php:25 +msgid "Popular Tags" +msgstr "Más visitadas" + +#: ..\..\..\profile.php:54 +#: ..\..\..\watched.php:114 +msgid "Username was not specified" +msgstr "Usuario no introducido" + +#: ..\..\..\profile.php:60 +#, fuzzy +msgid "My Profile" +msgstr "Mi Pérfil" + +#: ..\..\..\profile.php:62 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Profile" +msgstr "Pérfil" + +#: ..\..\..\profile.php:80 +msgid "Password and confirmation do not match." +msgstr "La clave y su confirmación no es correcta." + +#: ..\..\..\profile.php:84 +msgid "Password must be at least 6 characters long." +msgstr "La clave debe tener al menos 6 acracteres." + +#: ..\..\..\profile.php:88 +msgid "E-mail address is not valid." +msgstr "Correo incorrecto." + +#: ..\..\..\profile.php:92 +msgid "An error occurred while saving your changes." +msgstr "Ha habido un error al guardar los cambios." + +#: ..\..\..\profile.php:94 +msgid "Changes saved." +msgstr "Cambios guardados." + +#: ..\..\..\register.php:33 +#, fuzzy +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "Debe <em>especificar</em> usuario, clave, nombre y <abbr title=\"electronic mail\">correo electrónico</abbr>." + +#: ..\..\..\register.php:37 +msgid "This username already exists, please make another choice." +msgstr "Este usuario ya existe, por favor introduzca otro." + +#: ..\..\..\register.php:41 +#, fuzzy +msgid "E-mail address is not valid. Please try again." +msgstr "Correo incorrecto." + +#: ..\..\..\register.php:50 +msgid "You have successfully registered. Enjoy!" +msgstr "El registro ha sido correcto. Puede continuar!" + +#: ..\..\..\register.php:52 +msgid "Registration failed. Please try again." +msgstr "Registro erroneo. Por favor intentelo de nuevo." + +#: ..\..\..\register.php:57 +#: ..\..\..\templates\register.tpl.php:32 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "Registrarse" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:57 +msgid "Search" +msgstr "Buscar" + +#: ..\..\..\search.inc.php:35 +#, fuzzy +msgid "this user's bookmarks" +msgstr "enlaces de %s" + +#: ..\..\..\search.inc.php:40 +msgid "my bookmarks" +msgstr "mis enlaces" + +#: ..\..\..\search.inc.php:41 +#, fuzzy +msgid "my watchlist" +msgstr "mis consultados" + +#: ..\..\..\search.inc.php:45 +msgid "all bookmarks" +msgstr "todos" + +#: ..\..\..\search.inc.php:48 +msgid "for" +msgstr "por" + +#: ..\..\..\search.php:91 +#: ..\..\..\search.php:128 +msgid "Search Bookmarks" +msgstr "Buscar Enlaces" + +#: ..\..\..\search.php:97 +msgid "Search Results" +msgstr "Buscar Resultados" + +#: ..\..\..\tags.php:38 +#: ..\..\..\templates\editbookmark.tpl.php:44 +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Tags" +msgstr "Etiquetas" + +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "Enlace de %s" + +#: ..\..\..\watch.php:84 +msgid "User removed from your watchlist" +msgstr "Usuario borrado de consultados" + +#: ..\..\..\watch.php:86 +msgid "User added to your watchlist" +msgstr "Usuario agregado a consultados" + +#: ..\..\..\watched.php:105 +#, fuzzy +msgid "My Watchlist" +msgstr "Mis Consultados" + +#: ..\..\..\watched.php:107 +#: ..\..\..\templates\sidebar.block.profile.php:14 +#: ..\..\..\templates\toolbar.inc.php:12 +#, fuzzy +msgid "Watchlist" +msgstr "Consultados" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "<strong>Guarde</strong> todos sus enlaces favoritos en un lugar y acceda desde donde quiera." + +#: ..\..\..\templates\about.tpl.php:7 +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "<strong>Comparte</strong> tus enlaces, solo con los amigos de la lista de consultados o manténgalos privados.." + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "<strong>Etiquete</strong> sus enlaces con tantas etiquetas como usted desea, en lugar de pellearse con las carpetas." + +#: ..\..\..\templates\about.tpl.php:9 +#, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "<strong><a href=\"register.php\">Registrese ahora</a></strong> para usar %s!" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "Adelante" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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 <a href=\"http://sourceforge.net/projects/scuttle/\">un proyecto de codigo abierto</a> licenciado bajo <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. Esto quiere decir que usted puede instalarlo en su propio web server para uso libre, en una red privada o en su propia computadora." + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 <a href=\"http://del.icio.us/doc/api\"><abbr title=\"Application Programming Interface\">API</abbr></a> de <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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." + +#: ..\..\..\templates\bookmarks.tpl.php:17 +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Sort by:" +msgstr "Por:" + +#: ..\..\..\templates\bookmarks.tpl.php:18 +msgid "Date" +msgstr "Fecha" + +#: ..\..\..\templates\bookmarks.tpl.php:19 +#: ..\..\..\templates\editbookmark.tpl.php:34 +msgid "Title" +msgstr "Título" + +#: ..\..\..\templates\bookmarks.tpl.php:23 +msgid "URL" +msgstr "URL" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Edit" +msgstr "Editar" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Delete" +msgstr "Borrar" + +#: ..\..\..\templates\bookmarks.tpl.php:66 +msgid "by" +msgstr "por" + +#: ..\..\..\templates\bookmarks.tpl.php:78 +#, fuzzy, php-format +msgid " and %s1 other%s" +msgstr " y %s mas" + +#: ..\..\..\templates\bookmarks.tpl.php:81 +#, fuzzy, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " y %s mas" + +#: ..\..\..\templates\bookmarks.tpl.php:90 +msgid "Copy" +msgstr "Copiar" + +#: ..\..\..\templates\bookmarks.tpl.php:136 +#: ..\..\..\templates\bookmarks.tpl.php:142 +msgid "First" +msgstr "Primera" + +#: ..\..\..\templates\bookmarks.tpl.php:137 +#: ..\..\..\templates\bookmarks.tpl.php:143 +msgid "Previous" +msgstr "Anterior" + +#: ..\..\..\templates\bookmarks.tpl.php:150 +#: ..\..\..\templates\bookmarks.tpl.php:153 +msgid "Next" +msgstr "Siguiente" + +#: ..\..\..\templates\bookmarks.tpl.php:151 +#: ..\..\..\templates\bookmarks.tpl.php:154 +msgid "Last" +msgstr "Última" + +#: ..\..\..\templates\bookmarks.tpl.php:156 +#, php-format +msgid "Page %d of %d" +msgstr "Página %d de %d" + +#: ..\..\..\templates\bookmarks.tpl.php:160 +msgid "No bookmarks available" +msgstr "No hay enlaces disponibles" + +#: ..\..\..\templates\dynamictags.inc.php:108 +#: ..\..\..\templates\sidebar.block.common.php:15 +#: ..\..\..\templates\sidebar.block.popular.php:21 +#: ..\..\..\templates\sidebar.block.recent.php:20 +#: ..\..\..\templates\tags.tpl.php:16 +#, fuzzy +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "enlace" +msgstr[1] "enlaces" + +#: ..\..\..\templates\editbookmark.tpl.php:29 +msgid "Address" +msgstr "Dirección" + +#: ..\..\..\templates\editbookmark.tpl.php:31 +#: ..\..\..\templates\editbookmark.tpl.php:36 +#: ..\..\..\templates\editprofile.tpl.php:31 +msgid "Required" +msgstr "Requerido" + +#: ..\..\..\templates\editbookmark.tpl.php:39 +#: ..\..\..\templates\editprofile.tpl.php:47 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "Descripción" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "Con comas" + +#: ..\..\..\templates\editbookmark.tpl.php:49 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Permisos" + +#: ..\..\..\templates\editbookmark.tpl.php:52 +#: ..\..\..\templates\importDelicious.tpl.php:18 +#: ..\..\..\templates\importNetscape.tpl.php:19 +msgid "Public" +msgstr "Público" + +#: ..\..\..\templates\editbookmark.tpl.php:53 +#: ..\..\..\templates\importDelicious.tpl.php:19 +#: ..\..\..\templates\importNetscape.tpl.php:20 +msgid "Shared with Watch List" +msgstr "Compartido en Consultados" + +#: ..\..\..\templates\editbookmark.tpl.php:54 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Private" +msgstr "Privado" + +#: ..\..\..\templates\editbookmark.tpl.php:66 +msgid "Delete Bookmark" +msgstr "Borrar enlace" + +#: ..\..\..\templates\editbookmark.tpl.php:93 +msgid "Bookmarklet" +msgstr "Marcadores" + +#: ..\..\..\templates\editbookmark.tpl.php:94 +#, 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" + +#: ..\..\..\templates\editbookmark.tpl.php:106 +#, php-format +msgid "Post to %s" +msgstr "Agregar a %s" + +#: ..\..\..\templates\editbookmark.tpl.php:107 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Agregar a %s (Pop-up)" + +#: ..\..\..\templates\editbookmark.tpl.php:111 +#: ..\..\..\templates\importDelicious.tpl.php:26 +#: ..\..\..\templates\importNetscape.tpl.php:27 +msgid "Import" +msgstr "Importar" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Import bookmarks from bookmark file" +msgstr "Improtar enlaces de un archivo" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox y Netscape" + +#: ..\..\..\templates\editbookmark.tpl.php:114 +msgid "Import bookmarks from del.icio.us" +msgstr "Importar los enlaces de del.icio.us" + +#: ..\..\..\templates\editprofile.tpl.php:10 +msgid "Account Details" +msgstr "Detalles de usuario" + +#: ..\..\..\templates\editprofile.tpl.php:14 +#: ..\..\..\templates\login.tpl.php:15 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:16 +msgid "Username" +msgstr "Usuario" + +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "New Password" +msgstr "Nueva clave" + +#: ..\..\..\templates\editprofile.tpl.php:24 +#, fuzzy +msgid "Confirm Password" +msgstr "Confirmar la clave" + +#: ..\..\..\templates\editprofile.tpl.php:29 +#: ..\..\..\templates\register.tpl.php:26 +msgid "E-mail" +msgstr "Correo" + +#: ..\..\..\templates\editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "Datos del usuario" + +#: ..\..\..\templates\editprofile.tpl.php:39 +#: ..\..\..\templates\profile.tpl.php:12 +msgid "Name" +msgstr "Nombre" + +#: ..\..\..\templates\editprofile.tpl.php:43 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "Página web" + +#: ..\..\..\templates\error.404.tpl.php:5 +msgid "Not Found" +msgstr "No funciona" + +#: ..\..\..\templates\error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "No se encontró la URL solicitada" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "Error general del servidor" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "La URL solicitada no puede ser encontrada" + +#: ..\..\..\templates\importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Registrese para <a href=\"http://del.icio.us/api/posts/all\">exportar la pagina a del.icio.us</a>" + +#: ..\..\..\templates\importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Guardar los resultados en un archivo <abbr title=\"Extensible Markup Language\">XML</abbr> de su ordenador" + +#: ..\..\..\templates\importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Pulse <kbd>Examinar...</kbd> para buscar el archivo en su ordenador. El tamaรฑo maximo no puede ser superior a 1MB" + +#: ..\..\..\templates\importDelicious.tpl.php:36 +#: ..\..\..\templates\importNetscape.tpl.php:43 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "Elija los permisos para los enlaces importados" + +#: ..\..\..\templates\importDelicious.tpl.php:37 +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "Pulse <kbd>Importar</kbd> para comenzar a importar los enlaces, esto puede tartar algunos minutos" + +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "Instrucciones" + +#: ..\..\..\templates\importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "Expote sus enlaces a su navegador a un archivo" + +#: ..\..\..\templates\importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>Archivo > Importar y Exportar... > Exportar Favoritos" + +#: ..\..\..\templates\importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Enlaces > Manejar Enlaces... > Archivo > Exportar..." + +#: ..\..\..\templates\importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Enlaces > Manejar Enlaces... > Utilidades > Exportar..." + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Pulse <kbd>Examinar...</kbd> para buscar los enlaces guardados en un archivo de us ordenador. El tamaรฑo maximo no puede ser superior a 1MB" + +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\register.tpl.php:21 +msgid "Password" +msgstr "Clave" + +#: ..\..\..\templates\login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Recordar mi clave 2 semanas" + +#: ..\..\..\templates\login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "Olvido su clave?" + +#: ..\..\..\templates\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" + +#: ..\..\..\templates\password.tpl.php:14 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "<abbr title=\"Electronic mail\">Correo</abbr>" + +#: ..\..\..\templates\password.tpl.php:19 +#, fuzzy +msgid "Generate Password" +msgstr "Nueva clave" + +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "Miembro desde" + +#: ..\..\..\templates\profile.tpl.php:35 +#: ..\..\..\templates\sidebar.block.watchlist.php:8 +#, fuzzy +msgid "Watching" +msgstr "Consultados" + +#: ..\..\..\templates\profile.tpl.php:50 +msgid "Watched By" +msgstr "Consultado de" + +#: ..\..\..\templates\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" + +#: ..\..\..\templates\rss.tpl.php:9 +#, fuzzy, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Enlaces recientes agregados a %s" + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +msgid "No bookmarks found" +msgstr "No se han encontrado enlaces" + +#: ..\..\..\templates\sidebar.block.recent.php:15 +msgid "Recent Tags" +msgstr "Recientes" + +#: ..\..\..\templates\sidebar.block.related.php:15 +msgid "Related Tags" +msgstr "Etiquetas mencionadas" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "Borrar de Consultados" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "Agregar a Consultados" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:17 +#, fuzzy +msgid "Actions" +msgstr "Instrucciones" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Alphabet" +msgstr "Alfabético" + +#: ..\..\..\templates\tags.tpl.php:9 +#, fuzzy +msgid "Popularity" +msgstr "Mas visitadas" + +#: ..\..\..\templates\toolbar.inc.php:11 +#, fuzzy +msgid "Bookmarks" +msgstr "Enlaces" + +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "Salir" + diff --git a/data/locales/fr_CA/LC_MESSAGES/messages.mo b/data/locales/fr_CA/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..b750f12 --- /dev/null +++ b/data/locales/fr_CA/LC_MESSAGES/messages.mo diff --git a/data/locales/fr_CA/LC_MESSAGES/messages.po b/data/locales/fr_CA/LC_MESSAGES/messages.po new file mode 100644 index 0000000..4bdb4b9 --- /dev/null +++ b/data/locales/fr_CA/LC_MESSAGES/messages.po @@ -0,0 +1,1186 @@ +# Scuttle fr-FR Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# <toony.sf@chezouam.net> +# nitram <nitram@no-log.org> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-24 19:03+0200\n" +"PO-Revision-Date: 2008-04-24 19:07+0100\n" +"Last-Translator: BenjaminHKB <benjamin.huynh-kim-bang@loria.fr>\n" +"Language-Team: fr-FR <toony.sf@chezouam.net>\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" + +#: ../../../about.php:25 +#: ../../../templates/toolbar.inc.php:16 +#: ../../../templates/toolbar.inc.php:25 +msgid "About" +msgstr "ร propos" + +#: ../../../ajaxDelete.php:30 +msgid "You are not allowed to delete this bookmark" +msgstr "Vous n'รชtes pas autorisรฉs ร supprimer ce signet" + +#: ../../../ajaxDelete.php:34 +#: ../../../edit.php:78 +msgid "Failed to delete bookmark" +msgstr "Erreur dans la suppression du signet" + +#: ../../../alltags.php:48 +msgid "All Tags" +msgstr "Tous les mots-clés" + +#: ../../../alltags.php:57 +#: ../../../bookmarks.php:72 +#: ../../../populartags.php:58 +#: ../../../profile.php:44 +#: ../../../rss.php:62 +#: ../../../search.php:88 +#: ../../../watch.php:34 +#: ../../../watchlist.php:61 +#, php-format +msgid "User with username %s was not found" +msgstr "L'utilisateur %s n'a pas รฉtรฉ trouvรฉ." + +#: ../../../bookmarkcommondescriptionedit.php:35 +#: ../../../tag2tagadd.php:31 +#: ../../../tag2tagdelete.php:31 +#: ../../../tag2tagedit.php:31 +#: ../../../tagcommondescriptionedit.php:35 +#: ../../../tagedit.php:34 +msgid "Permission denied." +msgstr "Permission non accordรฉe." + +#: ../../../bookmarkcommondescriptionedit.php:45 +msgid "Bookmark common description updated" +msgstr "Description commune du signet mise ร jour." + +#: ../../../bookmarkcommondescriptionedit.php:48 +msgid "Failed to update the bookmark common description" +msgstr "Erreur dans la mise ร jour de la description du signet" + +#: ../../../bookmarkcommondescriptionedit.php:57 +msgid "Edit Bookmark Common Description" +msgstr "Editer la description commune du signet" + +#: ../../../bookmarks.php:95 +#: ../../../edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "Votre signet doit avoir un titre et une adresse." + +#: ../../../bookmarks.php:115 +#: ../../../edit.php:58 +msgid "Bookmark saved" +msgstr "Signet enregistrรฉ." + +#: ../../../bookmarks.php:123 +#: ../../../import.php:99 +#: ../../../importNetscape.php:74 +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." + +#: ../../../bookmarks.php:161 +#: ../../../templates/toolbar.inc.php:14 +msgid "Add a Bookmark" +msgstr "Ajouter un signet" + +#: ../../../bookmarks.php:164 +msgid "Add Bookmark" +msgstr "Ajouter signet" + +#: ../../../bookmarks.php:167 +msgid "You must be logged in before you can add bookmarks." +msgstr "Vous devez รชtre authentifiรฉ avant de pouvoir ajouter des signets." + +#: ../../../bookmarks.php:218 +msgid "My Bookmarks" +msgstr "Mes signets" + +#: ../../../edit.php:29 +msgid "Edit Bookmark" +msgstr "Editer le signet" + +#: ../../../edit.php:34 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "Signet %s non trouvรฉ" + +#: ../../../edit.php:39 +msgid "You are not allowed to edit this bookmark" +msgstr "Vous n'รชtes pas autorisรฉ ร รฉditer ce signet." + +#: ../../../edit.php:55 +msgid "Error while saving your bookmark" +msgstr "Erreur pendant l'enregistrement de votre signet." + +#: ../../../edit.php:88 +#: ../../../templates/editprofile.tpl.php:51 +msgid "Save Changes" +msgstr "Enregistrer les modifications" + +#: ../../../functions.inc.php:108 +msgid "message_die() was called multiple times." +msgstr "message_die() was called multiple times. ?" + +#: ../../../functions.inc.php:120 +msgid "SQL Error" +msgstr "Erreur SQL" + +#: ../../../functions.inc.php:126 +msgid "Line" +msgstr "Ligne" + +#: ../../../functions.inc.php:126 +#: ../../../templates/importDelicious.tpl.php:8 +#: ../../../templates/importNetscape.tpl.php:9 +msgid "File" +msgstr "Fichier" + +#: ../../../functions.inc.php:132 +msgid "Information" +msgstr "Information" + +#: ../../../functions.inc.php:137 +msgid "Critical Information" +msgstr "Information critique." + +#: ../../../functions.inc.php:142 +msgid "An error occured" +msgstr "Une erreur s'est produite." + +#: ../../../functions.inc.php:145 +msgid "General Error" +msgstr "Erreur gรฉnรฉrale." + +#: ../../../functions.inc.php:153 +msgid "An critical error occured" +msgstr "Une erreur critique s'est produite." + +#: ../../../functions.inc.php:156 +msgid "Critical Error" +msgstr "Erreur critique." + +#: ../../../functions.inc.php:165 +msgid "DEBUG MODE" +msgstr "Mode de dรฉbogage." + +#: ../../../history.php:65 +msgid "History" +msgstr "Historique" + +#: ../../../history.php:66 +#, php-format +msgid "History for %s" +msgstr "Historique de %s" + +#: ../../../history.php:82 +msgid "Address was not found" +msgstr "L'adresse n'a pas รฉtรฉ trouvรฉe." + +#: ../../../import.php:41 +msgid "Could not open XML input" +msgstr "Impossible d'ouvrir le flux XML." + +#: ../../../import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "Erreur XML: %s ร la ligne %d" + +#: ../../../import.php:54 +msgid "Import Bookmarks from del.icio.us" +msgstr "Importer les signet depuis del.icio.us" + +#: ../../../import.php:86 +#: ../../../importNetscape.php:64 +msgid "You have already submitted this bookmark." +msgstr "Vous avez dรฉjร enregistrรฉ ce signet." + +#: ../../../import.php:97 +#: ../../../importNetscape.php:72 +msgid "Bookmark imported." +msgstr "Signet importรฉ." + +#: ../../../importNetscape.php:81 +msgid "Import Bookmarks from Browser File" +msgstr "Importer les signets depuis un fichier" + +#: ../../../index.php:32 +msgid "You have now logged out" +msgstr "Vous รชtes maintenant dรฉconnectรฉ." + +#: ../../../index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Signets rรฉcents" + +#: ../../../index.php:73 +msgid "Store, share and tag your favourite links" +msgstr "Conservez, partagez et libellez vos liens favoris" + +#: ../../../index.php:74 +msgid "All Bookmarks" +msgstr "Tous les signets" + +#: ../../../jsScuttle.php:22 +#: ../../../templates/tag2tagadd.tpl.php:21 +#: ../../../templates/tag2tagdelete.tpl.php:13 +#: ../../../templates/tag2tagedit.tpl.php:14 +#: ../../../templates/tag2tagedit.tpl.php:35 +#: ../../../templates/tagdelete.tpl.php:6 +msgid "Are you sure?" +msgstr "Etes-vous sรปr ?" + +#: ../../../jsScuttle.php:22 +#: ../../../templates/tag2tagdelete.tpl.php:15 +#: ../../../templates/tag2tagedit.tpl.php:16 +#: ../../../templates/tagdelete.tpl.php:8 +msgid "Yes" +msgstr "Oui" + +#: ../../../jsScuttle.php:22 +#: ../../../templates/tag2tagdelete.tpl.php:16 +#: ../../../templates/tag2tagedit.tpl.php:17 +#: ../../../templates/tagdelete.tpl.php:9 +msgid "No" +msgstr "Non" + +#: ../../../jsScuttle.php:68 +msgid "Available" +msgstr "Disponible" + +#: ../../../jsScuttle.php:71 +msgid "Not Available" +msgstr "Non Disponible" + +#: ../../../login.php:38 +msgid "The details you have entered are incorrect. Please try again." +msgstr "Les informations que vous avez entrรฉes sont incorrectes. Veuillez recommencer." + +#: ../../../login.php:48 +#: ../../../templates/login.tpl.php:26 +#: ../../../templates/toolbar.inc.php:26 +msgid "Log In" +msgstr "Se connecter" + +#: ../../../password.php:31 +msgid "You must enter your username." +msgstr "Vous devez entrer votre nom d'utilisateur." + +#: ../../../password.php:35 +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Vous <em>devez</em> saisir une <abbr title=\"adresse รฉlectronique\">E-mail</abbr>." + +#: ../../../password.php:42 +msgid "No matches found for that username." +msgstr "Rien de trouvรฉ pour ce nom d'utilisateur." + +#: ../../../password.php:45 +#, fuzzy +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Nous n'avons rien trouvรฉ pour cette combinaison de nom d'utilisateur et d'<abbr title=\"adresse mail\">e-mail</abbr>." + +#: ../../../password.php:53 +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." + +#: ../../../password.php:57 +msgid "Your new password is:" +msgstr "Votre nouveau mot de passe est:" + +#: ../../../password.php:57 +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." + +#: ../../../password.php:60 +#, php-format +msgid "%s Account Information" +msgstr "Informations du compte de %s" + +#: ../../../password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "Nouveau mot de passe gรฉnรฉrรฉ et envoyรฉ ร l'adresse %s" + +#: ../../../password.php:69 +msgid "Forgotten Password" +msgstr "Mot de passe oubliรฉ" + +#: ../../../populartags.php:49 +#: ../../../templates/dynamictags.inc.php:101 +#: ../../../templates/sidebar.block.common.php:9 +#: ../../../templates/sidebar.block.menu.php:68 +#: ../../../templates/sidebar.block.popular.php:15 +#: ../../../templates/sidebar.block.recent.php:30 +#: ../../../templates/toolbar.inc.php:24 +msgid "Popular Tags" +msgstr "Mots-clés populaires" + +#: ../../../profile.php:52 +#: ../../../watchlist.php:116 +msgid "Username was not specified" +msgstr "Le nom d'utilisateur n'a pas รฉtรฉ spรฉcifiรฉ." + +#: ../../../profile.php:58 +msgid "My Profile" +msgstr "Mon Profil" + +#: ../../../profile.php:60 +#: ../../../templates/toolbar.inc.php:13 +msgid "Profile" +msgstr "Profil" + +#: ../../../profile.php:78 +msgid "Password and confirmation do not match." +msgstr "Le mot de passe et sa vรฉrification ne correspondent pas." + +#: ../../../profile.php:82 +msgid "Password must be at least 6 characters long." +msgstr "Le mot de passe doit avoir au moins 6 caractรจres." + +#: ../../../profile.php:86 +msgid "E-mail address is not valid." +msgstr "Adresse de courrier รฉlectronique invalide." + +#: ../../../profile.php:90 +msgid "An error occurred while saving your changes." +msgstr "Une erreur s'est produite pendant l'enregistrement de vos modifications." + +#: ../../../profile.php:92 +msgid "Changes saved." +msgstr "Modifications enregistrรฉes." + +#: ../../../register.php:33 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "Vous <em>devez</em> saisir un nom d'utilisateur, un mot de passe, un nom et un <abbr title=\"adresse รฉlectronique\">e-mail</abbr>" + +#: ../../../register.php:37 +msgid "This username has been reserved, please make another choice." +msgstr "Ce nom d'utilisateur existe dรฉjร , veuillez en choisir un autre." + +#: ../../../register.php:41 +msgid "This username already exists, please make another choice." +msgstr "Ce nom d'utilisateur existe dรฉjร , veuillez en choisir un autre." + +#: ../../../register.php:45 +msgid "E-mail address is not valid. Please try again." +msgstr "Adresse de courrier รฉlectronique invalide. Veuilez rรฉessayer." + +#: ../../../register.php:49 +msgid "Antispam answer is not valid. Please try again." +msgstr "La rรฉponse antispam n'est pas valide. Veuillez rรฉessayer." + +#: ../../../register.php:58 +msgid "You have successfully registered. Enjoy!" +msgstr "Votre inscription a bien รฉtรฉ prise en compte !" + +#: ../../../register.php:60 +msgid "Registration failed. Please try again." +msgstr "Enregistrement ratรฉ. Veuillez rรฉรฉssayer." + +#: ../../../register.php:66 +#: ../../../templates/register.tpl.php:41 +#: ../../../templates/toolbar.inc.php:27 +msgid "Register" +msgstr "S'enregistrer" + +#: ../../../rss.php:79 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Signets ajoutรฉs rรฉcemment ร %s" + +#: ../../../search.inc.php:13 +#: ../../../search.inc.php:41 +msgid "Search" +msgstr "Chercher dans" + +#: ../../../search.inc.php:19 +msgid "this user's bookmarks" +msgstr "les signets de cet utilisateur" + +#: ../../../search.inc.php:24 +msgid "my bookmarks" +msgstr "mes signets" + +#: ../../../search.inc.php:25 +msgid "my watchlist" +msgstr "ma liste des consultรฉs" + +#: ../../../search.inc.php:29 +msgid "all bookmarks" +msgstr "tous les signets" + +#: ../../../search.inc.php:32 +msgid "for" +msgstr "pour" + +#: ../../../search.php:59 +#: ../../../search.php:108 +msgid "Search Bookmarks" +msgstr "Recherche de signets" + +#: ../../../search.php:65 +msgid "Search Results" +msgstr "Rรฉsultats de recherche" + +#: ../../../tag2tagadd.php:44 +msgid "Tag link created" +msgstr "Lien entre mot-clé crรฉรฉ." + +#: ../../../tag2tagadd.php:47 +msgid "Failed to create the link" +msgstr "Impossible de crรฉer le lien" + +#: ../../../tag2tagadd.php:58 +msgid "Add Tag Link" +msgstr "Ajout d'un lien entre mots-clés" + +#: ../../../tag2tagdelete.php:43 +#: ../../../tag2tagedit.php:43 +msgid "Tag link deleted" +msgstr "Effacement d'un lien entre mots-clés" + +#: ../../../tag2tagdelete.php:46 +#: ../../../tag2tagedit.php:46 +msgid "Failed to delete the link" +msgstr "Impossible d'effacer le lien" + +#: ../../../tag2tagdelete.php:58 +msgid "Delete Link Between Tags" +msgstr "Effacer un lien entre mots-clés" + +#: ../../../tag2tagedit.php:58 +msgid "Edit Link Between Tags" +msgstr "Editer un lien entre mots-clés" + +#: ../../../tagcommondescriptionedit.php:45 +msgid "Tag common description updated" +msgstr "Editer la description commune du mot-clé" + +#: ../../../tagcommondescriptionedit.php:48 +msgid "Failed to update the tag common description" +msgstr "Impossible de mettre ร jour la description commune du mot-clé" + +#: ../../../tagcommondescriptionedit.php:55 +#: ../../../templates/sidebar.block.tagactions.php:27 +msgid "Edit Tag Common Description" +msgstr "Editer la description commune du mot-clé" + +#: ../../../tagdelete.php:33 +msgid "Tag deleted" +msgstr "Mot-clé effacรฉ" + +#: ../../../tagdelete.php:36 +msgid "Failed to delete the tag" +msgstr "Impossible d'effacer le mot-clé" + +#: ../../../tagdelete.php:44 +#: ../../../templates/sidebar.block.tagactions.php:23 +msgid "Delete Tag" +msgstr "Supprimer le mot-clé" + +#: ../../../tagedit.php:44 +msgid "Tag description updated" +msgstr "Description du mot-clé mise ร jour" + +#: ../../../tagedit.php:47 +msgid "Failed to update the tag description" +msgstr "Impossible de mettre ร jour la description du mot-clé" + +#: ../../../tagedit.php:54 +#: ../../../templates/sidebar.block.tagactions.php:25 +msgid "Edit Tag Description" +msgstr "Editer la description du mot-clé" + +#: ../../../tagrename.php:50 +msgid "Tag renamed" +msgstr "Mot-clé renommรฉ" + +#: ../../../tagrename.php:54 +msgid "Failed to rename the tag" +msgstr "Erreur dans le renommage du mot-clé" + +#: ../../../tagrename.php:61 +#: ../../../templates/sidebar.block.tagactions.php:10 +msgid "Rename Tag" +msgid_plural "Rename Tags" +msgstr[0] "Renommer le mot-clé" +msgstr[1] "Renommer les mots-clés" + +#: ../../../tags.php:38 +#: ../../../templates/editbookmark.tpl.php:44 +#: ../../../templates/toolbar.inc.php:11 +msgid "Tags" +msgstr "Mots-clรฉs" + +#: ../../../users.php:33 +msgid "Users" +msgstr "Utilisateurs" + +#: ../../../watch.php:46 +msgid "User removed from your watchlist" +msgstr "Utilisateur enlevรฉ de votre liste des consultรฉs" + +#: ../../../watch.php:48 +msgid "User added to your watchlist" +msgstr "Utilisateur ajoutรฉ ร la liste des consultรฉs." + +#: ../../../watchlist.php:103 +#, fuzzy +msgid "My Watchlist" +msgstr "Liste des signets vus" + +#: ../../../watchlist.php:105 +#: ../../../templates/toolbar.inc.php:12 +#, fuzzy +msgid "Watchlist" +msgstr "Liste des signets vus" + +#: ../../../templates/about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "<strong>Conservez</strong> tous vos signets au mรชme endroit, accessibles de partout. " + +#: ../../../templates/about.tpl.php:7 +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "<strong>Partagez</strong> vos signets avec tout le monde, avec les utilisateurs autorisรฉs ou gardez-les pour vous." + +#: ../../../templates/about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "<strong>Taggez</strong> vos signets avec autant de labels que vous le souhaitez au lieu de les hiรฉrarchiser avec des dossiers." + +#: ../../../templates/about.tpl.php:9 +msgid "Register now" +msgstr "S'enregistrer maintenant" + +#: ../../../templates/about.tpl.php:9 +#, php-format +msgid " to start using %s!" +msgstr "pour commencer ร employer %s !" + +#: ../../../templates/about.tpl.php:12 +msgid "Geek Stuff" +msgstr "Pour les Geeks" + +#: ../../../templates/about.tpl.php:14 +msgid "is licensed under the " +msgstr "est sous licence" + +#: ../../../templates/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" + +#: ../../../templates/about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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'<a href=\"http://del.icio.us/doc/api\"><abbr title=\"Application Programming Interface\">API</abbr> del.icio.us</a>." + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:15 +#: ../../../templates/bookmarks.tpl.php:67 +#: ../../../templates/editbookmark.tpl.php:34 +msgid "Title" +msgstr "Titre" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:20 +#: ../../../templates/editbookmark.tpl.php:39 +#: ../../../templates/editprofile.tpl.php:46 +#: ../../../templates/profile.tpl.php:28 +#: ../../../templates/tagcommondescriptionedit.tpl.php:13 +#: ../../../templates/tagedit.tpl.php:13 +msgid "Description" +msgstr "Description" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:28 +#: ../../../templates/tagcommondescriptionedit.tpl.php:21 +msgid "Last modification:" +msgstr "Derniรจre modification :" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:39 +#: ../../../templates/tagcommondescriptionedit.tpl.php:32 +#: ../../../templates/tagedit.tpl.php:19 +msgid "Update" +msgstr "Mettre ร jour" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:40 +#: ../../../templates/tag2tagadd.tpl.php:24 +#: ../../../templates/tag2tagedit.tpl.php:38 +#: ../../../templates/tagcommondescriptionedit.tpl.php:33 +#: ../../../templates/tagedit.tpl.php:20 +#: ../../../templates/tagrename.tpl.php:25 +msgid "Cancel" +msgstr "Annuler" + +#: ../../../templates/bookmarks.tpl.php:34 +#: ../../../templates/bookmarks.tpl.php:37 +msgid "edit common description" +msgstr "รฉditer la description commune" + +#: ../../../templates/bookmarks.tpl.php:64 +msgid "bookmark(s)" +msgstr "signet(s)" + +#: ../../../templates/bookmarks.tpl.php:65 +#: ../../../templates/tags.tpl.php:10 +#: ../../../templates/users.tpl.php:8 +msgid "Sort by:" +msgstr "Classer par :" + +#: ../../../templates/bookmarks.tpl.php:66 +msgid "Date" +msgstr "Date" + +#: ../../../templates/bookmarks.tpl.php:71 +msgid "URL" +msgstr "URL" + +#: ../../../templates/bookmarks.tpl.php:81 +msgid "Bookmarks from other users for this tag" +msgstr "Signets des autres utilisateurs pour ce mot-clé" + +#: ../../../templates/bookmarks.tpl.php:86 +msgid "Only your bookmarks for this tag" +msgstr "Uniquement vos signets pour ce mot-clé" + +#: ../../../templates/bookmarks.tpl.php:129 +msgid "Edit" +msgstr "Editer" + +#: ../../../templates/bookmarks.tpl.php:129 +msgid "Delete" +msgstr "Supprimer" + +#: ../../../templates/bookmarks.tpl.php:135 +msgid "by" +msgstr "par" + +#: ../../../templates/bookmarks.tpl.php:139 +msgid "to" +msgstr "dans" + +#: ../../../templates/bookmarks.tpl.php:147 +#, fuzzy, php-format +msgid " and %s1 other%s" +msgstr " et les autres %s" + +#: ../../../templates/bookmarks.tpl.php:150 +#, fuzzy, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " et les autres %s" + +#: ../../../templates/bookmarks.tpl.php:159 +msgid "Copy" +msgstr "Copier" + +#: ../../../templates/bookmarks.tpl.php:218 +#: ../../../templates/bookmarks.tpl.php:224 +msgid "First" +msgstr "Premiรจre" + +#: ../../../templates/bookmarks.tpl.php:219 +#: ../../../templates/bookmarks.tpl.php:225 +msgid "Previous" +msgstr "Prรฉcรฉdent" + +#: ../../../templates/bookmarks.tpl.php:232 +#: ../../../templates/bookmarks.tpl.php:235 +msgid "Next" +msgstr "Suivant" + +#: ../../../templates/bookmarks.tpl.php:233 +#: ../../../templates/bookmarks.tpl.php:236 +msgid "Last" +msgstr "Derniรจre" + +#: ../../../templates/bookmarks.tpl.php:246 +#, php-format +msgid "Page %d of %d" +msgstr "Page %d de %d" + +#: ../../../templates/bookmarks.tpl.php:252 +msgid "No bookmarks available" +msgstr "Pas de signets disponibles." + +#: ../../../templates/dynamictags.inc.php:108 +#: ../../../templates/sidebar.block.common.php:20 +#: ../../../templates/sidebar.block.popular.php:26 +#: ../../../templates/sidebar.block.recent.php:25 +#: ../../../templates/tags.tpl.php:19 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "signet" +msgstr[1] "Signets" + +#: ../../../templates/editbookmark.tpl.php:29 +msgid "Address" +msgstr "Adresse" + +#: ../../../templates/editbookmark.tpl.php:31 +#: ../../../templates/editbookmark.tpl.php:36 +#: ../../../templates/editprofile.tpl.php:30 +#: ../../../templates/tagrename.tpl.php:14 +#: ../../../templates/tagrename.tpl.php:19 +msgid "Required" +msgstr "Requis" + +#: ../../../templates/editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "Sรฉparรฉs par des virgules" + +#: ../../../templates/editbookmark.tpl.php:50 +#: ../../../templates/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" + +#: ../../../templates/editbookmark.tpl.php:54 +#: ../../../templates/mot-clé2tagadd.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" + +#: ../../../templates/editbookmark.tpl.php:57 +#: ../../../templates/importDelicious.tpl.php:15 +#: ../../../templates/importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Vision" + +#: ../../../templates/editbookmark.tpl.php:60 +#: ../../../templates/importDelicious.tpl.php:18 +#: ../../../templates/importNetscape.tpl.php:19 +msgid "Public" +msgstr "Publique" + +#: ../../../templates/editbookmark.tpl.php:61 +msgid "Shared with Watch List" +msgstr "Partagรฉ avec liste d'accรจs" + +#: ../../../templates/editbookmark.tpl.php:62 +#: ../../../templates/importDelicious.tpl.php:20 +#: ../../../templates/importNetscape.tpl.php:21 +msgid "Private" +msgstr "Privรฉe" + +#: ../../../templates/editbookmark.tpl.php:74 +msgid "Delete Bookmark" +msgstr "Supprimer le signet" + +#: ../../../templates/editbookmark.tpl.php:101 +msgid "Bookmarklet" +msgstr "Bookmarklet" + +#: ../../../templates/editbookmark.tpl.php:102 +#, 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 " + +#: ../../../templates/editbookmark.tpl.php:114 +#, php-format +msgid "Post to %s" +msgstr "Ajouter ร %s" + +#: ../../../templates/editbookmark.tpl.php:115 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Ajouter ร %s (Pop-up)" + +#: ../../../templates/editbookmark.tpl.php:119 +#: ../../../templates/importDelicious.tpl.php:26 +#: ../../../templates/importNetscape.tpl.php:27 +msgid "Import" +msgstr "Importer" + +#: ../../../templates/editbookmark.tpl.php:121 +msgid "Import bookmarks from bookmark file" +msgstr "Importer les signets depuis un fichier" + +#: ../../../templates/editbookmark.tpl.php:121 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox et Netscape" + +#: ../../../templates/editbookmark.tpl.php:122 +msgid "Import bookmarks from del.icio.us" +msgstr "Importer les signets depuis del.icio.us" + +#: ../../../templates/editprofile.tpl.php:9 +msgid "Account Details" +msgstr "Dรฉtail du compte" + +#: ../../../templates/editprofile.tpl.php:13 +#: ../../../templates/login.tpl.php:15 +#: ../../../templates/password.tpl.php:10 +#: ../../../templates/profile.tpl.php:7 +#: ../../../templates/register.tpl.php:16 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: ../../../templates/editprofile.tpl.php:18 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: ../../../templates/editprofile.tpl.php:23 +msgid "Confirm Password" +msgstr "Confirmer le mot de passe" + +#: ../../../templates/editprofile.tpl.php:28 +#: ../../../templates/password.tpl.php:14 +#: ../../../templates/register.tpl.php:26 +msgid "E-mail" +msgstr "E-mail" + +#: ../../../templates/editprofile.tpl.php:34 +msgid "Personal Details" +msgstr "Dรฉtails personnels" + +#: ../../../templates/editprofile.tpl.php:38 +#: ../../../templates/profile.tpl.php:12 +msgid "Name" +msgstr "Nom" + +#: ../../../templates/editprofile.tpl.php:42 +#: ../../../templates/profile.tpl.php:18 +msgid "Homepage" +msgstr "Page personnelle" + +#: ../../../templates/editprofile.tpl.php:54 +#: ../../../templates/sidebar.block.tagactions.php:18 +#: ../../../templates/sidebar.block.watchstatus.php:17 +#, fuzzy +msgid "Actions" +msgstr "Instructions" + +#: ../../../templates/editprofile.tpl.php:57 +msgid "Export bookmarks" +msgstr "Exporter les signets" + +#: ../../../templates/editprofile.tpl.php:59 +msgid "HTML file (for browsers)" +msgstr "Fichier HTML (pour navigateurs)" + +#: ../../../templates/editprofile.tpl.php:60 +msgid "XML file (like del.icio.us)" +msgstr "Fichier XML (comme del.icio.us)" + +#: ../../../templates/error.404.tpl.php:5 +msgid "Not Found" +msgstr "Non trouvรฉ" + +#: ../../../templates/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." + +#: ../../../templates/error.500.tpl.php:5 +msgid "General server error" +msgstr "Erreur gรฉnรฉralisรฉe du serveur." + +#: ../../../templates/error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "L'URL demandรฉe n'a pas รฉtรฉ trouvรฉe." + +#: ../../../templates/importDelicious.tpl.php:19 +#: ../../../templates/importNetscape.tpl.php:20 +#, fuzzy +msgid "Shared with Watchlist" +msgstr "Partagรฉ avec liste d'accรจs" + +#: ../../../templates/importDelicious.tpl.php:31 +#: ../../../templates/importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "Instructions" + +#: ../../../templates/importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Se connecter ร la <a href=\"http://del.icio.us/api/posts/all\">page d'export de del.icio.us</a>" + +#: ../../../templates/importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Enregistrer le fichier <abbr title=\"Extensible Markup Language\">XML</abbr> rรฉsultant sur votre ordinateur" + +#: ../../../templates/importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Cliquez sur <kbd>Parcourir...</kbd> pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excรจder 1Mo" + +#: ../../../templates/importDelicious.tpl.php:36 +#: ../../../templates/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" + +#: ../../../templates/importDelicious.tpl.php:37 +#: ../../../templates/importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "Cliquez sur <kbd>Importer</kbd> pour dรฉbuter l'import des signets; cette opรฉration peut prendre quelques minutes" + +#: ../../../templates/importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "Exporter vos signets dans un fichier depuis votre navigateur" + +#: ../../../templates/importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>Ficher > Importer et Exporter... > Exporter les favoris" + +#: ../../../templates/importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Marques-pages > Gรฉrer les marques-pages... > Fichier > Exporter..." + +#: ../../../templates/importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Marques-pages > Gรฉrer les marques-pages... > Outils > Exporter..." + +#: ../../../templates/importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Cliquez sur <kbd>Parcourir...</kbd> pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excรจder 1Mo" + +#: ../../../templates/login.tpl.php:20 +#: ../../../templates/register.tpl.php:21 +msgid "Password" +msgstr "Mot de passe" + +#: ../../../templates/login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Ne pas demander mon mot de passe pendant 2 semaines" + +#: ../../../templates/login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "Avez-vous oubliรฉ votre mot de passe ?" + +#: ../../../templates/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." + +#: ../../../templates/password.tpl.php:19 +msgid "Generate Password" +msgstr "Gรฉnรฉrer un mot de passe" + +#: ../../../templates/profile.tpl.php:23 +msgid "Member Since" +msgstr "Membre depuis" + +#: ../../../templates/profile.tpl.php:35 +#: ../../../templates/sidebar.block.watchlist.php:8 +#, fuzzy +msgid "Watching" +msgstr "Liste des signets vus" + +#: ../../../templates/profile.tpl.php:50 +#, fuzzy +msgid "Watched By" +msgstr "Consultรฉs" + +#: ../../../templates/profile.tpl.php:63 +#: ../../../templates/toolbar.inc.php:10 +msgid "Bookmarks" +msgstr "Signets" + +#: ../../../templates/profile.tpl.php:64 +msgid "Go to bookmarks" +msgstr "Aller aux signets" + +#: ../../../templates/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." + +#: ../../../templates/register.tpl.php:33 +msgid "Antispam question" +msgstr "Question antispam" + +#: ../../../templates/sidebar.block.linked.php:41 +msgid "Linked Tags" +msgstr "Mots-clés structurรฉs" + +#: ../../../templates/sidebar.block.linked.php:55 +#: ../../../templates/sidebar.block.menu.php:40 +msgid "Add new link" +msgstr "Crรฉer un lien" + +#: ../../../templates/sidebar.block.linked.php:56 +#: ../../../templates/sidebar.block.menu.php:41 +msgid "Delete link" +msgstr "Supprimer un lien" + +#: ../../../templates/sidebar.block.menu.php:29 +#, php-format +msgid "Tags included into the tag '%s'" +msgstr "Mots-clés inclus dans le mot-clé '%s'" + +#: ../../../templates/sidebar.block.menu.php:29 +msgid "Menu Tags" +msgstr "Mots-clés Menu" + +#: ../../../templates/sidebar.block.menu.php:62 +msgid "See all your tags" +msgstr "Voir tous vos mots-clés" + +#: ../../../templates/sidebar.block.menu.php:62 +msgid "all your tags" +msgstr "Tous vos mots-clés" + +#: ../../../templates/sidebar.block.menu.php:64 +msgid "See all tags from this user" +msgstr "Voir tous les mots-clés de cet utilisateur" + +#: ../../../templates/sidebar.block.menu.php:64 +msgid "all tags from this user" +msgstr "tous les mots-clés de cet utilisateur" + +#: ../../../templates/sidebar.block.menu.php:68 +#, fuzzy +msgid "See popular tags" +msgstr "Voir tous vos mots-clés" + +#: ../../../templates/sidebar.block.recent.php:15 +msgid "Recent Tags" +msgstr "Mots-clés rรฉcents" + +#: ../../../templates/sidebar.block.related.php:17 +msgid "Related Tags" +msgstr "Mots-clés en relation" + +#: ../../../templates/sidebar.block.search.php:15 +msgid "Last Searches" +msgstr "Derniรจres recherches" + +#: ../../../templates/sidebar.block.search.php:24 +msgid "Number of bookmarks for this query" +msgstr "Nombre de signets pour cette recherche" + +#: ../../../templates/sidebar.block.tagactions.php:29 +msgid "Create a link to another tag" +msgstr "Crรฉer un lien vers un autre mot-clé" + +#: ../../../templates/sidebar.block.users.php:13 +msgid "Last Users" +msgstr "Derniers utilisateurs" + +#: ../../../templates/sidebar.block.users.php:22 +#: ../../../templates/users.tpl.php:17 +msgid "bookmarks" +msgstr "signets" + +#: ../../../templates/sidebar.block.users.php:29 +#, fuzzy +msgid "See all users" +msgstr "Voir tous vos mots-clés" + +#: ../../../templates/sidebar.block.users.php:29 +msgid "All users" +msgstr "Tous les utilisateurs" + +#: ../../../templates/sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "Enlever de la liste des consultรฉs" + +#: ../../../templates/sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "Ajouter ร la liste des consultรฉs" + +#: ../../../templates/sidebar.linkedtags.inc.php:18 +msgid "Edit link" +msgstr "Editer un lien" + +#: ../../../templates/sidebar.linkedtags.inc.php:45 +msgid "Synonyms:" +msgstr "Synonymes :" + +#: ../../../templates/tag2tagadd.tpl.php:12 +msgid "Create new link:" +msgstr "Crรฉer un nouveau lien" + +#: ../../../templates/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" + +#: ../../../templates/tag2tagadd.tpl.php:23 +#: ../../../templates/tag2tagedit.tpl.php:37 +msgid "Create" +msgstr "Crรฉer" + +#: ../../../templates/tag2tagadd.tpl.php:35 +#: ../../../templates/tag2tagdelete.tpl.php:27 +#: ../../../templates/tag2tagedit.tpl.php:51 +msgid "Existing links:" +msgstr "Liens existants :" + +#: ../../../templates/tag2tagadd.tpl.php:53 +#: ../../../templates/tag2tagdelete.tpl.php:45 +#: ../../../templates/tag2tagedit.tpl.php:69 +msgid "No links" +msgstr "Pas de liens" + +#: ../../../templates/tag2tagedit.tpl.php:6 +msgid "Delete the link" +msgstr "Supprimer le lien" + +#: ../../../templates/tag2tagedit.tpl.php:29 +msgid "Create new link" +msgstr "Crรฉer un nouveau lien" + +#: ../../../templates/tagrename.tpl.php:12 +msgid "Old" +msgstr "Ancien" + +#: ../../../templates/tagrename.tpl.php:17 +msgid "New" +msgstr "Nouveau" + +#: ../../../templates/tagrename.tpl.php:24 +msgid "Rename" +msgstr "Renommer" + +#: ../../../templates/tags.tpl.php:11 +#: ../../../templates/users.tpl.php:9 +msgid "Alphabet" +msgstr "Alphabet" + +#: ../../../templates/tags.tpl.php:12 +#: ../../../templates/users.tpl.php:10 +msgid "Popularity" +msgstr "Popularitรฉ" + +#: ../../../templates/toolbar.inc.php:15 +msgid "Log Out" +msgstr "Quitter" + +#: ../../../templates/users.tpl.php:17 +msgid "profile" +msgstr "Profil" + +#: ../../../templates/users.tpl.php:17 +msgid "created in" +msgstr "Crรฉรฉ en " + +#~ msgid "Recent Bookmarks" +#~ msgstr "Signets rรฉcents" +#~ msgid "plus" +#~ msgstr "plus" +#~ msgid "" +#~ "<strong><a href=\"register.php\">Register now</a></strong> to start using " +#~ "%s!" +#~ msgstr "" +#~ "<a href=\"register.php\">Enregistrez-vous maintenant</a> pour poster vos " +#~ "propres signets sur %s !" +#~ msgid "" +#~ "<a href=\"http://sourceforge.net/projects/semanticscuttle/\">Semantic " +#~ "Scuttle</a> is licensed under the <a href=\"http://www.gnu.org/copyleft/" +#~ "gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public " +#~ "License</a> (you can host it on your own web server)." +#~ msgstr "" +#~ "<a href=\"http://sourceforge.net/projects/semanticscuttle/\">Semantic " +#~ "Scuttle</a>, sous license <a href=\"http://www.gnu.org/copyleft/gpl.html" +#~ "\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public " +#~ "License</a> (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 "<abbr title=\"Electronic mail\">E-mail</abbr>" +#~ msgstr "<abbr title=\"Adresse รฉlectronique\">E-mail</abbr>" +#~ msgid "No bookmarks found" +#~ msgstr "Pas de signets trouvรฉs" diff --git a/data/locales/fr_FR/LC_MESSAGES/messages.mo b/data/locales/fr_FR/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..7349b06 --- /dev/null +++ b/data/locales/fr_FR/LC_MESSAGES/messages.mo diff --git a/data/locales/fr_FR/LC_MESSAGES/messages.po b/data/locales/fr_FR/LC_MESSAGES/messages.po new file mode 100644 index 0000000..976be17 --- /dev/null +++ b/data/locales/fr_FR/LC_MESSAGES/messages.po @@ -0,0 +1,1438 @@ +# Scuttle fr-FR Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# <toony.sf@chezouam.net> +# nitram <nitram@no-log.org> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-04 10:50+0200\n" +"PO-Revision-Date: 2009-06-04 10:52+0100\n" +"Last-Translator: BenjaminHKB <benjamin.huynh-kim-bang@loria.fr>\n" +"Language-Team: fr-FR <toony.sf@chezouam.net>\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" + +#: ../../../about.php:23 +#: ../../../about.php:24 +#: ../../../templates/bottom.inc.php:5 +#: ../../../templates/toolbar.inc.php:15 +#: ../../../templates/toolbar.inc.php:28 +msgid "About" +msgstr "ร propos" + +#: ../../../admin.php:32 +msgid "Manage users" +msgstr "Gรฉrer les utilisateurs" + +#: ../../../admin.php:68 +#, php-format +msgid "%s and all his bookmarks and tags were deleted." +msgstr "%s, ses signets et ses tags ont รฉtรฉ effacรฉs." + +#: ../../../admin.php:75 +msgid "Problem with " +msgstr "Problรจme avec " + +#: ../../../ajaxDelete.php:37 +msgid "You are not allowed to delete this bookmark" +msgstr "Vous n'รชtes pas autorisรฉs ร supprimer ce signet" + +#: ../../../ajaxDelete.php:41 +#: ../../../edit.php:103 +msgid "Failed to delete bookmark" +msgstr "Erreur dans la suppression du signet" + +#: ../../../alltags.php:49 +msgid "All Tags" +msgstr "Tous les tags" + +#: ../../../alltags.php:55 +#: ../../../bookmarks.php:96 +#: ../../../populartags.php:52 +#: ../../../profile.php:51 +#: ../../../rss.php:67 +#: ../../../search.php:101 +#: ../../../watch.php:45 +#: ../../../watchlist.php:61 +#, php-format +msgid "User with username %s was not found" +msgstr "L'utilisateur %s n'a pas รฉtรฉ trouvรฉ." + +#: ../../../bookmarkcommondescriptionedit.php:51 +#: ../../../tag2tagadd.php:37 +#: ../../../tag2tagdelete.php:41 +#: ../../../tag2tagedit.php:33 +#: ../../../tagcommondescriptionedit.php:43 +#: ../../../tagedit.php:43 +msgid "Permission denied." +msgstr "Permission non accordรฉe." + +#: ../../../bookmarkcommondescriptionedit.php:60 +msgid "Bookmark common description updated" +msgstr "Description commune du signet mise ร jour." + +#: ../../../bookmarkcommondescriptionedit.php:63 +msgid "Failed to update the bookmark common description" +msgstr "Erreur dans la mise ร jour de la description du signet" + +#: ../../../bookmarkcommondescriptionedit.php:71 +msgid "Edit Bookmark Common Description" +msgstr "Editer la description commune du signet" + +#: ../../../bookmarks.php:111 +#: ../../../tags.php:47 +msgid "Remove the tag from the selection" +msgstr "Retirer le tag de la sรฉlection" + +#: ../../../bookmarks.php:131 +#: ../../../edit.php:65 +msgid "Your bookmark must have a title and an address" +msgstr "Votre signet doit avoir un titre et une adresse." + +#: ../../../bookmarks.php:152 +#: ../../../edit.php:83 +#: ../../../edit.php:86 +msgid "Bookmark saved" +msgstr "Signet enregistrรฉ." + +#: ../../../bookmarks.php:152 +msgid "(Come back to previous page.)" +msgstr "(Revenir ร la page prรฉcรฉdente.)" + +#: ../../../bookmarks.php:159 +#: ../../../import.php:106 +#: ../../../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." + +#: ../../../bookmarks.php:209 +#: ../../../templates/toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Ajouter un signet" + +#: ../../../bookmarks.php:213 +msgid "Add Bookmark" +msgstr "Ajouter signet" + +#: ../../../bookmarks.php:216 +msgid "You must be logged in before you can add bookmarks." +msgstr "Vous devez รชtre authentifiรฉ avant de pouvoir ajouter des signets." + +#: ../../../bookmarks.php:270 +#: ../../../bookmarks.php:271 +msgid "My Bookmarks" +msgstr "Mes signets" + +#: ../../../edit.php:44 +#: ../../../edit.php:45 +msgid "Edit Bookmark" +msgstr "Editer le signet" + +#: ../../../edit.php:51 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "Signet %s non trouvรฉ" + +#: ../../../edit.php:57 +msgid "You are not allowed to edit this bookmark" +msgstr "Vous n'รชtes pas autorisรฉ ร รฉditer ce signet." + +#: ../../../edit.php:77 +msgid "Error while saving your bookmark" +msgstr "Erreur pendant l'enregistrement de votre signet." + +#: ../../../edit.php:113 +#: ../../../templates/editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "Enregistrer les modifications" + +#: ../../../functions.inc.php:144 +msgid "message_die() was called multiple times." +msgstr "message_die() was called multiple times. ?" + +#: ../../../functions.inc.php:156 +msgid "SQL Error" +msgstr "Erreur SQL" + +#: ../../../functions.inc.php:162 +msgid "Line" +msgstr "Ligne" + +#: ../../../functions.inc.php:162 +#: ../../../templates/importDelicious.tpl.php:8 +#: ../../../templates/importNetscape.tpl.php:9 +#: ../../../templates/importStructure.tpl.php:10 +msgid "File" +msgstr "Fichier" + +#: ../../../functions.inc.php:168 +msgid "Information" +msgstr "Information" + +#: ../../../functions.inc.php:173 +msgid "Critical Information" +msgstr "Information critique." + +#: ../../../functions.inc.php:178 +msgid "An error occured" +msgstr "Une erreur s'est produite." + +#: ../../../functions.inc.php:181 +msgid "General Error" +msgstr "Erreur gรฉnรฉrale." + +#: ../../../functions.inc.php:189 +msgid "An critical error occured" +msgstr "Une erreur critique s'est produite." + +#: ../../../functions.inc.php:192 +msgid "Critical Error" +msgstr "Erreur critique." + +#: ../../../functions.inc.php:201 +msgid "DEBUG MODE" +msgstr "Mode de dรฉbogage." + +#: ../../../history.php:61 +msgid "History" +msgstr "Historique" + +#: ../../../history.php:62 +#, php-format +msgid "History for %s" +msgstr "Historique de %s" + +#: ../../../history.php:84 +msgid "Address was not found" +msgstr "L'adresse n'a pas รฉtรฉ trouvรฉe." + +#: ../../../import.php:47 +msgid "Could not open XML input" +msgstr "Impossible d'ouvrir le flux XML." + +#: ../../../import.php:51 +#, php-format +msgid "XML error: %s at line %d" +msgstr "Erreur XML: %s ร la ligne %d" + +#: ../../../import.php:60 +msgid "Import Bookmarks from del.icio.us" +msgstr "Importer les signet depuis del.icio.us" + +#: ../../../import.php:93 +msgid "You have already submitted this bookmark." +msgstr "Vous avez dรฉjร enregistrรฉ ce signet." + +#: ../../../import.php:104 +msgid "Bookmark imported." +msgstr "Signet importรฉ." + +#: ../../../importNetscape.php:95 +msgid "You have already submitted some of these bookmarks." +msgstr "Vous avez dรฉjร enregistrรฉ certains de ces signets." + +#: ../../../importNetscape.php:115 +msgid "Bookmarks found: " +msgstr "Signets trouvรฉs :" + +#: ../../../importNetscape.php:116 +msgid "Bookmarks imported: " +msgstr "Signets importรฉs :" + +#: ../../../importNetscape.php:117 +#: ../../../importNetscape.php:122 +msgid "Import Bookmarks from Browser File" +msgstr "Importer les signets depuis un fichier" + +#: ../../../importStructure.php:61 +msgid "Bad indentation" +msgstr "Mauvaise indentation" + +#: ../../../importStructure.php:67 +msgid "New links between tags: " +msgstr "Nouveau lien entre tags :" + +#: ../../../importStructure.php:72 +msgid "Import Structure" +msgstr "Importer une structure" + +#: ../../../index.php:38 +msgid "You have now logged out" +msgstr "Vous รชtes maintenant dรฉconnectรฉ." + +#: ../../../index.php:45 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Signets rรฉcents" + +#: ../../../index.php:78 +msgid "Store, share and tag your favourite links" +msgstr "Conservez, partagez et taggez vos liens favoris" + +#: ../../../index.php:79 +msgid "All Bookmarks" +msgstr "Tous les signets" + +#: ../../../jsScuttle.php:22 +#: ../../../templates/admin.tpl.php:19 +#: ../../../templates/tag2tagadd.tpl.php:21 +#: ../../../templates/tag2tagdelete.tpl.php:13 +#: ../../../templates/tag2tagedit.tpl.php:14 +#: ../../../templates/tag2tagedit.tpl.php:35 +#: ../../../templates/tagdelete.tpl.php:6 +msgid "Are you sure?" +msgstr "Etes-vous sรปr ?" + +#: ../../../jsScuttle.php:22 +#: ../../../templates/tag2tagdelete.tpl.php:15 +#: ../../../templates/tag2tagedit.tpl.php:16 +#: ../../../templates/tagdelete.tpl.php:8 +msgid "Yes" +msgstr "Oui" + +#: ../../../jsScuttle.php:22 +#: ../../../templates/tag2tagdelete.tpl.php:16 +#: ../../../templates/tag2tagedit.tpl.php:17 +#: ../../../templates/tagdelete.tpl.php:9 +msgid "No" +msgstr "Non" + +#: ../../../jsScuttle.php:69 +msgid "Available" +msgstr "Disponible" + +#: ../../../jsScuttle.php:72 +msgid "Not Available" +msgstr "Non Disponible" + +#: ../../../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." + +#: ../../../login.php:57 +#: ../../../templates/login.tpl.php:26 +#: ../../../templates/toolbar.inc.php:29 +msgid "Log In" +msgstr "Se connecter" + +#: ../../../password.php:36 +msgid "You must enter your username." +msgstr "Vous devez entrer votre nom d'utilisateur." + +#: ../../../password.php:40 +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Vous <em>devez</em> saisir une <abbr title=\"adresse รฉlectronique\">E-mail</abbr>." + +#: ../../../password.php:48 +msgid "No matches found for that username." +msgstr "Rien de trouvรฉ pour ce nom d'utilisateur." + +#: ../../../password.php:51 +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Pas d'entrรฉe pour ce nom d'utilisateur et cet <abbr title=\"adresse mail\">e-mail</abbr>." + +#: ../../../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." + +#: ../../../password.php:63 +msgid "Your new password is:" +msgstr "Votre nouveau mot de passe est:" + +#: ../../../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." + +#: ../../../password.php:66 +#, php-format +msgid "%s Account Information" +msgstr "Informations du compte de %s" + +#: ../../../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" + +#: ../../../password.php:75 +msgid "Forgotten Password" +msgstr "Mot de passe oubliรฉ" + +#: ../../../populartags.php:46 +#: ../../../templates/dynamictags.inc.php:128 +#: ../../../templates/sidebar.block.common.php:9 +#: ../../../templates/sidebar.block.menu.php:74 +#: ../../../templates/sidebar.block.popular.php:23 +#: ../../../templates/sidebar.block.recent.php:34 +#: ../../../templates/toolbar.inc.php:27 +msgid "Popular Tags" +msgstr "Tags populaires" + +#: ../../../profile.php:59 +#: ../../../watchlist.php:119 +msgid "Username was not specified" +msgstr "Le nom d'utilisateur n'a pas รฉtรฉ spรฉcifiรฉ." + +#: ../../../profile.php:65 +msgid "My Profile" +msgstr "Mon Profil" + +#: ../../../profile.php:67 +#: ../../../templates/toolbar.inc.php:12 +msgid "Profile" +msgstr "Profil" + +#: ../../../profile.php:89 +msgid "Invalid Token" +msgstr "Token invalide" + +#: ../../../profile.php:94 +msgid "Password and confirmation do not match." +msgstr "Le mot de passe et sa vรฉrification ne correspondent pas." + +#: ../../../profile.php:98 +msgid "Password must be at least 6 characters long." +msgstr "Le mot de passe doit avoir au moins 6 caractรจres." + +#: ../../../profile.php:102 +msgid "E-mail address is not valid." +msgstr "Adresse de courrier รฉlectronique invalide." + +#: ../../../profile.php:106 +msgid "An error occurred while saving your changes." +msgstr "Une erreur s'est produite pendant l'enregistrement de vos modifications." + +#: ../../../profile.php:108 +msgid "Changes saved." +msgstr "Modifications enregistrรฉes." + +#: ../../../register.php:40 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "Vous <em>devez</em> saisir un nom d'utilisateur, un mot de passe, un nom et un <abbr title=\"adresse รฉlectronique\">e-mail</abbr>" + +#: ../../../register.php:44 +msgid "This username has been reserved, please make another choice." +msgstr "Ce nom d'utilisateur existe dรฉjร , veuillez en choisir un autre." + +#: ../../../register.php:48 +msgid "This username already exists, please make another choice." +msgstr "Ce nom d'utilisateur existe dรฉjร , veuillez en choisir un autre." + +#: ../../../register.php:52 +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." + +#: ../../../register.php:56 +msgid "E-mail address is not valid. Please try again." +msgstr "Adresse de courrier รฉlectronique invalide. Veuillez rรฉessayer." + +#: ../../../register.php:60 +msgid "Antispam answer is not valid. Please try again." +msgstr "La rรฉponse antispam n'est pas valide. Veuillez rรฉessayer." + +#: ../../../register.php:69 +msgid "You have successfully registered. Enjoy!" +msgstr "Votre inscription a bien รฉtรฉ prise en compte !" + +#: ../../../register.php:71 +msgid "Registration failed. Please try again." +msgstr "Enregistrement ratรฉ. Veuillez rรฉรฉssayer." + +#: ../../../register.php:77 +#: ../../../templates/register.tpl.php:41 +#: ../../../templates/toolbar.inc.php:30 +msgid "Register" +msgstr "S'enregistrer" + +#: ../../../rss.php:84 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Signets ajoutรฉs rรฉcemment ร %s" + +#: ../../../search.inc.php:23 +msgid "Search..." +msgstr "Chercher..." + +#: ../../../search.inc.php:24 +msgid "in" +msgstr "dans" + +#: ../../../search.inc.php:30 +msgid "this user's bookmarks" +msgstr "les signets de cet utilisateur" + +#: ../../../search.inc.php:35 +msgid "my bookmarks" +msgstr "mes signets" + +#: ../../../search.inc.php:36 +msgid "my watchlist" +msgstr "mes contacts" + +#: ../../../search.inc.php:40 +msgid "all bookmarks" +msgstr "tous les signets" + +#: ../../../search.inc.php:50 +msgid "Search" +msgstr "Chercher" + +#: ../../../search.php:73 +#: ../../../search.php:123 +msgid "Search Bookmarks" +msgstr "Recherche de signets" + +#: ../../../search.php:79 +msgid "Search Results" +msgstr "Rรฉsultats de recherche" + +#: ../../../search.php:114 +msgid "Unsatisfied? You can also try our " +msgstr "Insatisfait ? Vous pouvez aussi essayer notre " + +#: ../../../tag2tagadd.php:50 +msgid "Tag link created" +msgstr "Lien entre tags crรฉรฉ." + +#: ../../../tag2tagadd.php:53 +msgid "Failed to create the link" +msgstr "Impossible de crรฉer le lien" + +#: ../../../tag2tagadd.php:65 +msgid "Add Tag Link" +msgstr "Ajout d'un lien entre tags" + +#: ../../../tag2tagdelete.php:66 +msgid "Tag link deleted" +msgstr "Effacement d'un lien entre tags" + +#: ../../../tag2tagdelete.php:69 +msgid "Failed to delete the link" +msgstr "Impossible d'effacer le lien" + +#: ../../../tag2tagdelete.php:81 +msgid "Delete Link Between Tags" +msgstr "Effacer un lien entre tags" + +#: ../../../tag2tagedit.php:55 +msgid "Edit Link Between Tags" +msgstr "Editer un lien entre tags" + +#: ../../../tagcommondescriptionedit.php:55 +msgid "Tag common description updated" +msgstr "Editer la description commune du tag" + +#: ../../../tagcommondescriptionedit.php:58 +msgid "Failed to update the tag common description" +msgstr "Impossible de mettre ร jour la description commune du tag" + +#: ../../../tagcommondescriptionedit.php:64 +#: ../../../templates/sidebar.block.tagactions.php:26 +msgid "Edit Tag Common Description" +msgstr "Editer la description commune du tag" + +#: ../../../tagdelete.php:43 +msgid "Tag deleted" +msgstr "Tag effacรฉ" + +#: ../../../tagdelete.php:46 +msgid "Failed to delete the tag" +msgstr "Impossible d'effacer le tag" + +#: ../../../tagdelete.php:54 +#: ../../../templates/sidebar.block.tagactions.php:22 +msgid "Delete Tag" +msgstr "Supprimer le tag" + +#: ../../../tagedit.php:52 +msgid "Tag description updated" +msgstr "Description du tag mise ร jour" + +#: ../../../tagedit.php:55 +msgid "Failed to update the tag description" +msgstr "Impossible de mettre ร jour la description du tag" + +#: ../../../tagedit.php:61 +#: ../../../templates/sidebar.block.tagactions.php:24 +msgid "Edit Tag Description" +msgstr "Editer la description du tag" + +#: ../../../tagrename.php:63 +msgid "Tag renamed" +msgstr "Tag renommรฉ" + +#: ../../../tagrename.php:66 +msgid "Failed to rename the tag" +msgstr "Erreur dans le renommage du tag" + +#: ../../../tagrename.php:72 +#: ../../../templates/sidebar.block.tagactions.php:9 +msgid "Rename Tag" +msgid_plural "Rename Tags" +msgstr[0] "Renommer le tag" +msgstr[1] "Renommer les tags" + +#: ../../../tags.php:45 +#: ../../../tags.php:67 +#: ../../../templates/editbookmark.tpl.php:69 +#: ../../../templates/toolbar.inc.php:10 +msgid "Tags" +msgstr "Tags" + +#: ../../../users.php:35 +msgid "Users" +msgstr "Utilisateurs" + +#: ../../../watch.php:54 +msgid "User removed from your watchlist" +msgstr "Utilisateur enlevรฉ de vos contacts" + +#: ../../../watch.php:56 +msgid "User added to your watchlist" +msgstr "Utilisateur ajoutรฉ ร vos contacts" + +#: ../../../watchlist.php:104 +msgid "My Watchlist" +msgstr "Mes Contacts" + +#: ../../../watchlist.php:106 +#: ../../../templates/toolbar.inc.php:11 +msgid "Watchlist" +msgstr "Contacts" + +#: ../../../templates/about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "<strong>Conservez</strong> tous vos signets au mรชme endroit, accessibles de partout. " + +#: ../../../templates/about.tpl.php:7 +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "<strong>Partagez</strong> vos signets avec tout le monde, avec vos contacts ou gardez-les pour vous." + +#: ../../../templates/about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "<strong>Taggez</strong> vos signets avec autant de labels que vous le souhaitez au lieu de les hiรฉrarchiser avec des dossiers." + +#: ../../../templates/about.tpl.php:9 +msgid "Register now" +msgstr "S'enregistrer maintenant" + +#: ../../../templates/about.tpl.php:9 +#, php-format +msgid " to start using %s!" +msgstr "pour commencer ร employer %s !" + +#: ../../../templates/about.tpl.php:12 +msgid "Geek Stuff" +msgstr "Pour les Geeks" + +#: ../../../templates/about.tpl.php:14 +msgid "is licensed under the " +msgstr "est sous licence" + +#: ../../../templates/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" + +#: ../../../templates/about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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'<a href=\"http://del.icio.us/doc/api\"><abbr title=\"Application Programming Interface\">API</abbr> del.icio.us</a>." + +#: ../../../templates/about.tpl.php:24 +msgid "Tips" +msgstr "Astuces" + +#: ../../../templates/about.tpl.php:26 +msgid "Add search plugin into your browser:" +msgstr "Ajouter un plugin de recherche ร votre navigateur :" + +#: ../../../templates/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." + +#: ../../../templates/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." + +#: ../../../templates/admin.tpl.php:5 +msgid "Users management" +msgstr "Gestion des utilisateurs" + +#: ../../../templates/admin.tpl.php:14 +msgid "Public/Shared/Private" +msgstr "Publique/Partagรฉ/Privรฉ" + +#: ../../../templates/admin.tpl.php:14 +#: ../../../templates/bookmarks.tpl.php:93 +msgid "bookmark(s)" +msgstr "signet(s)" + +#: ../../../templates/admin.tpl.php:19 +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Delete" +msgstr "Supprimer" + +#: ../../../templates/admin.tpl.php:27 +msgid "Other actions" +msgstr "Autres actions" + +#: ../../../templates/admin.tpl.php:29 +msgid "Check all URLs (May take some time)" +msgstr "Vรฉrifier toutes les URLs (Peut prendre du temps)" + +#: ../../../templates/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." + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:18 +#: ../../../templates/bookmarks.tpl.php:123 +#: ../../../templates/editbookmark.tpl.php:38 +msgid "Title" +msgstr "Titre" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:23 +#: ../../../templates/editbookmark.tpl.php:44 +#: ../../../templates/editprofile.tpl.php:47 +#: ../../../templates/profile.tpl.php:33 +#: ../../../templates/tagcommondescriptionedit.tpl.php:13 +#: ../../../templates/tagedit.tpl.php:12 +msgid "Description" +msgstr "Description" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:31 +#: ../../../templates/tagcommondescriptionedit.tpl.php:21 +msgid "Last modification:" +msgstr "Derniรจre modification :" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:42 +#: ../../../templates/tagcommondescriptionedit.tpl.php:32 +#: ../../../templates/tagedit.tpl.php:18 +msgid "Update" +msgstr "Mettre ร jour" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:43 +#: ../../../templates/editbookmark.tpl.php:98 +#: ../../../templates/tag2tagadd.tpl.php:24 +#: ../../../templates/tag2tagedit.tpl.php:38 +#: ../../../templates/tagcommondescriptionedit.tpl.php:33 +#: ../../../templates/tagedit.tpl.php:19 +#: ../../../templates/tagrename.tpl.php:25 +msgid "Cancel" +msgstr "Annuler" + +#: ../../../templates/bookmarks.tpl.php:26 +msgid "Bookmarks on this page are managed by an admin user." +msgstr "Les signets de cette page sont gรฉrรฉs par un administrateur." + +#: ../../../templates/bookmarks.tpl.php:51 +#: ../../../templates/bookmarks.tpl.php:52 +msgid "Edit the common description of this tag" +msgstr "Editer la description commune de ce tag" + +#: ../../../templates/bookmarks.tpl.php:55 +#: ../../../templates/bookmarks.tpl.php:56 +msgid "Edit the common description of this bookmark" +msgstr "Editer la description commune de ce signet" + +#: ../../../templates/bookmarks.tpl.php:76 +#: ../../../templates/bookmarks.tpl.php:77 +msgid "Edit your personal description of this tag" +msgstr "Editer votre description personnelle de ce tag" + +#: ../../../templates/bookmarks.tpl.php:93 +#: ../../../templates/tags.tpl.php:10 +#: ../../../templates/users.tpl.php:8 +msgid "Sort by:" +msgstr "Classer par :" + +#: ../../../templates/bookmarks.tpl.php:122 +msgid "Date" +msgstr "Date" + +#: ../../../templates/bookmarks.tpl.php:129 +msgid "Bookmarks from other users for this tag" +msgstr "Signets des autres utilisateurs pour ce tag" + +#: ../../../templates/bookmarks.tpl.php:134 +msgid "Only your bookmarks for this tag" +msgstr "Uniquement vos signets pour ce tag" + +#: ../../../templates/bookmarks.tpl.php:157 +#: ../../../templates/bookmarks.tpl.php:163 +msgid "First" +msgstr "Premiรจre" + +#: ../../../templates/bookmarks.tpl.php:158 +#: ../../../templates/bookmarks.tpl.php:164 +msgid "Previous" +msgstr "Prรฉcรฉdent" + +#: ../../../templates/bookmarks.tpl.php:171 +#: ../../../templates/bookmarks.tpl.php:174 +msgid "Next" +msgstr "Suivant" + +#: ../../../templates/bookmarks.tpl.php:172 +#: ../../../templates/bookmarks.tpl.php:175 +msgid "Last" +msgstr "Derniรจre" + +#: ../../../templates/bookmarks.tpl.php:185 +#, php-format +msgid "Page %d of %d" +msgstr "Page %d de %d" + +#: ../../../templates/bookmarks.tpl.php:225 +msgid "Tags:" +msgstr "Tags:" + +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Edit" +msgstr "Editer" + +#: ../../../templates/bookmarks.tpl.php:235 +msgid "Last update" +msgstr "Date de derniรจre mise ร jour" + +#: ../../../templates/bookmarks.tpl.php:238 +msgid "by" +msgstr "par" + +#: ../../../templates/bookmarks.tpl.php:240 +msgid "you" +msgstr "vous" + +#: ../../../templates/bookmarks.tpl.php:254 +#, php-format +msgid " and %s1 other%s" +msgstr " et %s1 autre%s" + +#: ../../../templates/bookmarks.tpl.php:257 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " et %2$s%1$s autres%3$s" + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy this bookmark to YOUR bookmarks." +msgstr "Copier ce signet dans VOS signets." + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy" +msgstr "Copier" + +#: ../../../templates/bookmarks.tpl.php:284 +msgid "This bookmark is certified by an admin user." +msgstr "Ce signet est certifiรฉ par un administrateur." + +#: ../../../templates/bookmarks.tpl.php:323 +msgid "Private Note on this bookmark" +msgstr "Note privรฉe sur ce signet" + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Come back to the top of this page." +msgstr "Revenir en haut de cette page." + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Top of the page" +msgstr "Haut de page" + +#: ../../../templates/bookmarks.tpl.php:340 +msgid "No bookmarks available" +msgstr "Pas de signets disponibles." + +#: ../../../templates/bottom.inc.php:7 +msgid "Propulsed by " +msgstr "Propulsรฉ par " + +#: ../../../templates/dynamictags.inc.php:47 +#: ../../../templates/sidebar.block.common.php:19 +#: ../../../templates/sidebar.block.popular.php:34 +#: ../../../templates/sidebar.block.recent.php:29 +#: ../../../templates/tags.tpl.php:19 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "signet" +msgstr[1] "Signets" + +#: ../../../templates/dynamictags.inc.php:131 +msgid "Popular Tags From All Users" +msgstr "Tags populaires pour tous les utilisateurs" + +#: ../../../templates/editbookmark.tpl.php:33 +msgid "Address" +msgstr "Adresse" + +#: ../../../templates/editbookmark.tpl.php:35 +#: ../../../templates/editbookmark.tpl.php:40 +#: ../../../templates/editprofile.tpl.php:31 +#: ../../../templates/tagrename.tpl.php:14 +#: ../../../templates/tagrename.tpl.php:19 +msgid "Required" +msgstr "Requis" + +#: ../../../templates/editbookmark.tpl.php:45 +msgid "Add Note" +msgstr "Ajouter une note" + +#: ../../../templates/editbookmark.tpl.php:48 +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]" + +#: ../../../templates/editbookmark.tpl.php:51 +msgid "Suggested anchors: " +msgstr "Balises suggรฉrรฉes : " + +#: ../../../templates/editbookmark.tpl.php:63 +msgid "Private Note" +msgstr "Note privรฉe" + +#: ../../../templates/editbookmark.tpl.php:65 +msgid "Just visible by you and your contacts." +msgstr "Visible uniquement par vous et vos contacts." + +#: ../../../templates/editbookmark.tpl.php:73 +msgid "Comma-separated" +msgstr "Sรฉparรฉs par des virgules" + +#: ../../../templates/editbookmark.tpl.php:77 +#: ../../../templates/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" + +#: ../../../templates/editbookmark.tpl.php:81 +#: ../../../templates/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" + +#: ../../../templates/editbookmark.tpl.php:84 +#: ../../../templates/importDelicious.tpl.php:15 +#: ../../../templates/importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Accรจs" + +#: ../../../templates/editbookmark.tpl.php:87 +#: ../../../templates/importDelicious.tpl.php:18 +#: ../../../templates/importNetscape.tpl.php:19 +msgid "Public" +msgstr "Publique" + +#: ../../../templates/editbookmark.tpl.php:88 +msgid "Shared with Watch List" +msgstr "Partagรฉ avec mes contacts" + +#: ../../../templates/editbookmark.tpl.php:89 +#: ../../../templates/importDelicious.tpl.php:20 +#: ../../../templates/importNetscape.tpl.php:21 +msgid "Private" +msgstr "Privรฉe" + +#: ../../../templates/editbookmark.tpl.php:102 +msgid "Delete Bookmark" +msgstr "Supprimer le signet" + +#: ../../../templates/editbookmark.tpl.php:107 +msgid "edit common description" +msgstr "รฉditer la description commune" + +#: ../../../templates/editbookmark.tpl.php:134 +msgid "Bookmarklet" +msgstr "Bookmarklet" + +#: ../../../templates/editbookmark.tpl.php:140 +#, 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 " + +#: ../../../templates/editbookmark.tpl.php:144 +#, 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 " + +#: ../../../templates/editbookmark.tpl.php:157 +#: ../../../templates/editbookmark.tpl.php:162 +#, php-format +msgid "Post to %s" +msgstr "Ajouter ร %s" + +#: ../../../templates/editbookmark.tpl.php:158 +#: ../../../templates/editbookmark.tpl.php:163 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Ajouter ร %s (Pop-up)" + +#: ../../../templates/editbookmark.tpl.php:168 +#: ../../../templates/importDelicious.tpl.php:26 +#: ../../../templates/importNetscape.tpl.php:27 +#: ../../../templates/importStructure.tpl.php:16 +msgid "Import" +msgstr "Importer" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Import bookmarks from bookmark file" +msgstr "Importer les signets depuis un fichier" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox et Netscape" + +#: ../../../templates/editbookmark.tpl.php:171 +msgid "Import bookmarks from del.icio.us" +msgstr "Importer les signets depuis del.icio.us" + +#: ../../../templates/editprofile.tpl.php:10 +msgid "Account Details" +msgstr "Dรฉtail du compte" + +#: ../../../templates/editprofile.tpl.php:14 +#: ../../../templates/login.tpl.php:15 +#: ../../../templates/password.tpl.php:10 +#: ../../../templates/profile.tpl.php:6 +#: ../../../templates/register.tpl.php:16 +msgid "Username" +msgstr "Nom d'utilisateur" + +#: ../../../templates/editprofile.tpl.php:19 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: ../../../templates/editprofile.tpl.php:24 +msgid "Confirm Password" +msgstr "Confirmer le mot de passe" + +#: ../../../templates/editprofile.tpl.php:29 +#: ../../../templates/password.tpl.php:14 +#: ../../../templates/register.tpl.php:26 +msgid "E-mail" +msgstr "E-mail" + +#: ../../../templates/editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "Dรฉtails personnels" + +#: ../../../templates/editprofile.tpl.php:39 +#: ../../../templates/profile.tpl.php:17 +msgid "Name" +msgstr "Nom" + +#: ../../../templates/editprofile.tpl.php:43 +#: ../../../templates/profile.tpl.php:23 +msgid "Homepage" +msgstr "Page personnelle" + +#: ../../../templates/editprofile.tpl.php:55 +#: ../../../templates/sidebar.block.tagactions.php:17 +#: ../../../templates/sidebar.block.watchstatus.php:18 +msgid "Actions" +msgstr "Actions" + +#: ../../../templates/editprofile.tpl.php:58 +msgid "Export bookmarks" +msgstr "Exporter les signets" + +#: ../../../templates/editprofile.tpl.php:60 +msgid "HTML file (for browsers)" +msgstr "Fichier HTML (pour navigateurs)" + +#: ../../../templates/editprofile.tpl.php:61 +msgid "XML file (like del.icio.us)" +msgstr "Fichier XML (comme del.icio.us)" + +#: ../../../templates/editprofile.tpl.php:62 +msgid "CSV file (for spreadsheet tools)" +msgstr "Fichier CSV (pour tableurs)" + +#: ../../../templates/error.404.tpl.php:5 +msgid "Not Found" +msgstr "Non trouvรฉ" + +#: ../../../templates/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." + +#: ../../../templates/error.500.tpl.php:5 +msgid "General server error" +msgstr "Erreur gรฉnรฉralisรฉe du serveur." + +#: ../../../templates/error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "L'URL demandรฉe n'a pas รฉtรฉ trouvรฉe." + +#: ../../../templates/importDelicious.tpl.php:19 +#: ../../../templates/importNetscape.tpl.php:20 +msgid "Shared with Watchlist" +msgstr "Partagรฉ avec mes contacts" + +#: ../../../templates/importDelicious.tpl.php:31 +#: ../../../templates/importNetscape.tpl.php:32 +#: ../../../templates/importStructure.tpl.php:21 +msgid "Instructions" +msgstr "Instructions" + +#: ../../../templates/importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Se connecter ร la <a href=\"http://del.icio.us/api/posts/all\">page d'export de del.icio.us</a>" + +#: ../../../templates/importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Enregistrer le fichier <abbr title=\"Extensible Markup Language\">XML</abbr> rรฉsultant sur votre ordinateur" + +#: ../../../templates/importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Cliquez sur <kbd>Parcourir...</kbd> pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excรจder 1Mo" + +#: ../../../templates/importDelicious.tpl.php:36 +#: ../../../templates/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" + +#: ../../../templates/importDelicious.tpl.php:37 +#: ../../../templates/importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "Cliquez sur <kbd>Importer</kbd> pour dรฉbuter l'import des signets; cette opรฉration peut prendre quelques minutes" + +#: ../../../templates/importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "Exporter vos signets dans un fichier depuis votre navigateur" + +#: ../../../templates/importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>Ficher > Importer et Exporter... > Exporter les favoris" + +#: ../../../templates/importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Marques-pages > Gรฉrer les marques-pages... > Fichier > Exporter..." + +#: ../../../templates/importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Marques-pages > Gรฉrer les marques-pages... > Outils > Exporter..." + +#: ../../../templates/importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Cliquez sur <kbd>Parcourir...</kbd> pour trouver le fichier sur votre ordinateur. La taille maximale du fichier ne peut excรจder 1Mo" + +#: ../../../templates/importStructure.tpl.php:24 +msgid "Create your structure into a simple text file and following this model:" +msgstr "" + +#: ../../../templates/importStructure.tpl.php:35 +msgid "Then import the file. The tags and their relations will be added to your profile." +msgstr "" + +#: ../../../templates/login.tpl.php:20 +#: ../../../templates/register.tpl.php:21 +msgid "Password" +msgstr "Mot de passe" + +#: ../../../templates/login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Ne pas demander mon mot de passe pendant 2 semaines" + +#: ../../../templates/login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "Avez-vous oubliรฉ votre mot de passe ?" + +#: ../../../templates/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." + +#: ../../../templates/password.tpl.php:19 +msgid "Generate Password" +msgstr "Gรฉnรฉrer un mot de passe" + +#: ../../../templates/profile.tpl.php:11 +msgid "Email" +msgstr "E-mail" + +#: ../../../templates/profile.tpl.php:28 +msgid "Member Since" +msgstr "Membre depuis" + +#: ../../../templates/profile.tpl.php:40 +#: ../../../templates/sidebar.block.watchlist.php:30 +msgid "Watching" +msgstr "Mes contacts" + +#: ../../../templates/profile.tpl.php:55 +#: ../../../templates/sidebar.block.watchlist.php:52 +msgid "Watched By" +msgstr "Dans les contacts de" + +#: ../../../templates/profile.tpl.php:68 +#: ../../../templates/toolbar.inc.php:9 +msgid "Bookmarks" +msgstr "Signets" + +#: ../../../templates/profile.tpl.php:69 +msgid "Go to bookmarks" +msgstr "Aller aux signets" + +#: ../../../templates/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." + +#: ../../../templates/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)" + +#: ../../../templates/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" + +#: ../../../templates/register.tpl.php:33 +msgid "Antispam question" +msgstr "Question antispam" + +#: ../../../templates/sidebar.block.linked.php:51 +msgid "Linked Tags" +msgstr "Tags structurรฉs" + +#: ../../../templates/sidebar.block.linked.php:62 +#: ../../../templates/sidebar.block.menu.php:46 +msgid "Add new link" +msgstr "Crรฉer un lien" + +#: ../../../templates/sidebar.block.linked.php:63 +#: ../../../templates/sidebar.block.menu.php:47 +msgid "Delete link" +msgstr "Supprimer un lien" + +#: ../../../templates/sidebar.block.menu.php:35 +#, php-format +msgid "Tags included into the tag '%s'" +msgstr "Tags inclus dans le tag '%s'" + +#: ../../../templates/sidebar.block.menu.php:35 +msgid "Menu Tags" +msgstr "Tags Menu" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "See all your tags" +msgstr "Voir tous vos tags" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "all your tags" +msgstr "Tous vos tags" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "See all tags from this user" +msgstr "Voir tous les tags de cet utilisateur" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "all tags from this user" +msgstr "tous les tags de cet utilisateur" + +#: ../../../templates/sidebar.block.menu.php:74 +msgid "See popular tags" +msgstr "Voir les tags populaires" + +#: ../../../templates/sidebar.block.menu2.php:25 +msgid "Featured Menu Tags" +msgstr "Tags Principaux" + +#: ../../../templates/sidebar.block.menu2.php:29 +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." + +#: ../../../templates/sidebar.block.recent.php:18 +msgid "Recent Tags" +msgstr "Tags rรฉcents" + +#: ../../../templates/sidebar.block.related.php:26 +msgid "Related Tags" +msgstr "Tags en relation" + +#: ../../../templates/sidebar.block.search.php:15 +msgid "Last Searches" +msgstr "Derniรจres recherches" + +#: ../../../templates/sidebar.block.search.php:24 +msgid "Number of bookmarks for this query" +msgstr "Nombre de signets pour cette recherche" + +#: ../../../templates/sidebar.block.tagactions.php:28 +msgid "Create a link to another tag" +msgstr "Crรฉer un lien vers un autre tag" + +#: ../../../templates/sidebar.block.users.php:14 +msgid "New Users" +msgstr "Nouveaux Utilisateurs" + +#: ../../../templates/sidebar.block.users.php:23 +#: ../../../templates/users.tpl.php:17 +msgid "bookmarks" +msgstr "signets" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "See all users" +msgstr "Voir tous les utilisateurs" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "All users" +msgstr "Tous les utilisateurs" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts are mutual contacts" +msgstr "Les contacts proches sont des contacts mutuels" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts" +msgstr "Contacts proches" + +#: ../../../templates/sidebar.block.watchlist.php:36 +msgid "Add a contact..." +msgstr "Ajouter un contact..." + +#: ../../../templates/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." + +#: ../../../templates/sidebar.block.watchlist.php:44 +msgid "Remove this contact" +msgstr "Enlever ce contact" + +#: ../../../templates/sidebar.block.watchstatus.php:11 +msgid "Remove from Watchlist" +msgstr "Enlever des contacts" + +#: ../../../templates/sidebar.block.watchstatus.php:13 +msgid "Add to Watchlist" +msgstr "Ajouter aux contacts" + +#: ../../../templates/sidebar.linkedtags.inc.php:18 +msgid "Edit link" +msgstr "Editer un lien" + +#: ../../../templates/sidebar.linkedtags.inc.php:47 +msgid "Synonyms:" +msgstr "Synonymes :" + +#: ../../../templates/tag2tagadd.tpl.php:12 +msgid "Create new link:" +msgstr "Crรฉer un nouveau lien" + +#: ../../../templates/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" + +#: ../../../templates/tag2tagadd.tpl.php:23 +#: ../../../templates/tag2tagedit.tpl.php:37 +msgid "Create" +msgstr "Crรฉer" + +#: ../../../templates/tag2tagadd.tpl.php:35 +#: ../../../templates/tag2tagdelete.tpl.php:27 +#: ../../../templates/tag2tagedit.tpl.php:51 +msgid "Existing links:" +msgstr "Liens existants :" + +#: ../../../templates/tag2tagadd.tpl.php:53 +#: ../../../templates/tag2tagdelete.tpl.php:45 +#: ../../../templates/tag2tagedit.tpl.php:69 +msgid "No links" +msgstr "Pas de liens" + +#: ../../../templates/tag2tagedit.tpl.php:6 +msgid "Delete the link" +msgstr "Supprimer le lien" + +#: ../../../templates/tag2tagedit.tpl.php:29 +msgid "Create new link" +msgstr "Crรฉer un nouveau lien" + +#: ../../../templates/tagrename.tpl.php:12 +msgid "Old" +msgstr "Ancien" + +#: ../../../templates/tagrename.tpl.php:17 +msgid "New" +msgstr "Nouveau" + +#: ../../../templates/tagrename.tpl.php:24 +msgid "Rename" +msgstr "Renommer" + +#: ../../../templates/tags.tpl.php:11 +#: ../../../templates/users.tpl.php:9 +msgid "Alphabet" +msgstr "Alphabet" + +#: ../../../templates/tags.tpl.php:12 +#: ../../../templates/users.tpl.php:10 +msgid "Popularity" +msgstr "Popularitรฉ" + +#: ../../../templates/toolbar.inc.php:8 +#: ../../../templates/toolbar.inc.php:26 +msgid "Home" +msgstr "Accueil" + +#: ../../../templates/toolbar.inc.php:14 +msgid "Log Out" +msgstr "Quitter" + +#: ../../../templates/toolbar.inc.php:17 +msgid "Admin" +msgstr "Admin" + +#: ../../../templates/top.inc.php:51 +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.inc.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." + +#: ../../../templates/users.tpl.php:17 +msgid "profile" +msgstr "Profil" + +#: ../../../templates/users.tpl.php:17 +msgid "created in" +msgstr "Crรฉรฉ en " + +#~ 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 "" +#~ "<strong><a href=\"register.php\">Register now</a></strong> to start using " +#~ "%s!" +#~ msgstr "" +#~ "<a href=\"register.php\">Enregistrez-vous maintenant</a> pour poster vos " +#~ "propres signets sur %s !" +#~ msgid "" +#~ "<a href=\"http://sourceforge.net/projects/semanticscuttle/\">Semantic " +#~ "Scuttle</a> is licensed under the <a href=\"http://www.gnu.org/copyleft/" +#~ "gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public " +#~ "License</a> (you can host it on your own web server)." +#~ msgstr "" +#~ "<a href=\"http://sourceforge.net/projects/semanticscuttle/\">Semantic " +#~ "Scuttle</a>, sous license <a href=\"http://www.gnu.org/copyleft/gpl.html" +#~ "\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public " +#~ "License</a> (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 "<abbr title=\"Electronic mail\">E-mail</abbr>" +#~ msgstr "<abbr title=\"Adresse รฉlectronique\">E-mail</abbr>" + diff --git a/data/locales/hi_IN/LC_MESSAGES/messages.mo b/data/locales/hi_IN/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..77f7c1e --- /dev/null +++ b/data/locales/hi_IN/LC_MESSAGES/messages.mo diff --git a/data/locales/hi_IN/LC_MESSAGES/messages.po b/data/locales/hi_IN/LC_MESSAGES/messages.po new file mode 100644 index 0000000..af6b412 --- /dev/null +++ b/data/locales/hi_IN/LC_MESSAGES/messages.po @@ -0,0 +1,812 @@ +# Scuttle hi-IN Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# Debashish Chakrabarty <debashish @ gmail.com> +# Ravishankar Shrivastava <raviratlami@yahoo.com> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-04-29 11:17+0200\n" +"PO-Revision-Date: 2006-04-16 21:56-0800\n" +"Last-Translator: Marcus Campbell <marcus.campbell@gmail.com>\n" +"Language-Team: hi-IN Debashish Chakrabarty <debashish @ gmail.com>\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "เคเฅ เคฌเคพเคฐเฅ เคฎเฅเค" + +#: ..\..\..\ajaxDelete.php:29 +msgid "You are not allowed to delete this bookmark" +msgstr "เคเคชเคเฅ เคเคธ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคฎเคฟเคเคพเคจเฅ เคเฅ เค
เคจเฅเคฎเคคเคฟ เคจเคนเฅเค เคนเฅ." + +#: ..\..\..\ajaxDelete.php:33 +msgid "Failed to delete bookmark" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคฎเคฟเคเคพเคจเฅ เคฎเฅเค เค
เคธเคซเคฒ" + +#: ..\..\..\alltags.php:50 +msgid "All Tags" +msgstr "เคธเคญเฅ เคเฅเค" + +#: ..\..\..\alltags.php:59 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:46 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:61 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:62 +#, php-format +msgid "User with username %s not was not found" +msgstr "%s เคจเคพเคฎ เคเคพ เคเฅเค เคญเฅ เคเคชเคฏเฅเคเฅเคคเคพ เคจเคนเฅเค เคฎเคฟเคฒเคพ" + +#: ..\..\..\bookmarks.php:71 +#, fuzzy, php-format +msgid "User with username %s was not found" +msgstr "%s เคจเคพเคฎ เคเคพ เคเฅเค เคญเฅ เคเคชเคฏเฅเคเฅเคคเคพ เคจเคนเฅเค เคฎเคฟเคฒเคพ" + +#: ..\..\..\bookmarks.php:94 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "เคเคชเคเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคฒเคฟเค เคเค เคถเฅเคฐเฅเคทเค เคคเคฅเคพ เคเค เคชเคคเคพ เคนเฅเคจเคพ เคเคตเคถเฅเคฏเค เคนเฅ" + +#: ..\..\..\bookmarks.php:114 +#: ..\..\..\edit.php:58 +msgid "Bookmark saved" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคธเคนเฅเคเฅ เคเค" + +#: ..\..\..\bookmarks.php:122 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:74 +msgid "There was an error saving your bookmark. Please try again or contact the administrator." +msgstr "เคเคชเคเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคธเคนเฅเคเคจเฅ เคเฅ เคฆเฅเคฐเคพเคจ เคเค เคคเฅเคฐเฅเคเคฟ เคนเฅเค. เคเฅเคชเคฏเคพ เคซเคฟเคฐ เคธเฅ เคเฅเคถเคฟเคถ เคเคฐเฅเค เคฏเคพ เคชเฅเคฐเคถเคพเคธเค เคธเฅ เคธเคฎเฅเคชเคฐเฅเค เคธเคพเคงเฅเค." + +#: ..\..\..\bookmarks.php:160 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "เคเค เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅเคกเคผเฅเค" + +#: ..\..\..\bookmarks.php:163 +msgid "Add Bookmark" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅเคกเคผเฅเค" + +#: ..\..\..\bookmarks.php:166 +msgid "You must be logged in before you can add bookmarks." +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅเคกเคผเคจเฅ เคธเฅ เคชเคนเคฒเฅ เคเคชเคเคพ เคฒเฅเคเคเคจ เคนเฅเคจเคพ เคเคตเคถเฅเคฏเค เคนเฅ." + +#: ..\..\..\bookmarks.php:213 +msgid "My Bookmarks" +msgstr "เคฎเฅเคฐเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคธเคเคชเคพเคฆเคจ" + +#: ..\..\..\edit.php:34 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "เคชเคนเคเคพเคจ เคเคฟเคนเฅเคจ %s เคฏเฅเคเฅเคค เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคจเคนเฅเค เคฎเคฟเคฒเคพ" + +#: ..\..\..\edit.php:39 +msgid "You are not allowed to edit this bookmark" +msgstr "เคเคช เคเคธ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคธเคเคชเคพเคฆเคฟเคค เคจเคนเฅ เคเคฐ เคธเคเคคเฅ" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคธเคนเฅเคเคจเฅ เคเฅ เคฆเฅเคฐเคพเคจ เคคเฅเคฐเฅเคเคฟ เคนเฅเค" + +#: ..\..\..\edit.php:78 +msgid "Failed to delete the bookmark" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคฎเคฟเคเคพเคจเฅ เคฎเฅเค เค
เคธเคซเคฒ" + +#: ..\..\..\edit.php:88 +#: ..\..\..\templates\editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "เคชเคฐเคฟเคตเคฐเฅเคคเคจ เคธเคนเฅเคเฅเค" + +#: ..\..\..\functions.inc.php:92 +msgid "message_die() was called multiple times." +msgstr "message_die() เคเฅ เคเค เคฎเคฐเฅเคคเคฌเคพ เคเคพเคฒ เคเคฟเคฏเคพ เคเคฏเคพ." + +#: ..\..\..\functions.inc.php:104 +msgid "SQL Error" +msgstr "เคเคธเคเฅเคฏเฅเคเคฒ เคคเฅเคฐเฅเคเคฟ" + +#: ..\..\..\functions.inc.php:110 +msgid "Line" +msgstr "เคชเคเคเฅเคคเคฟ" + +#: ..\..\..\functions.inc.php:110 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "เคซเคผเคพเคเคฒ" + +#: ..\..\..\functions.inc.php:116 +msgid "Information" +msgstr "เคเคพเคจเคเคพเคฐเฅ" + +#: ..\..\..\functions.inc.php:121 +msgid "Critical Information" +msgstr "เคเคฐเฅเคฐเฅ เคเคพเคจเคเคพเคฐเฅ" + +#: ..\..\..\functions.inc.php:126 +msgid "An error occured" +msgstr "เคเค เคคเฅเคฐเฅเคเคฟ เคนเฅเค" + +#: ..\..\..\functions.inc.php:129 +msgid "General Error" +msgstr "เคธเคพเคฎเคพเคจเฅเคฏ เคคเฅเคฐเฅเคเคฟ" + +#: ..\..\..\functions.inc.php:137 +msgid "An critical error occured" +msgstr "เคเค เคเคเคญเฅเคฐ เคคเฅเคฐเฅเคเคฟ เคนเฅเค" + +#: ..\..\..\functions.inc.php:140 +msgid "Critical Error" +msgstr "เคเคเคญเฅเคฐ เคคเฅเคฐเฅเคเคฟ" + +#: ..\..\..\functions.inc.php:149 +msgid "DEBUG MODE" +msgstr "เคกเคฟเคฌเค เคฎเฅเคก" + +#: ..\..\..\history.php:65 +msgid "History" +msgstr "เคเคคเคฟเคนเคพเคธ" + +#: ..\..\..\history.php:66 +#, php-format +msgid "History for %s" +msgstr "%s เคเคพ เคเคคเคฟเคนเคพเคธ" + +#: ..\..\..\history.php:81 +msgid "Address was not found" +msgstr "เคชเคคเคพ เคจเคนเฅเค เคฎเคฟเคฒเคพ" + +#: ..\..\..\import.php:41 +msgid "Could not open XML input" +msgstr "เคเคเฅเคธเคเคฎเคเคฒ เคเคจเคชเฅเค เคเฅเคฒ เคจเคนเฅเค เคธเคเคคเคพ" + +#: ..\..\..\import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "เคเคเฅเคธเคเคฎเคเคฒ เคคเฅเคฐเฅเคเคฟ: %s เคฎเฅเค เคชเคเคเฅเคคเคฟ %d เคชเคฐ" + +#: ..\..\..\import.php:54 +msgid "Import Bookmarks from del.icio.us" +msgstr "del.icio.us เคธเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคฏเคพเคค เคเคฐเฅเค" + +#: ..\..\..\import.php:86 +#: ..\..\..\importNetscape.php:64 +msgid "You have already submitted this bookmark." +msgstr "เคเคช เคเคธ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคชเคนเคฒเฅ เคนเฅ เคชเฅเคถ เคเคฐ เคเฅเคเฅ เคนเฅเค" + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:72 +msgid "Bookmark imported." +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคฏเคพเคคเคฟเคค." + +#: ..\..\..\importNetscape.php:81 +msgid "Import Bookmarks from Browser File" +msgstr "เคฌเฅเคฐเคพเคเคเคผเคฐ เคซเคผเคพเคเคฒ เคธเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคเคฏเคพเคค เคเคฐเฅเค" + +#: ..\..\..\index.php:32 +msgid "You have now logged out" +msgstr "เค
เคฌ เคเคช เคฒเฅเค เคเคเค เคนเฅเค" + +#: ..\..\..\index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: เคนเคพเคฒเคฟเคฏเคพ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ" + +#: ..\..\..\index.php:72 +msgid "Store, share and tag your favourite links" +msgstr "เค
เคชเคจเฅ เคฎเคจเคชเคธเคเคฆ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค เคธเคนเฅเคเฅเค, เคธเคพเคเคพ เคเคฐเฅเค เคเคฐ เคเฅเค เคเคฐเฅเค" + +#: ..\..\..\index.php:73 +msgid "Recent Bookmarks" +msgstr "เคนเคพเคฒเคฟเคฏเคพ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\jsScuttle.php:22 +msgid "Are you sure?" +msgstr "เคชเคเฅเคเฅ เคฌเคพเคค เคจเคพ?" + +#: ..\..\..\jsScuttle.php:22 +msgid "Yes" +msgstr "เคนเคพเค" + +#: ..\..\..\jsScuttle.php:22 +msgid "No" +msgstr "เคจเคนเฅเค" + +#: ..\..\..\jsScuttle.php:68 +msgid "Available" +msgstr "เคเคชเคฒเคฌเฅเคง" + +#: ..\..\..\jsScuttle.php:71 +msgid "Not Available" +msgstr "เคเคชเคฒเคฌเฅเคง เคจเคนเฅเค" + +#: ..\..\..\login.php:38 +msgid "The details you have entered are incorrect. Please try again." +msgstr "เคเคชเคจเฅ เคเฅ เคตเคฟเคตเคฐเคฃ เคญเคฐเฅ เคนเฅเค เคตเฅ เคเคฒเคค เคนเฅเค. เคเฅเคชเคฏเคพ เคชเฅเคจเค เคชเฅเคฐเคฏเคพเคธ เคเคฐเฅเค." + +#: ..\..\..\login.php:48 +#: ..\..\..\templates\login.tpl.php:26 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "เคฒเฅเค เคเคจ" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "เคเคชเคเคพ เคเคชเคฏเฅเคเฅเคคเคพ เคจเคพเคฎ เคชเฅเคฐเคตเคฟเคทเฅเค เคเคฐเคจเคพ เคเคผเคฐเฅเคฐเฅ เคนเฅ." + +#: ..\..\..\password.php:35 +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "<abbr title=\"electronic mail\">เคเคฎเฅเคฒ</abbr> เคชเคคเคพ เคญเคฐเคจเคพ เคเคตเคถเฅเคฏเค เคนเฅ." + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "เคเคธ เคธเฅ เคฎเฅเคฒ เคเคพเคคเคพ เคเฅเค เคเคชเคฏเฅเคเฅเคคเคพ เคจเคพเคฎ เคจเคนเฅเค เคฎเคฟเคฒเคพ." + +#: ..\..\..\password.php:45 +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "เคเคธ เคเคชเคฏเฅเคเฅเคคเคพ เคคเคฅเคพ <abbr title=\"electronic mail\">เคเคฎเฅเคฒ</abbr> เคชเคคเฅ เคธเฅ เคฎเฅเคฒ เคเคพเคคเคพ เคเฅเค เคเฅเฅ เคจเคนเฅเค เคฎเคฟเคฒเคพ." + +#: ..\..\..\password.php:53 +msgid "There was an error while generating your new password. Please try again." +msgstr "เคเคชเคเคพ เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ เคฌเคจเคพเคจเฅ เคธเคฎเคฏ เคเฅเค เคคเฅเคฐเฅเคเคฟ เคนเฅเค เคนเฅเฅค เคเฅเคชเคฏเคพ เคชเฅเคจเค เคชเฅเคฐเคฏเคพเคธ เคเคฐเฅเคเฅค" + +#: ..\..\..\password.php:57 +msgid "Your new password is:" +msgstr "เคเคชเคเคพ เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ เคนเฅเค" + +#: ..\..\..\password.php:57 +msgid "To keep your bookmarks secure, you should change this password in your profile the next time you log in." +msgstr "เค
เคชเคจเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค เคธเฅเคฐเคเฅเคทเคฟเคค เคฐเคเคจเฅ เคเฅ เคฒเคฟเคฏเฅ, เคเคฌ เคเคช เค
เคเคฒเฅ เคฌเคพเคฐ เคฒเฅเคเคฟเคจ เคเคฐเฅเค เคคเฅ เค
เคชเคจเฅ เคชเฅเคฐเฅเคซเคพเคเคฒ เคฎเฅเค เคเคพเคเคฐ เค
เคชเคจเคพ เคเฅเคเคถเคฌเฅเคฆ เค
เคตเคถเฅเคฏ เคฌเคฆเคฒ เคฒเฅเค." + +#: ..\..\..\password.php:60 +#, php-format +msgid "%s Account Information" +msgstr "%s เคเคพเคคเฅ เคเฅ เคเคพเคจเคเคพเคฐเฅ" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ เคฌเคจเคพ เคเคฐ %s เคเฅ เคญเฅเค เคฆเคฟเคฏเคพ เคเคฏเคพ เคนเฅ." + +#: ..\..\..\password.php:69 +msgid "Forgotten Password" +msgstr "เคญเฅเคฒเคพ เคเฅเคเคถเคฌเฅเคฆ" + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\dynamictags.inc.php:101 +#: ..\..\..\templates\sidebar.block.common.php:9 +#: ..\..\..\templates\sidebar.block.popular.php:15 +#: ..\..\..\templates\sidebar.block.recent.php:25 +msgid "Popular Tags" +msgstr "เคฒเฅเคเคชเฅเคฐเคฟเคฏ เคเฅเค" + +#: ..\..\..\profile.php:54 +#: ..\..\..\watched.php:114 +msgid "Username was not specified" +msgstr "เคเคชเคฏเฅเคเฅเคคเคพ เคจเคพเคฎ เคจเคฟเคฐเฅเคฆเคฟเคทเฅเค เคจเคนเฅเค เคนเฅ" + +#: ..\..\..\profile.php:60 +msgid "My Profile" +msgstr "เคฎเฅเคฐเคพ เคชเฅเคฐเฅเคซเคผเคพเคเคฒ" + +#: ..\..\..\profile.php:62 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Profile" +msgstr "เคชเฅเคฐเฅเคซเคผเคพเคเคฒ" + +#: ..\..\..\profile.php:80 +msgid "Password and confirmation do not match." +msgstr "เคเฅเคเคถเคฌเฅเคฆ เคคเคฅเคพ เคเคธเคเคพ เคชเฅเคทเฅเคเคฟเคเคฐเคฃ เคฎเฅเคฒ เคจเคนเฅเค เคเคพเคคเฅ" + +#: ..\..\..\profile.php:84 +msgid "Password must be at least 6 characters long." +msgstr "เคเฅเคเคถเคฌเฅเคฆ เคเฅ เคเคฎ เคธเฅ เคเคฎ 6 เค
เคเฅเคทเคฐ เคฒเคเคฌเคพ เคนเฅเคจเคพ เคเคพเคนเคฟเค" + +#: ..\..\..\profile.php:88 +msgid "E-mail address is not valid." +msgstr "เคเคฎเฅเคฒ เคชเคคเคพ เคตเฅเคง เคจเคนเฅเค เคนเฅ." + +#: ..\..\..\profile.php:92 +msgid "An error occurred while saving your changes." +msgstr "เคเคชเคเฅ เคฆเฅเคตเคพเคฐเคพ เคเคฟเค เคเค เคชเคฐเคฟเคตเคฐเฅเคคเคจเฅเค เคเฅ เคธเคนเฅเคเคจเฅ เคเฅ เคฆเฅเคฐเคพเคจ เคคเฅเคฐเฅเคเคฟ เคนเฅเค." + +#: ..\..\..\profile.php:94 +msgid "Changes saved." +msgstr "เคชเคฐเคฟเคตเคฐเฅเคคเคจเฅเค เคเฅ เคธเคนเฅเคเคพ เคเคฏเคพ." + +#: ..\..\..\register.php:33 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "เคเคชเคเฅ เคเคชเคฏเฅเคเฅเคคเคพ เคจเคพเคฎ, เคเฅเคเคถเคฌเฅเคฆ เคคเคฅเคพ <abbr title=\"electronic mail\">เคเคฎเฅเคฒ</abbr> เคชเคคเคพ เคญเคฐเคจเคพ <em>เคเคตเคถเฅเคฏเค</em> เคนเฅ" + +#: ..\..\..\register.php:37 +msgid "This username already exists, please make another choice." +msgstr "เคฏเคน เคเคชเคฏเฅเคเฅเคคเคพ เคจเคพเคฎ เคชเคนเคฒเฅ เคนเฅ เคฎเฅเคเฅเคฆ เคนเฅ, เคเฅเคชเคฏเคพ เคเฅเค เคฆเฅเคธเคฐเคพ เคเฅเคจเฅเค." + +#: ..\..\..\register.php:41 +msgid "E-mail address is not valid. Please try again." +msgstr "<abbr title=\"electronic mail\">เคเคฎเฅเคฒ</abbr> เคชเคคเคพ เคตเฅเคง เคจเคนเฅเค เคนเฅ." + +#: ..\..\..\register.php:50 +msgid "You have successfully registered. Enjoy!" +msgstr "เคเคช เคธเคซเคฒเคคเคพ เคชเฅเคฐเฅเคตเค เคชเคเคเฅเคเฅเคค เคนเฅ เคเค เคนเฅเค. เคฌเคงเคพเค!" + +#: ..\..\..\register.php:52 +msgid "Registration failed. Please try again." +msgstr "เคชเคเคเฅเคเคฐเคฃ เค
เคธเคซเคฒ. เคเฅเคชเคฏเคพ เคซเคฟเคฐ เคธเฅ เคเฅเคถเคฟเคถ เคเคฐเฅเค." + +#: ..\..\..\register.php:57 +#: ..\..\..\templates\register.tpl.php:32 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "เคชเคเคเฅเคเคฐเคฃ" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:57 +msgid "Search" +msgstr "เคขเฅเคเคขเฅเค" + +#: ..\..\..\search.inc.php:35 +msgid "this user's bookmarks" +msgstr "เคเคธ เคเคชเคฏเฅเคเฅเคคเคพ เคเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\search.inc.php:40 +msgid "my bookmarks" +msgstr "เคฎเฅเคฐเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\search.inc.php:41 +msgid "my watchlist" +msgstr "เคฎเฅเคฐเฅ เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ" + +#: ..\..\..\search.inc.php:45 +msgid "all bookmarks" +msgstr "เคธเคญเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\search.inc.php:48 +msgid "for" +msgstr "เคเฅ เคฒเคฟเค" + +#: ..\..\..\search.php:91 +#: ..\..\..\search.php:128 +msgid "Search Bookmarks" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค เคขเฅเคเคขเฅเค" + +#: ..\..\..\search.php:97 +msgid "Search Results" +msgstr "เคเฅเค เคชเคฐเคฟเคฃเคพเคฎ" + +#: ..\..\..\tags.php:38 +#: ..\..\..\templates\editbookmark.tpl.php:44 +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Tags" +msgstr "เคเฅเค" + +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "%s เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\watch.php:84 +msgid "User removed from your watchlist" +msgstr "เคเคชเคเฅ เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ เคธเฅ เคเคชเคฏเฅเคเฅเคคเคพ เคเฅ เคฎเคฟเคเคพเคฏเคพ เคเคฏเคพ" + +#: ..\..\..\watch.php:86 +msgid "User added to your watchlist" +msgstr "เคเคชเคฏเฅเคเฅเคคเคพ เคเฅ เคเคชเคเฅ เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ เคฎเฅเค เคเฅเคกเคผเคพ" + +#: ..\..\..\watched.php:105 +msgid "My Watchlist" +msgstr "เคฎเฅเคฐเฅ เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ" + +#: ..\..\..\watched.php:107 +#: ..\..\..\templates\sidebar.block.profile.php:14 +#: ..\..\..\templates\toolbar.inc.php:12 +#, fuzzy +msgid "Watchlist" +msgstr "เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "เค
เคชเคจเฅ เคชเคธเคเคฆ เคเฅ เคเคกเคผเคฟเคฏเฅเค เคเฅ เคเคนเฅเค เคธเฅ เคญเฅ เคชเคนเฅเคเค เคฏเฅเคเฅเคฏ เคฌเคจเคพเคจเฅ เคเฅ เคฒเคฟเค เคเค เคนเฅ เคธเฅเคฅเคฒ เคชเคฐ<strong>เคธเคเคเคฟเคค</strong>เคเคฐเฅเค." + +#: ..\..\..\templates\about.tpl.php:7 +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "เค
เคชเคจเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคกเคผเคฟเคฏเฅเค เคเฅ เคธเคฌเคเฅ เคธเคพเคฅ, เค
เคชเคจเฅ เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ เคเฅ เคฎเคฟเคคเฅเคฐเฅเค เคเฅ เคธเคพเคฅ <strong>เคธเคพเคเคพ</strong> เคเคฐเฅเค เคฏเคพ เคจเคฟเคเฅ เคเคธเฅเคคเฅเคฎเคพเคฒ เคเคฐเฅเค" + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "เค
เคชเคจเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคกเคผเคฟเคฏเฅเค เคเฅ เคเคฟเคธเฅ เคซเฅเคฒเฅเคกเคฐ เคฎเฅเค เค เฅเคเคธเคจเฅ เคเฅ เคฌเคเคพเค เคเคพเคนเฅ เคเคฟเคคเคจเฅ เคฒเฅเคฌเคฒเฅเค เคเฅ เคธเคพเคฅ<strong>เคเฅเค</strong> เคเคฐ เคธเคเคคเฅ เคนเฅเค." + +#: ..\..\..\templates\about.tpl.php:9 +#, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "<strong><a href=\"register.php\">เคคเฅเคฐเคเคค เคชเคเคเฅเคเฅเคค เคนเฅเค</a></strong> %s เคเคพ เคเคธเฅเคคเฅเคฎเคพเคฒ เคเคฐเคจเฅ เคเฅ เคฒเคฟเค!" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "เคตเคฟเคฆเฅเคตเคพเคจเฅเค เคเคพ เคเคเคพเคจเคพ" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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 เคเค <a href=\"http://sourceforge.net/projects/scuttle/\">เคฎเฅเคเฅเคค เคธเฅเคฐเฅเคค เคชเคฐเคฟเคฏเฅเคเคจเคพ</a> เคชเคฐ เคเคงเคพเคฐเคฟเคค เคนเฅ เคคเคฅเคพ เคเคธเฅ<a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">เคเฅเคจเฅ</acronym> เคเคจเคฐเคฒ เคชเคฌเฅเคฒเคฟเค เคฒเคพเคเคธเฅเคเคธ</a> เคเฅ เคคเคนเคค เคเคพเคฐเฅ เคเคฟเคฏเคพ เคเคฏเคพ เคนเฅ. เคเคธเคเคพ เค
เคฐเฅเคฅ เคนเฅ เคเคฟ เคเคช เคเคธเฅ เค
เคชเคจเฅ เคธเฅเคตเคฏเค เคเฅ เคตเฅเคฌ เคธเคฐเฅเคตเคฐ เคชเคฐ เคเคพเคนเฅ เคเคเคเคฐเคจเฅเค เคชเคฐ เคนเฅ เคฏเคพ เคจเคฟเคเฅ เคจเฅเคเคตเคฐเฅเค เคชเคฐ เคฏเคพ เคเคชเคเฅ เคตเฅเคฏเคเฅเคคเคฟเคเคค เคเคฎเฅเคชเฅเคฏเฅเคเคฐ เคชเคฐ, เคนเฅเคธเฅเค เคเคฐ เคธเคเคคเฅ เคนเฅเค." + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 เคฎเฅเค เคชเฅเคฐเคพเคฏเค เคธเคญเฅ <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">เคเคชเฅเคเค</abbr></a> เคเคพ เคธเคฎเคฐเฅเคฅเคจ เคฎเคฟเคฒเคคเคพ เคนเฅ. เคเคธ เคคเคเคคเฅเคฐ เคเฅ เคฒเคฟเค เคฌเคจเคพเค เคเค เคชเฅเคฐเคพเคฏเค เคธเคญเฅ เคเคเคพเคฐเฅเค เคเฅ %1$s เคเฅ เคฒเคฟเค เคเคพเคฐเฅเคฏ เคเคฐเคจเฅ เคฒเคพเคฏเค เคชเคฐเคฟเคตเคฐเฅเคงเคฟเคค เคเคฟเคฏเคพ เคเคพ เคธเคเคคเคพ เคนเฅ. เคฏเคฆเคฟ เคเคชเคเฅ เคเฅเค เคเคเคพเคฐ เคเคธเคพ เคฎเคฟเคฒเคคเคพ เคนเฅ เคเฅ เคเคชเคเฅ เคเคชเฅเคเค เคชเคคเคพ เคฌเคฆเคฒเคจเฅ เคจเคนเฅเค เคฆเฅเคคเคพ เคนเฅ เคคเฅ เคเคธเคเฅ เคธเฅเคเค เคเฅ เคเคธ เคตเคฟเคจเฅเคฏเคพเคธ เคเฅ เคเฅเคกเคผเคจเฅ เคเฅ เคฒเคฟเค เคเคนเฅเค. เคเฅเคจ เคเคพเคจเฅ เคตเฅ เคเคธเคพ เคญเฅ เคเคฐ เคฒเฅเค." + +#: ..\..\..\templates\bookmarks.tpl.php:17 +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Sort by:" +msgstr "เคเคธ เคเคงเคพเคฐ เคชเคฐ เคเคพเคเคเฅเค:" + +#: ..\..\..\templates\bookmarks.tpl.php:18 +msgid "Date" +msgstr "เคคเคพเคฐเฅเคเคผ" + +#: ..\..\..\templates\bookmarks.tpl.php:19 +#: ..\..\..\templates\editbookmark.tpl.php:34 +msgid "Title" +msgstr "เคถเฅเคฐเฅเคทเค" + +#: ..\..\..\templates\bookmarks.tpl.php:23 +msgid "URL" +msgstr "เคฏเฅเคเคฐเคเคฒ" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Edit" +msgstr "เคธเคเคชเคพเคฆเคจ" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Delete" +msgstr "เคฎเคฟเคเคพเคเค" + +#: ..\..\..\templates\bookmarks.tpl.php:66 +msgid "by" +msgstr "เคฆเฅเคตเคพเคฐเคพ" + +#: ..\..\..\templates\bookmarks.tpl.php:78 +#, php-format +msgid " and %s1 other%s" +msgstr " เคคเคฅเคพ %s1 เค
เคจเฅเคฏ%s" + +#: ..\..\..\templates\bookmarks.tpl.php:81 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " เคคเคฅเคพ %2$s%1$s เค
เคจเฅเคฏ%3$s" + +#: ..\..\..\templates\bookmarks.tpl.php:90 +msgid "Copy" +msgstr "เคจเคเคผเคฒ เคเคฐเฅเค" + +#: ..\..\..\templates\bookmarks.tpl.php:136 +#: ..\..\..\templates\bookmarks.tpl.php:142 +msgid "First" +msgstr "เคชเฅเคฐเคฅเคฎ" + +#: ..\..\..\templates\bookmarks.tpl.php:137 +#: ..\..\..\templates\bookmarks.tpl.php:143 +msgid "Previous" +msgstr "เคชเคฟเคเคฒเคพ" + +#: ..\..\..\templates\bookmarks.tpl.php:150 +#: ..\..\..\templates\bookmarks.tpl.php:153 +msgid "Next" +msgstr "เค
เคเคฒเคพ" + +#: ..\..\..\templates\bookmarks.tpl.php:151 +#: ..\..\..\templates\bookmarks.tpl.php:154 +msgid "Last" +msgstr "เค
เคเคคเคฟเคฎ" + +#: ..\..\..\templates\bookmarks.tpl.php:156 +#, php-format +msgid "Page %d of %d" +msgstr "%d เคฎเฅเค เคธเฅ เคชเฅเคทเฅเค %d" + +#: ..\..\..\templates\bookmarks.tpl.php:160 +msgid "No bookmarks available" +msgstr "เคเฅเค เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคชเคฒเคฌเฅเคง เคจเคนเฅเค" + +#: ..\..\..\templates\dynamictags.inc.php:108 +#: ..\..\..\templates\sidebar.block.common.php:15 +#: ..\..\..\templates\sidebar.block.popular.php:21 +#: ..\..\..\templates\sidebar.block.recent.php:20 +#: ..\..\..\templates\tags.tpl.php:16 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ" +msgstr[1] "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\templates\editbookmark.tpl.php:29 +msgid "Address" +msgstr "เคชเคคเคพ" + +#: ..\..\..\templates\editbookmark.tpl.php:31 +#: ..\..\..\templates\editbookmark.tpl.php:36 +#: ..\..\..\templates\editprofile.tpl.php:31 +msgid "Required" +msgstr "เคเคตเคถเฅเคฏเค" + +#: ..\..\..\templates\editbookmark.tpl.php:39 +#: ..\..\..\templates\editprofile.tpl.php:47 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "เคตเคฐเฅเคฃเคจ" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "เค
เคฒเฅเคชเคตเคฟเคฐเคพเคฎ เคธเฅ เค
เคฒเค เคเฅ เคเค" + +#: ..\..\..\templates\editbookmark.tpl.php:49 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "เคเฅเคชเคจเฅเคฏเคคเคพ" + +#: ..\..\..\templates\editbookmark.tpl.php:52 +#: ..\..\..\templates\importDelicious.tpl.php:18 +#: ..\..\..\templates\importNetscape.tpl.php:19 +msgid "Public" +msgstr "เคธเคพเคฐเฅเคตเคเคจเคฟเค" + +#: ..\..\..\templates\editbookmark.tpl.php:53 +#: ..\..\..\templates\importDelicious.tpl.php:19 +#: ..\..\..\templates\importNetscape.tpl.php:20 +msgid "Shared with Watch List" +msgstr "เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ เคเฅ เคธเคพเคฅ เคธเคพเคเคพ" + +#: ..\..\..\templates\editbookmark.tpl.php:54 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Private" +msgstr "เคจเคฟเคเฅ" + +#: ..\..\..\templates\editbookmark.tpl.php:66 +msgid "Delete Bookmark" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคฎเคฟเคเคพเคเค" + +#: ..\..\..\templates\editbookmark.tpl.php:93 +msgid "Bookmarklet" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคฟเคนเฅเคจเค" + +#: ..\..\..\templates\editbookmark.tpl.php:94 +#, 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 เคชเคฐ เคนเฅเค เคต เคเฅเค เคชเฅเคทเฅเค เคเฅเคกเคผเคจเคพ เคเคพเคนเฅเค เคคเฅ เคเคธ เคชเคฐ เคเฅเคฒเคฟเค เคเคฐเฅเค" + +#: ..\..\..\templates\editbookmark.tpl.php:106 +#, php-format +msgid "Post to %s" +msgstr "%s เคเฅ เคชเฅเคธเฅเค เคเคฐเฅเค" + +#: ..\..\..\templates\editbookmark.tpl.php:107 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "%s เคเฅ เคชเฅเคธเฅเค เคเคฐเฅเค (เคชเฅเคช-เค
เคช)" + +#: ..\..\..\templates\editbookmark.tpl.php:111 +#: ..\..\..\templates\importDelicious.tpl.php:26 +#: ..\..\..\templates\importNetscape.tpl.php:27 +msgid "Import" +msgstr "เคเคฏเคพเคค" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Import bookmarks from bookmark file" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคซเคผเคพเคเคฒ เคธเฅ เคเคฏเคพเคค เคเคฐเฅเค" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "เคเคเคเคฐเคจเฅเค เคเคเฅเคธเคชเฅเคฒเฅเคฐเคฐ, เคฎเฅเคเคผเคฟเคฒเฅเคฒเคพ เคซเคผเฅเคฏเคฐเคซเคผเฅเคเฅเคธ เคคเคฅเคพ เคจเฅเคเคธเฅเคเฅเคช" + +#: ..\..\..\templates\editbookmark.tpl.php:114 +msgid "Import bookmarks from del.icio.us" +msgstr "del.icio.us เคธเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคฏเคพเคค เคเคฐเฅเค" + +#: ..\..\..\templates\editprofile.tpl.php:10 +msgid "Account Details" +msgstr "เคเคพเคคเฅ เคเฅ เคเคพเคจเคเคพเคฐเฅ" + +#: ..\..\..\templates\editprofile.tpl.php:14 +#: ..\..\..\templates\login.tpl.php:15 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:16 +msgid "Username" +msgstr "เคเคชเคฏเฅเคเฅเคคเคพ เคจเคพเคฎ" + +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "New Password" +msgstr "เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ" + +#: ..\..\..\templates\editprofile.tpl.php:24 +#, fuzzy +msgid "Confirm Password" +msgstr "เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ เคธเคคเฅเคฏเคพเคชเคฟเคค เคเคฐเฅเค" + +#: ..\..\..\templates\editprofile.tpl.php:29 +#: ..\..\..\templates\register.tpl.php:26 +msgid "E-mail" +msgstr "เคเคฎเฅเคฒ" + +#: ..\..\..\templates\editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "เคตเฅเคฏเคเฅเคคเคฟเคเคค เคเคพเคจเคเคพเคฐเฅ" + +#: ..\..\..\templates\editprofile.tpl.php:39 +#: ..\..\..\templates\profile.tpl.php:12 +msgid "Name" +msgstr "เคจเคพเคฎ" + +#: ..\..\..\templates\editprofile.tpl.php:43 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "เคเฅเคนเคชเฅเคทเฅเค " + +#: ..\..\..\templates\error.404.tpl.php:5 +msgid "Not Found" +msgstr "เคจเคนเฅเค เคฎเคฟเคฒเคพ" + +#: ..\..\..\templates\error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "เคเคธ เคธเคฐเฅเคตเคฐ เคชเคฐ เคจเคฟเคตเฅเคฆเคฟเคค เคฏเฅเคเคฐเคเคฒ เคจเคนเฅเค เคฎเคฟเคฒเคพ" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "เคธเคพเคฎเคพเคจเฅเคฏ เคธเคฐเฅเคตเคฐ เคคเฅเคฐเฅเคเคฟ" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "เคจเคฟเคตเฅเคฆเคฟเคค เคฏเฅเคเคฐเคเคฒ เคเฅ เคชเฅเคฐเฅเคธเฅเคธ เคจเคนเฅเค เคเคฟเคฏเคพ เคเคพ เคธเคเคพ" + +#: ..\..\..\templates\importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "<a href=\"http://del.icio.us/api/posts/all\">del.icio.us เคเฅ เคจเคฟเคฐเฅเคฏเคพเคค เคชเฅเคทเฅเค เคชเคฐ</a> เคฒเฅเคเคเคจ เคเคฐเฅเค" + +#: ..\..\..\templates\importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "เคชเคฐเคฟเคฃเคพเคฎ <abbr title=\"Extensible Markup Language\">เคเคเฅเคธเคเคฎเคเคฒ</abbr> เคเฅ เค
เคชเคจเฅ เคเคฎเฅเคชเฅเคฏเฅเคเคฐ เคชเคฐ เคธเคนเฅเคเฅเค" + +#: ..\..\..\templates\importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "เคเคธ เคซเคผเคพเคเคฒ เคเฅ เค
เคชเคจเฅ เคเคฎเฅเคชเฅเคฏเฅเคเคฐ เคชเคฐ เคขเฅเคเคขเคจเฅ เคเฅ เคฒเคฟเค <kbd>เคฌเฅเคฐเคพเคเคเคผ...</kbd> เคชเคฐ เคเฅเคฒเคฟเค เคเคฐเฅเค. เคซเคผเคพเคเคฒ เคเคพ เค
เคงเคฟเคเคคเคฎ เคเคเคพเคฐ 1 เคฎเฅ.เคฌเคพ. เคคเค เคนเฅ เคธเคเคคเคพ เคนเฅ" + +#: ..\..\..\templates\importDelicious.tpl.php:36 +#: ..\..\..\templates\importNetscape.tpl.php:43 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "เคเคชเคเฅ เคเคฏเคพเคคเคฟเคค เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคกเคฟเคซเคผเฅเคฒเฅเค เคเฅเคชเคจเฅเคฏเคคเคพ เคตเคฟเคจเฅเคฏเคพเคธ เคเฅเคจเฅเค" + +#: ..\..\..\templates\importDelicious.tpl.php:37 +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเคฏเคพเคค เคเคพเคฒเฅ เคเคฐเคจเฅ เคเฅ เคฒเคฟเค <kbd>เคเคฏเคพเคค</kbd> เคชเคฐ เคเฅเคฒเคฟเค เคเคฐเฅเค, เคเคธเคฎเฅเค เคเฅเค เคธเคฎเคฏ เคฒเค เคธเคเคคเคพ เคนเฅ" + +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "เคจเคฟเคฐเฅเคฆเฅเคถ" + +#: ..\..\..\templates\importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "เค
เคชเคจเฅ เคฌเฅเคฐเคพเคเคเคผเคฐ เคธเฅ เค
เคชเคจเฅ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคเฅ เคเค เคซเคผเคพเคเคฒ เคฎเฅเค เคจเคฟเคฐเฅเคฏเคพเคค เคเคฐเฅเค" + +#: ..\..\..\templates\importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "เคเคเคเคฐเคจเฅเค เคเคเฅเคธเคชเฅเคฒเฅเคฐเคฐ: <kbd>เคซเคผเคพเคเคฒ > เคเคฏเคพเคค เคต เคจเคฟเคฐเฅเคฏเคพเคค... > เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค เคจเคฟเคฐเฅเคฏเคพเคค เคเคฐเฅเค" + +#: ..\..\..\templates\importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "เคฎเฅเคเคผเคฟเคฒเฅเคฒเคพ เคซเคผเฅเคฏเคฐเคซเคผเฅเคเฅเคธ: <kbd>เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค > เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคชเฅเคฐเคฌเคเคงเคจ... > เคซเคผเคพเคเคฒ > เคจเคฟเคฐเฅเคฏเคพเคค..." + +#: ..\..\..\templates\importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "เคจเฅเคเคธเฅเคเฅเคช: <kbd>เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค > เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคชเฅเคฐเคฌเคเคงเคจ... > เคเคเคพเคฐ > เคจเคฟเคฐเฅเคฏเคพเคค..." + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "เค
เคชเคจเฅ เคเคฎเฅเคชเฅเคฏเฅเคเคฐ เคฎเฅเค เคธเคนเฅเคเฅ เคเค เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคซเคผเคพเคเคฒเฅเค เคเฅ เคขเฅเคเคขเคจเฅ เคเฅ เคฒเคฟเค <kbd>เคฌเฅเคฐเคพเคเคเคผ...</kbd> เคชเคฐ เคเฅเคฒเคฟเค เคเคฐเฅเค. เคซเคผเคพเคเคฒ เคเคพ เค
เคงเคฟเคเคคเคฎ เคเคเคพเคฐ 1เคฎเฅ.เคฌเคพ. เคคเค เคนเฅ เคธเคเคคเคพ เคนเฅ." + +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\register.tpl.php:21 +msgid "Password" +msgstr "เคเฅเคเคถเคฌเฅเคฆ" + +#: ..\..\..\templates\login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "เคเฅเคเคถเคฌเฅเคฆ เคเฅ เคฒเคฟเค เคฎเฅเคเคธเฅ 2 เคธเคชเฅเคคเคพเคน เคคเค เคจเคนเฅเค เคชเฅเคเฅเค" + +#: ..\..\..\templates\login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "เค
เคชเคจเคพ เคเฅเคเคถเคฌเฅเคฆ เคญเฅเคฒ เคเคฏเฅ เคนเฅเค?" + +#: ..\..\..\templates\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 เคเคชเคเฅ เคเค เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ เคฌเคจเคพ เคธเคเคคเคพ เคนเฅเฅค เคเคพเคคเฅ เคธเฅ เคธเคเคฌเคฆเฅเคง เค
เคชเคจเคพ เคเคชเคฏเฅเคเฅเคคเคพ เคจเคพเคฎ เคเคฐ เคเคฎเฅเคฒ เคชเคคเคพ เคจเฅเคเฅ เคชเฅเคฐเคตเคฟเคทเฅเค เคเคฐเฅเค เคเคฐ เคนเคฎ เคเคชเคเฅ เคเค เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ เคเคฎเฅเคฒ เคเคฐ เคฆเฅเคเคเฅ." + +#: ..\..\..\templates\password.tpl.php:14 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "<abbr title=\"เคเคฒเฅเคเฅเคเฅเคฐเคพเคจเคฟเค เคฎเฅเคฒ\">เคเคฎเฅเคฒ</abbr>" + +#: ..\..\..\templates\password.tpl.php:19 +msgid "Generate Password" +msgstr "เคจเคฏเคพ เคเฅเคเคถเคฌเฅเคฆ เคฌเคจเคพเคฏเฅเค" + +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "เคธเคฆเคธเฅเคฏเคคเคพ เค
เคตเคงเคฟ" + +#: ..\..\..\templates\profile.tpl.php:35 +#: ..\..\..\templates\sidebar.block.watchlist.php:8 +msgid "Watching" +msgstr "เคจเคฟเคเคฐเคพเคจเฅ เคฎเฅเค" + +#: ..\..\..\templates\profile.tpl.php:50 +msgid "Watched By" +msgstr "เคฆเฅเคตเคพเคฐเคพ เคฆเฅเคเคพ เคเคฏเคพ" + +#: ..\..\..\templates\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 เคเคพเคคเคพ เคฌเคจเคพเคจเฅ เคเฅ เคฒเคฟเค เคฏเคนเคพเค เคธเคพเคเคจ เคเคฐเฅเค. เคจเฅเคเฅ เคจเคฟเคตเฅเคฆเคฟเคค เคธเคญเฅ เคเคพเคจเคเคพเคฐเคฟเคฏเคพเค เคเคตเคถเฅเคฏเค เคนเฅเค" + +#: ..\..\..\templates\rss.tpl.php:9 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "%s เคเฅ เคชเฅเคธเฅเค เคเฅ เคเคเค เคนเคพเคฒเคฟเคฏเคพ เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค " + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +msgid "No bookmarks found" +msgstr "เคเฅเค เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟ เคจเคนเฅเค เคฎเคฟเคฒเฅ" + +#: ..\..\..\templates\sidebar.block.recent.php:15 +msgid "Recent Tags" +msgstr "เคนเคพเคฒเคฟเคฏเคพ เคเฅเค" + +#: ..\..\..\templates\sidebar.block.related.php:15 +msgid "Related Tags" +msgstr "เคธเคฎเฅเคฌเคเคงเคฟเคค เคเฅเค" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ เคธเฅ เคฎเคฟเคเคพเคเค" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "เคจเคฟเคเคฐเคพเคจเฅ เคธเฅเคเฅ เคฎเฅเค เคเฅเคกเคผเฅเค" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:17 +#, fuzzy +msgid "Actions" +msgstr "เคจเคฟเคฐเฅเคฆเฅเคถ" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Alphabet" +msgstr "เคตเคฐเฅเคฃ" + +#: ..\..\..\templates\tags.tpl.php:9 +msgid "Popularity" +msgstr "เคฒเฅเคเคชเฅเคฐเคฟเคฏเคคเคพ" + +#: ..\..\..\templates\toolbar.inc.php:11 +msgid "Bookmarks" +msgstr "เคชเฅเคทเฅเค -เคธเฅเคฎเฅเคคเคฟเคฏเคพเค" + +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "เคฒเฅเค เคเคเค" + diff --git a/data/locales/it_IT/LC_MESSAGES/messages.mo b/data/locales/it_IT/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..7662e54 --- /dev/null +++ b/data/locales/it_IT/LC_MESSAGES/messages.mo diff --git a/data/locales/it_IT/LC_MESSAGES/messages.po b/data/locales/it_IT/LC_MESSAGES/messages.po new file mode 100644 index 0000000..46d86d3 --- /dev/null +++ b/data/locales/it_IT/LC_MESSAGES/messages.po @@ -0,0 +1,853 @@ +# Scuttle it-IT Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# <upcome@gmail.com> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-11-10 16:58+0100\n" +"PO-Revision-Date: 2006-03-18 21:51-0800\n" +"Last-Translator: Marcus Campbell <marcus.campbell@gmail.com>\n" +"Language-Team: it-IT <upcome@gmail.com>\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "Informazioni" + +#: ..\..\..\ajaxDelete.php:29 +#, fuzzy +msgid "You are not allowed to delete this bookmark" +msgstr "Non hai il permesso di eliminare questo preferito" + +#: ..\..\..\ajaxDelete.php:33 +#, fuzzy +msgid "Failed to delete bookmark" +msgstr "Eliminazione del preferito fallita" + +#: ..\..\..\alltags.php:50 +msgid "All Tags" +msgstr "Tutti i Tags" + +#: ..\..\..\alltags.php:59 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:46 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:61 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:62 +#, php-format +msgid "User with username %s not was not found" +msgstr "L'utente %s non รจ stato trovato" + +#: ..\..\..\bookmarks.php:71 +#, fuzzy, php-format +msgid "User with username %s was not found" +msgstr "L'utente %s non รจ stato trovato" + +#: ..\..\..\bookmarks.php:94 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "Il preferito deve avere un titolo ed un indirizzo" + +#: ..\..\..\bookmarks.php:114 +#: ..\..\..\edit.php:58 +msgid "Bookmark saved" +msgstr "Preferito salvato" + +#: ..\..\..\bookmarks.php:122 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:74 +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" + +#: ..\..\..\bookmarks.php:160 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Aggiungi un preferito" + +#: ..\..\..\bookmarks.php:163 +msgid "Add Bookmark" +msgstr "Aggiungi preferito" + +#: ..\..\..\bookmarks.php:166 +msgid "You must be logged in before you can add bookmarks." +msgstr "Devi essere loggato per poter aggiungere dei preferiti" + +#: ..\..\..\bookmarks.php:213 +#, fuzzy +msgid "My Bookmarks" +msgstr "I Miei Preferiti" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "Modifica Preferito" + +#: ..\..\..\edit.php:34 +#, fuzzy, php-format +msgid "Bookmark with id %s not was not found" +msgstr "Il preferito con id %s non รจ stato trovato" + +#: ..\..\..\edit.php:39 +#, fuzzy +msgid "You are not allowed to edit this bookmark" +msgstr "Non hai il permesso per modificare questo preferito" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "Errore salvando il preferito" + +#: ..\..\..\edit.php:78 +#, fuzzy +msgid "Failed to delete the bookmark" +msgstr "Eliminazione preferito fallita" + +#: ..\..\..\edit.php:88 +#: ..\..\..\templates\editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "Salva Modifiche" + +#: ..\..\..\functions.inc.php:92 +msgid "message_die() was called multiple times." +msgstr "message_die() รจ stato richiamato piรน volte." + +#: ..\..\..\functions.inc.php:104 +msgid "SQL Error" +msgstr "Errore SQL" + +#: ..\..\..\functions.inc.php:110 +msgid "Line" +msgstr "Linea" + +#: ..\..\..\functions.inc.php:110 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "File" + +#: ..\..\..\functions.inc.php:116 +#, fuzzy +msgid "Information" +msgstr "Informazioni" + +#: ..\..\..\functions.inc.php:121 +msgid "Critical Information" +msgstr "Informazioni Importanti" + +#: ..\..\..\functions.inc.php:126 +msgid "An error occured" +msgstr "Si รจ verificato un errore" + +#: ..\..\..\functions.inc.php:129 +msgid "General Error" +msgstr "Errore Generale" + +#: ..\..\..\functions.inc.php:137 +msgid "An critical error occured" +msgstr "Si รจ verificato un errore critico" + +#: ..\..\..\functions.inc.php:140 +msgid "Critical Error" +msgstr "Errore Critico" + +#: ..\..\..\functions.inc.php:149 +msgid "DEBUG MODE" +msgstr "MODO DEBUG" + +#: ..\..\..\history.php:65 +msgid "History" +msgstr "" + +#: ..\..\..\history.php:66 +#, php-format +msgid "History for %s" +msgstr "" + +#: ..\..\..\history.php:81 +msgid "Address was not found" +msgstr "" + +#: ..\..\..\import.php:41 +msgid "Could not open XML input" +msgstr "Non posso aprire la fonte XML" + +#: ..\..\..\import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "Errore XML: %s alla linea %d" + +#: ..\..\..\import.php:54 +msgid "Import Bookmarks from del.icio.us" +msgstr "Importa Preferiti da del.icio.us" + +#: ..\..\..\import.php:86 +#: ..\..\..\importNetscape.php:64 +#, fuzzy +msgid "You have already submitted this bookmark." +msgstr "Hai giร inserito questo preferito" + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:72 +#, fuzzy +msgid "Bookmark imported." +msgstr "Preferito importato" + +#: ..\..\..\importNetscape.php:81 +#, fuzzy +msgid "Import Bookmarks from Browser File" +msgstr "Importa Preferiti da un File del Browser" + +#: ..\..\..\index.php:32 +msgid "You have now logged out" +msgstr "Sei uscito dal sistema" + +#: ..\..\..\index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Preferiti recenti" + +#: ..\..\..\index.php:72 +msgid "Store, share and tag your favourite links" +msgstr "" + +#: ..\..\..\index.php:73 +msgid "Recent Bookmarks" +msgstr "Preferiti Recenti" + +#: ..\..\..\jsScuttle.php:22 +msgid "Are you sure?" +msgstr "" + +#: ..\..\..\jsScuttle.php:22 +msgid "Yes" +msgstr "" + +#: ..\..\..\jsScuttle.php:22 +msgid "No" +msgstr "" + +#: ..\..\..\jsScuttle.php:68 +msgid "Available" +msgstr "" + +#: ..\..\..\jsScuttle.php:71 +#, fuzzy +msgid "Not Available" +msgstr "Nessun preferito disponibile" + +#: ..\..\..\login.php:38 +#, fuzzy +msgid "The details you have entered are incorrect. Please try again." +msgstr "Le informazioni che hai fornito non sono corrette. Riprova." + +#: ..\..\..\login.php:48 +#: ..\..\..\templates\login.tpl.php:26 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "Entra" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "" + +#: ..\..\..\password.php:35 +#, fuzzy +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "<em>Devi</em> inserire un nome utente, una password, un nome ed un indirizzo <abbr title=\"posta elettronica\">e-mail</abbr>." + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "" + +#: ..\..\..\password.php:45 +#, fuzzy +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "<em>Devi</em> inserire un nome utente, una password, un nome ed un indirizzo <abbr title=\"posta elettronica\">e-mail</abbr>." + +#: ..\..\..\password.php:53 +#, 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" + +#: ..\..\..\password.php:57 +#, fuzzy +msgid "Your new password is:" +msgstr "Conferma Nuova Password" + +#: ..\..\..\password.php:57 +msgid "To keep your bookmarks secure, you should change this password in your profile the next time you log in." +msgstr "" + +#: ..\..\..\password.php:60 +#, fuzzy, php-format +msgid "%s Account Information" +msgstr "Informazioni" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "" + +#: ..\..\..\password.php:69 +#, fuzzy +msgid "Forgotten Password" +msgstr "Nuova Password" + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\dynamictags.inc.php:101 +#: ..\..\..\templates\sidebar.block.common.php:9 +#: ..\..\..\templates\sidebar.block.popular.php:15 +#: ..\..\..\templates\sidebar.block.recent.php:25 +msgid "Popular Tags" +msgstr "Tags Piรน Utilizzati" + +#: ..\..\..\profile.php:54 +#: ..\..\..\watched.php:114 +msgid "Username was not specified" +msgstr "Nome utente non specificato" + +#: ..\..\..\profile.php:60 +#, fuzzy +msgid "My Profile" +msgstr "Profilo" + +#: ..\..\..\profile.php:62 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Profile" +msgstr "Profilo" + +#: ..\..\..\profile.php:80 +#, fuzzy +msgid "Password and confirmation do not match." +msgstr "La password e la sua conferma non coincidono." + +#: ..\..\..\profile.php:84 +#, fuzzy +msgid "Password must be at least 6 characters long." +msgstr "La password deve essere lunga almeno 6 caratteri." + +#: ..\..\..\profile.php:88 +#, fuzzy +msgid "E-mail address is not valid." +msgstr "Indirizzo e-mail non valido." + +#: ..\..\..\profile.php:92 +msgid "An error occurred while saving your changes." +msgstr "Si รจ verificato un errore salvando le tue modifiche." + +#: ..\..\..\profile.php:94 +#, fuzzy +msgid "Changes saved." +msgstr "Modifiche salvate." + +#: ..\..\..\register.php:33 +#, fuzzy +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "<em>Devi</em> inserire un nome utente, una password, un nome ed un indirizzo <abbr title=\"posta elettronica\">e-mail</abbr>." + +#: ..\..\..\register.php:37 +msgid "This username already exists, please make another choice." +msgstr "Questo nome utente esiste giร , scegline un altro." + +#: ..\..\..\register.php:41 +#, fuzzy +msgid "E-mail address is not valid. Please try again." +msgstr "Indirizzo e-mail non valido." + +#: ..\..\..\register.php:50 +#, fuzzy +msgid "You have successfully registered. Enjoy!" +msgstr "Ti sei registrato con successo. Buon divertimento!" + +#: ..\..\..\register.php:52 +msgid "Registration failed. Please try again." +msgstr "Registrazione fallita. Riprova." + +#: ..\..\..\register.php:57 +#: ..\..\..\templates\register.tpl.php:32 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "Registrati" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:57 +msgid "Search" +msgstr "Cerca" + +#: ..\..\..\search.inc.php:35 +#, fuzzy +msgid "this user's bookmarks" +msgstr "%s preferiti" + +#: ..\..\..\search.inc.php:40 +msgid "my bookmarks" +msgstr "i miei preferiti" + +#: ..\..\..\search.inc.php:41 +#, fuzzy +msgid "my watchlist" +msgstr "Metti Sotto Osservazione" + +#: ..\..\..\search.inc.php:45 +msgid "all bookmarks" +msgstr "tutti i preferiti" + +#: ..\..\..\search.inc.php:48 +msgid "for" +msgstr "per" + +#: ..\..\..\search.php:91 +#: ..\..\..\search.php:128 +msgid "Search Bookmarks" +msgstr "Cerca Preferiti" + +#: ..\..\..\search.php:97 +#, fuzzy +msgid "Search Results" +msgstr "Risultati della Ricerca" + +#: ..\..\..\tags.php:38 +#: ..\..\..\templates\editbookmark.tpl.php:44 +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Tags" +msgstr "Etichette" + +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "%s Preferiti" + +#: ..\..\..\watch.php:84 +#, fuzzy +msgid "User removed from your watchlist" +msgstr "Utente rimosso dalla tua watchlist" + +#: ..\..\..\watch.php:86 +#, fuzzy +msgid "User added to your watchlist" +msgstr "Utente aggiunto alla tua watchlist" + +#: ..\..\..\watched.php:105 +#, fuzzy +msgid "My Watchlist" +msgstr "Lista Sotto Osservazione" + +#: ..\..\..\watched.php:107 +#: ..\..\..\templates\sidebar.block.profile.php:14 +#: ..\..\..\templates\toolbar.inc.php:12 +#, fuzzy +msgid "Watchlist" +msgstr "Lista Sotto Osservazione" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "<strong>Archivia</strong> i tuoi Preferiti in un unico luogo, accessibile ovunque tu sia. " + +#: ..\..\..\templates\about.tpl.php:7 +#, fuzzy +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "<strong>Condividi</strong> i tuoi Preferiti con gli altri o mantinili privati. Potrai restare aggiornato sui Preferiti aggiunti da altri utenti." + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "<strong>Tagga</strong> i tuoi Preferiti con quante etichette vuoi, anzichรฉ perdere tempo con le cartelle." + +#: ..\..\..\templates\about.tpl.php:9 +#, fuzzy, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "<strong><a href=\"register.php\">Registrati ora</a></strong> per iniziare ad utilizzare %s!" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "(Geek Stuff)" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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 <a href=\"http://sourceforge.net/projects/scuttle/\">un progetto open-source</a>." + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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." + +#: ..\..\..\templates\bookmarks.tpl.php:17 +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Sort by:" +msgstr "Ordinato per:" + +#: ..\..\..\templates\bookmarks.tpl.php:18 +msgid "Date" +msgstr "Data" + +#: ..\..\..\templates\bookmarks.tpl.php:19 +#: ..\..\..\templates\editbookmark.tpl.php:34 +msgid "Title" +msgstr "Titolo" + +#: ..\..\..\templates\bookmarks.tpl.php:23 +msgid "URL" +msgstr "URL" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Edit" +msgstr "Modifica" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Delete" +msgstr "Elimina" + +#: ..\..\..\templates\bookmarks.tpl.php:66 +msgid "by" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:78 +#, fuzzy, php-format +msgid " and %s1 other%s" +msgstr " e %s altri" + +#: ..\..\..\templates\bookmarks.tpl.php:81 +#, fuzzy, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " e %s altri" + +#: ..\..\..\templates\bookmarks.tpl.php:90 +msgid "Copy" +msgstr "Copia" + +#: ..\..\..\templates\bookmarks.tpl.php:136 +#: ..\..\..\templates\bookmarks.tpl.php:142 +msgid "First" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:137 +#: ..\..\..\templates\bookmarks.tpl.php:143 +msgid "Previous" +msgstr "Precedente" + +#: ..\..\..\templates\bookmarks.tpl.php:150 +#: ..\..\..\templates\bookmarks.tpl.php:153 +msgid "Next" +msgstr "Seguente" + +#: ..\..\..\templates\bookmarks.tpl.php:151 +#: ..\..\..\templates\bookmarks.tpl.php:154 +msgid "Last" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:156 +#, php-format +msgid "Page %d of %d" +msgstr "Pagina %d di %d" + +#: ..\..\..\templates\bookmarks.tpl.php:160 +msgid "No bookmarks available" +msgstr "Nessun preferito disponibile" + +#: ..\..\..\templates\dynamictags.inc.php:108 +#: ..\..\..\templates\sidebar.block.common.php:15 +#: ..\..\..\templates\sidebar.block.popular.php:21 +#: ..\..\..\templates\sidebar.block.recent.php:20 +#: ..\..\..\templates\tags.tpl.php:16 +#, fuzzy +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "preferito" +msgstr[1] "preferiti" + +#: ..\..\..\templates\editbookmark.tpl.php:29 +msgid "Address" +msgstr "Indirizzo" + +#: ..\..\..\templates\editbookmark.tpl.php:31 +#: ..\..\..\templates\editbookmark.tpl.php:36 +#: ..\..\..\templates\editprofile.tpl.php:31 +msgid "Required" +msgstr "Obbligatorio" + +#: ..\..\..\templates\editbookmark.tpl.php:39 +#: ..\..\..\templates\editprofile.tpl.php:47 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "Descrizione" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "Saparati da virgola" + +#: ..\..\..\templates\editbookmark.tpl.php:49 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Privacy" + +#: ..\..\..\templates\editbookmark.tpl.php:52 +#: ..\..\..\templates\importDelicious.tpl.php:18 +#: ..\..\..\templates\importNetscape.tpl.php:19 +msgid "Public" +msgstr "Pubblico" + +#: ..\..\..\templates\editbookmark.tpl.php:53 +#: ..\..\..\templates\importDelicious.tpl.php:19 +#: ..\..\..\templates\importNetscape.tpl.php:20 +msgid "Shared with Watch List" +msgstr "Condiviso con chi tieni sotto osservazione" + +#: ..\..\..\templates\editbookmark.tpl.php:54 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Private" +msgstr "Privato" + +#: ..\..\..\templates\editbookmark.tpl.php:66 +msgid "Delete Bookmark" +msgstr "Elimina Preferito" + +#: ..\..\..\templates\editbookmark.tpl.php:93 +msgid "Bookmarklet" +msgstr "Bookmarklet" + +#: ..\..\..\templates\editbookmark.tpl.php:94 +#, 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 " + +#: ..\..\..\templates\editbookmark.tpl.php:106 +#, php-format +msgid "Post to %s" +msgstr "Aggiungi a %s" + +#: ..\..\..\templates\editbookmark.tpl.php:107 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Aggiungi a %s (Pop-up)" + +#: ..\..\..\templates\editbookmark.tpl.php:111 +#: ..\..\..\templates\importDelicious.tpl.php:26 +#: ..\..\..\templates\importNetscape.tpl.php:27 +msgid "Import" +msgstr "Importa" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Import bookmarks from bookmark file" +msgstr "Importa preferiti da un file" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox e Netscape" + +#: ..\..\..\templates\editbookmark.tpl.php:114 +msgid "Import bookmarks from del.icio.us" +msgstr "Importa preferiti da del.icio.us" + +#: ..\..\..\templates\editprofile.tpl.php:10 +msgid "Account Details" +msgstr "" + +#: ..\..\..\templates\editprofile.tpl.php:14 +#: ..\..\..\templates\login.tpl.php:15 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:16 +msgid "Username" +msgstr "Username" + +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "New Password" +msgstr "Nuova Password" + +#: ..\..\..\templates\editprofile.tpl.php:24 +#, fuzzy +msgid "Confirm Password" +msgstr "Conferma Nuova Password" + +#: ..\..\..\templates\editprofile.tpl.php:29 +#: ..\..\..\templates\register.tpl.php:26 +msgid "E-mail" +msgstr "E-mail" + +#: ..\..\..\templates\editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "" + +#: ..\..\..\templates\editprofile.tpl.php:39 +#: ..\..\..\templates\profile.tpl.php:12 +msgid "Name" +msgstr "Nome" + +#: ..\..\..\templates\editprofile.tpl.php:43 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "Homepage" + +#: ..\..\..\templates\error.404.tpl.php:5 +#, fuzzy +msgid "Not Found" +msgstr "Non Trovato" + +#: ..\..\..\templates\error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "URL non trovata" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "Errore generale del server" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "URL non eseguibile" + +#: ..\..\..\templates\importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Fai il Log-in e vai alla <a href=\"http://del.icio.us/api/posts/all\">export page di del.icio.us</a>" + +#: ..\..\..\templates\importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Salva il file <abbr title=\"Extensible Markup Language\">XML</abbr> nel tuo computer" + +#: ..\..\..\templates\importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Clicca <kbd>Sfoglia...</kbd> per trovare il file nel tuo computer. La dimensione massima accettata รจ 1MB" + +#: ..\..\..\templates\importDelicious.tpl.php:36 +#: ..\..\..\templates\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" + +#: ..\..\..\templates\importDelicious.tpl.php:37 +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "Clicca <kbd>Importa</kbd> per cominciare ad importare i preferiti; questa operazione puรฒ richiedere qualche minuto" + +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "Istruzioni" + +#: ..\..\..\templates\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" + +#: ..\..\..\templates\importNetscape.tpl.php:37 +#, fuzzy +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>File > Importa ed Esporta... > Esporta Preferiti" + +#: ..\..\..\templates\importNetscape.tpl.php:38 +#, fuzzy +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Segnalibri > Gestione Segnalibri... > File > Esporta..." + +#: ..\..\..\templates\importNetscape.tpl.php:39 +#, fuzzy +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Bookmarks > Gestione Bookmarks... > Strumenti > Esporta..." + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Clicca <kbd>Sfoglia...</kbd> per trovare il file salvato sul tuo computer. La dimensione massima consentita รจ 1MB" + +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\register.tpl.php:21 +msgid "Password" +msgstr "Password" + +#: ..\..\..\templates\login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Non chiedermi la password per 2 settimane" + +#: ..\..\..\templates\login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "" + +#: ..\..\..\templates\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 "" + +#: ..\..\..\templates\password.tpl.php:14 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "<abbr title=\"Posta elettronica\">E-mail</abbr>" + +#: ..\..\..\templates\password.tpl.php:19 +#, fuzzy +msgid "Generate Password" +msgstr "Nuova Password" + +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "Iscritto Dal" + +#: ..\..\..\templates\profile.tpl.php:35 +#: ..\..\..\templates\sidebar.block.watchlist.php:8 +#, fuzzy +msgid "Watching" +msgstr "Lista Sotto Osservazione" + +#: ..\..\..\templates\profile.tpl.php:50 +#, fuzzy +msgid "Watched By" +msgstr "Sotto Osservazione Di" + +#: ..\..\..\templates\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." + +#: ..\..\..\templates\rss.tpl.php:9 +#, fuzzy, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Preferiti inseriti di recente" + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +msgid "No bookmarks found" +msgstr "Nessun preferito trovato" + +#: ..\..\..\templates\sidebar.block.recent.php:15 +#, fuzzy +msgid "Recent Tags" +msgstr "Tags Recenti" + +#: ..\..\..\templates\sidebar.block.related.php:15 +msgid "Related Tags" +msgstr "Tags Correlati" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "Rimuovi da Sotto Osservazione" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "Metti Sotto Osservazione" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:17 +#, fuzzy +msgid "Actions" +msgstr "Istruzioni" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Alphabet" +msgstr "" + +#: ..\..\..\templates\tags.tpl.php:9 +#, fuzzy +msgid "Popularity" +msgstr "Tags Piรน Utilizzati" + +#: ..\..\..\templates\toolbar.inc.php:11 +#, fuzzy +msgid "Bookmarks" +msgstr "%s Preferiti" + +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "Esci" + diff --git a/data/locales/ja_JP/LC_MESSAGES/messages.mo b/data/locales/ja_JP/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..f04d53f --- /dev/null +++ b/data/locales/ja_JP/LC_MESSAGES/messages.mo diff --git a/data/locales/ja_JP/LC_MESSAGES/messages.po b/data/locales/ja_JP/LC_MESSAGES/messages.po new file mode 100644 index 0000000..4fd0637 --- /dev/null +++ b/data/locales/ja_JP/LC_MESSAGES/messages.po @@ -0,0 +1,1500 @@ +# Scuttle ja-JP Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# Tadashi Jokagi <elf2000@users.sourceforge.net>, 2005-2009. +# +msgid "" +msgstr "" +"Project-Id-Version: semanticscuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-04 11:48+0200\n" +"PO-Revision-Date: 2009-05-30 02:29+0900\n" +"Last-Translator: Tadashi Jokagi <elf2000@users.sourceforge.net>\n" +"Language-Team: Japanese <http://oss.poyo.jp/bbs/>\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" + +#: ../../../about.php:23 ../../../about.php:24 +#: ../../../templates/bottom.inc.php:5 ../../../templates/toolbar.inc.php:15 +#: ../../../templates/toolbar.inc.php:28 +msgid "About" +msgstr "ใใฎใตใคใใซใคใใฆ" + +#: ../../../admin.php:32 +msgid "Manage users" +msgstr "ใฆใผใถใผ็ฎก็" + +#: ../../../admin.php:68 +#, php-format +msgid "%s and all his bookmarks and tags were deleted." +msgstr "%s ใจใในใฆใฎใใใฏใใผใฏใๅ้คใใพใใใ" + +#: ../../../admin.php:75 +msgid "Problem with " +msgstr "" + +#: ../../../ajaxDelete.php:37 +msgid "You are not allowed to delete this bookmark" +msgstr "ใใฎใใใฏใใผใฏใฎๅ้คใฏ่จฑๅฏใใใฆใใพใใ" + +#: ../../../ajaxDelete.php:41 ../../../edit.php:103 +msgid "Failed to delete bookmark" +msgstr "ใใใฏใใผใฏใฎๅ้คใซๅคฑๆใใพใใ" + +#: ../../../alltags.php:49 +msgid "All Tags" +msgstr "ใในใฆใฎใฟใฐ" + +#: ../../../alltags.php:55 ../../../bookmarks.php:96 +#: ../../../populartags.php:52 ../../../profile.php:51 ../../../rss.php:67 +#: ../../../search.php:101 ../../../watch.php:45 ../../../watchlist.php:61 +#, php-format +msgid "User with username %s was not found" +msgstr "ใฆใผใถใผๅใใ%sใใฎใฆใผใถใผใฏ่ฆใคใใใใพใใใงใใ" + +#: ../../../bookmarkcommondescriptionedit.php:51 ../../../tag2tagadd.php:37 +#: ../../../tag2tagdelete.php:41 ../../../tag2tagedit.php:33 +#: ../../../tagcommondescriptionedit.php:43 ../../../tagedit.php:43 +msgid "Permission denied." +msgstr "ๆจฉ้ใใใใพใใใ" + +#: ../../../bookmarkcommondescriptionedit.php:60 +msgid "Bookmark common description updated" +msgstr "ใใใฏใใผใฏๅ
ฑ้ใฎ่ชฌๆใๆดๆฐใใพใใ" + +#: ../../../bookmarkcommondescriptionedit.php:63 +msgid "Failed to update the bookmark common description" +msgstr "ใใใฏใใผใฏๅ
ฑ้ใฎ่ชฌๆใฎๆดๆฐใซๅคฑๆใใพใใ" + +#: ../../../bookmarkcommondescriptionedit.php:71 +msgid "Edit Bookmark Common Description" +msgstr "ใใใฏใใผใฏๅ
ฑ้ใฎ่ชฌๆใฎ็ทจ้" + +#: ../../../bookmarks.php:111 ../../../tags.php:47 +msgid "Remove the tag from the selection" +msgstr "้ธๆใใใฟใฐใๅ้คใใ" + +#: ../../../bookmarks.php:131 ../../../edit.php:65 +msgid "Your bookmark must have a title and an address" +msgstr "ใใใฏใใผใฏใฏ้กๅใจใขใใฌในใใชใใใฐใชใใพใใ" + +#: ../../../bookmarks.php:152 ../../../edit.php:83 ../../../edit.php:86 +msgid "Bookmark saved" +msgstr "ใใใฏใใผใฏใไฟๅญใใพใใ" + +#: ../../../bookmarks.php:152 +msgid "(Come back to previous page.)" +msgstr "" + +#: ../../../bookmarks.php:159 ../../../import.php:106 +#: ../../../importNetscape.php:108 +msgid "" +"There was an error saving your bookmark. Please try again or contact the " +"administrator." +msgstr "" +"ใใใฏใใผใฏใฎไฟๅญไธญใซใจใฉใผใงใใๅๅบฆ่ฉฆใใใ็ฎก็่
ใซ้ฃ็ตกใใฆใใ ใใใ" + +#: ../../../bookmarks.php:209 ../../../templates/toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "ใใใฏใใผใฏ่ฟฝๅ " + +#: ../../../bookmarks.php:213 +msgid "Add Bookmark" +msgstr "ใใใฏใใผใฏใ่ฟฝๅ ใใ" + +#: ../../../bookmarks.php:216 +msgid "You must be logged in before you can add bookmarks." +msgstr "ใใใฏใใผใฏใ่ฟฝๅ ใใๅใซใญใฐใคใณใใชใใใฐใชใใพใใใ" + +#: ../../../bookmarks.php:270 ../../../bookmarks.php:271 +msgid "My Bookmarks" +msgstr "่ชๅใฎใใใฏใใผใฏ" + +#: ../../../edit.php:44 ../../../edit.php:45 +msgid "Edit Bookmark" +msgstr "ใใใฏใใผใฏใ็ทจ้ใใ" + +#: ../../../edit.php:51 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "IDใ%sใใจใใใฏใใผใฏใฏ่ฆใคใใใพใใ" + +#: ../../../edit.php:57 +msgid "You are not allowed to edit this bookmark" +msgstr "ใใฎใใใฏใใผใฏใฎ็ทจ้ใฏ่จฑๅฏใใใฆใใพใใ" + +#: ../../../edit.php:77 +msgid "Error while saving your bookmark" +msgstr "ใใใฏใใผใฏใฎไฟๅญไธญใซใจใฉใผ" + +#: ../../../edit.php:113 ../../../templates/editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "ๅคๆดใไฟๅญใใ" + +#: ../../../functions.inc.php:144 +msgid "message_die() was called multiple times." +msgstr "message_die() ใฏ่คๆฐๅๅผใฐใใพใใใ" + +#: ../../../functions.inc.php:156 +msgid "SQL Error" +msgstr "SQL ใจใฉใผ" + +#: ../../../functions.inc.php:162 +msgid "Line" +msgstr "่ก" + +#: ../../../functions.inc.php:162 ../../../templates/importDelicious.tpl.php:8 +#: ../../../templates/importNetscape.tpl.php:9 +#: ../../../templates/importStructure.tpl.php:10 +msgid "File" +msgstr "ใใกใคใซ" + +#: ../../../functions.inc.php:168 +msgid "Information" +msgstr "ๆ
ๅ ฑ" + +#: ../../../functions.inc.php:173 +msgid "Critical Information" +msgstr "้่ฆใชๆ
ๅ ฑ" + +#: ../../../functions.inc.php:178 +msgid "An error occured" +msgstr "ใจใฉใผใ็บ็ใใพใใ" + +#: ../../../functions.inc.php:181 +msgid "General Error" +msgstr "ไธ่ฌใจใฉใผ" + +#: ../../../functions.inc.php:189 +msgid "An critical error occured" +msgstr "้ๅคงใชใจใฉใผใ็บ็ใใพใใ" + +#: ../../../functions.inc.php:192 +msgid "Critical Error" +msgstr "้ๅคงใชใจใฉใผ" + +#: ../../../functions.inc.php:201 +msgid "DEBUG MODE" +msgstr "ใใใใฐใขใผใ" + +#: ../../../history.php:61 +msgid "History" +msgstr "ๅฑฅๆญด" + +#: ../../../history.php:62 +#, php-format +msgid "History for %s" +msgstr "%s ใฎๅฑฅๆญด" + +#: ../../../history.php:84 +msgid "Address was not found" +msgstr "ใขใใฌในใฏ่ฆใคใใใพใใ" + +#: ../../../import.php:47 +msgid "Could not open XML input" +msgstr "ๅ
ฅๅใฎ XML ใ้ใใพใใ" + +#: ../../../import.php:51 +#, php-format +msgid "XML error: %s at line %d" +msgstr "XML ใจใฉใผ: %s ใฎ %d ่ก็ฎ" + +#: ../../../import.php:60 +msgid "Import Bookmarks from del.icio.us" +msgstr "del.icio.us ใใใใใฏใใผใฏใใคใณใใผใใใ" + +#: ../../../import.php:93 +msgid "You have already submitted this bookmark." +msgstr "ใใฎใใใฏใใผใฏใฏๆขใซ้ไฟกใใพใใใ" + +#: ../../../import.php:104 +msgid "Bookmark imported." +msgstr "ใใใฏใใผใฏใใคใณใใผใใใพใใใ" + +#: ../../../importNetscape.php:95 +msgid "You have already submitted some of these bookmarks." +msgstr "ใใใฏใใผใฏใฎใใกใใใคใใฏๆขใซ็ป้ฒๆธใฟใงใใ" + +#: ../../../importNetscape.php:115 +msgid "Bookmarks found: " +msgstr "ใใใฏใใผใฏ็บ่ฆ: " + +#: ../../../importNetscape.php:116 +msgid "Bookmarks imported: " +msgstr "ใใใฏใใผใฏใใคใณใใผใใใพใใ: " + +#: ../../../importNetscape.php:117 ../../../importNetscape.php:122 +msgid "Import Bookmarks from Browser File" +msgstr "ใใฉใฆใถใผใฎใใกใคใซใใใใใฏใใผใฏใใคใณใใผใใใ" + +#: ../../../importStructure.php:61 +msgid "Bad indentation" +msgstr "" + +#: ../../../importStructure.php:67 +msgid "New links between tags: " +msgstr "" + +#: ../../../importStructure.php:72 +msgid "Import Structure" +msgstr "ๆง้ ใฎใคใณใใผใ" + +#: ../../../index.php:38 +msgid "You have now logged out" +msgstr "ใญใฐใขใฆใใใพใใ" + +#: ../../../index.php:45 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: ๆ่ฟใฎใใใฏใใผใฏ" + +#: ../../../index.php:78 +msgid "Store, share and tag your favourite links" +msgstr "ใๆฐใซๅ
ฅใใฎใชใณใฏใฎไฟๅญใๅ
ฑๆใใฟใฐไปใใใใพใใ" + +#: ../../../index.php:79 +msgid "All Bookmarks" +msgstr "ใในใฆใฎใใใฏใใผใฏ" + +#: ../../../jsScuttle.php:22 ../../../templates/admin.tpl.php:19 +#: ../../../templates/tag2tagadd.tpl.php:21 +#: ../../../templates/tag2tagdelete.tpl.php:13 +#: ../../../templates/tag2tagedit.tpl.php:14 +#: ../../../templates/tag2tagedit.tpl.php:35 +#: ../../../templates/tagdelete.tpl.php:6 +msgid "Are you sure?" +msgstr "ๆฌๅฝใซใใพใใ?" + +#: ../../../jsScuttle.php:22 ../../../templates/tag2tagdelete.tpl.php:15 +#: ../../../templates/tag2tagedit.tpl.php:16 +#: ../../../templates/tagdelete.tpl.php:8 +msgid "Yes" +msgstr "ใฏใ" + +#: ../../../jsScuttle.php:22 ../../../templates/tag2tagdelete.tpl.php:16 +#: ../../../templates/tag2tagedit.tpl.php:17 +#: ../../../templates/tagdelete.tpl.php:9 +msgid "No" +msgstr "ใใใ" + +#: ../../../jsScuttle.php:69 +msgid "Available" +msgstr "ๅฉ็จใงใใพใ" + +#: ../../../jsScuttle.php:72 +msgid "Not Available" +msgstr "ๅฉ็จใงใใพใใ" + +#: ../../../login.php:48 +msgid "The details you have entered are incorrect. Please try again." +msgstr "ๅ
ฅๅใใ่ฉณ็ดฐใฏๆญฃใใใใใพใใใๅๅบฆ่ฉฆใใฆใใ ใใใ" + +#: ../../../login.php:57 ../../../templates/login.tpl.php:26 +#: ../../../templates/toolbar.inc.php:29 +msgid "Log In" +msgstr "ใญใฐใคใณ" + +#: ../../../password.php:36 +msgid "You must enter your username." +msgstr "ใฆใผใถใผๅใๅ
ฅๅใใฆใใ ใใใ" + +#: ../../../password.php:40 +msgid "" +"You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "" +"<abbr title=\"้ปๅญใกใผใซ\">้ปๅญใกใผใซ</abbr>ใขใใฌในใๅ
ฅๅใใชใใใฐใชใใพใ" +"ใใ" + +#: ../../../password.php:48 +msgid "No matches found for that username." +msgstr "ไธ่ดใใใฆใผใถใผๅใ่ฆใคใใใพใใใ" + +#: ../../../password.php:51 +msgid "" +"No matches found for that combination of username and <abbr title=" +"\"electronic mail\">e-mail</abbr> address." +msgstr "" +"ไธ่ดใใ<abbr title=\"้ปๅญใกใผใซ\">้ปๅญใกใผใซ</abbr>ใขใใฌในใจใฆใผใถใผๅใฎ็ต" +"ใฟๅใใใ่ฆใคใใใพใใใงใใใ" + +#: ../../../password.php:59 +msgid "" +"There was an error while generating your new password. Please try again." +msgstr "ๆฐ่ฆใในใฏใผใใฎ็ๆไธญใซใจใฉใผใงใใๅๅบฆ่ฉฆใใฆใใ ใใใ" + +#: ../../../password.php:63 +msgid "Your new password is:" +msgstr "ๆฐใใใในใฏใผใ:" + +#: ../../../password.php:63 +msgid "" +"To keep your bookmarks secure, you should change this password in your " +"profile the next time you log in." +msgstr "" +"ใใใฏใใผใฏใฎๅฎๅ
จๆงใ็ถญๆใใใใใซใๆฌกๅใฎใญใฐใคใณๆใซใใญใใฃใผใซใฎใใฎใ" +"ในใฏใผใใๅคใใในใใงใใ" + +#: ../../../password.php:66 +#, php-format +msgid "%s Account Information" +msgstr "%sใขใซใฆใณใๆ
ๅ ฑ" + +#: ../../../password.php:68 +#, php-format +msgid "New password generated and sent to %s" +msgstr "ๆฐ่ฆใขใซใฆใณใใ็ๆใใ%s ใซ้ไฟกใใพใใ" + +#: ../../../password.php:75 +msgid "Forgotten Password" +msgstr "ใในใฏใผใๅฟใ" + +#: ../../../populartags.php:46 ../../../templates/dynamictags.inc.php:128 +#: ../../../templates/sidebar.block.common.php:9 +#: ../../../templates/sidebar.block.menu.php:74 +#: ../../../templates/sidebar.block.popular.php:23 +#: ../../../templates/sidebar.block.recent.php:34 +#: ../../../templates/toolbar.inc.php:27 +msgid "Popular Tags" +msgstr "ไบบๆฐใฎใฟใฐ" + +#: ../../../profile.php:59 ../../../watchlist.php:119 +msgid "Username was not specified" +msgstr "ใฆใผใถใผๅใๆๅฎใใใฆใใพใใ" + +#: ../../../profile.php:65 +msgid "My Profile" +msgstr "่ชๅใฎใใญใใฃใผใซ" + +#: ../../../profile.php:67 ../../../templates/toolbar.inc.php:12 +msgid "Profile" +msgstr "ใใญใใฃใผใซ" + +#: ../../../profile.php:89 +msgid "Invalid Token" +msgstr "" + +#: ../../../profile.php:94 +msgid "Password and confirmation do not match." +msgstr "ใในใฏใผใใจ็ขบ่ชใในใฏใผใใไธ่ดใใพใใใ" + +#: ../../../profile.php:98 +msgid "Password must be at least 6 characters long." +msgstr "ใในใฏใผใใฏๅฐใชใใจใ 6 ๆๅญไปฅไธใงใใ" + +#: ../../../profile.php:102 +msgid "E-mail address is not valid." +msgstr "้ปๅญใกใผใซใขใใฌในใๆๅนใงใฏใใใพใใใ" + +#: ../../../profile.php:106 +msgid "An error occurred while saving your changes." +msgstr "ๅคๆดใฎไฟๅญไธญใซใจใฉใผใงใใ" + +#: ../../../profile.php:108 +msgid "Changes saved." +msgstr "ๅคๆดใไฟๅญใใพใใใ" + +#: ../../../register.php:40 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "" +"ใฆใผใถใผๅใใในใฏใผใใๅๅใจ้ปๅญใกใผใซใขใใฌในใๅ
ฅๅใใชใใใฐใชใใพใใใ" + +#: ../../../register.php:44 +msgid "This username has been reserved, please make another choice." +msgstr "ใใฎใฆใผใถใผๅใฏไบ็ดใใใฆใใพใใใปใใฎๅๅใ้ธใใงใใ ใใใ" + +#: ../../../register.php:48 +msgid "This username already exists, please make another choice." +msgstr "ใใฎใฆใผใถใผๅใฏๆขใซๅญๅจใใพใใใปใใฎๅๅใ้ธใใงใใ ใใใ" + +#: ../../../register.php:52 +msgid "" +"This username is not valid (too short, too long, forbidden characters...), " +"please make another choice." +msgstr "" +"ใใฎใฆใผใถใผๅใฏๆญฃใใใใใพใใ (็ญใใใใ้ทใใใใ็ฆๆญขๆๅญ...)ใไปใ้ธใ" +"ใงใใ ใใใ" + +#: ../../../register.php:56 +msgid "E-mail address is not valid. Please try again." +msgstr "้ปๅญใกใผใซใขใใฌในใฏๆๅนใงใฏใใใพใใใๅๅบฆ่ฉฆใใฆใใ ใใใ" + +#: ../../../register.php:60 +msgid "Antispam answer is not valid. Please try again." +msgstr "ในใใ ๅฏพ็ญใฎๅ็ญใๆญฃใใใใใพใใใใใไธๅบฆ่ฉฆใใฆใใ ใใใ" + +#: ../../../register.php:69 +msgid "You have successfully registered. Enjoy!" +msgstr "็ป้ฒใซๆๅใใพใใใๆฅฝใใใงใใ ใใ!" + +#: ../../../register.php:71 +msgid "Registration failed. Please try again." +msgstr "็ป้ฒใซๅคฑๆใใพใใใๅๅบฆ่ฉฆใใฆใใ ใใใ" + +#: ../../../register.php:77 ../../../templates/register.tpl.php:41 +#: ../../../templates/toolbar.inc.php:30 +msgid "Register" +msgstr "็ป้ฒใใ" + +#: ../../../rss.php:84 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "ๆ่ฟใฎใใใฏใใผใฏใ %s ใซๆ็จฟใใพใใ" + +#: ../../../search.inc.php:23 +msgid "Search..." +msgstr "ๆค็ดข..." + +#: ../../../search.inc.php:24 +msgid "in" +msgstr "" + +#: ../../../search.inc.php:30 +msgid "this user's bookmarks" +msgstr "ใใฎใฆใผใถใผใฎใใใฏใใผใฏ" + +#: ../../../search.inc.php:35 +msgid "my bookmarks" +msgstr "่ชๅใฎใใใฏใใผใฏ" + +#: ../../../search.inc.php:36 +msgid "my watchlist" +msgstr "่ชๅใฎๆณจ็ฎไธ่ฆง" + +#: ../../../search.inc.php:40 +msgid "all bookmarks" +msgstr "ใในใฆใฎใใใฏใใผใฏ" + +#: ../../../search.inc.php:50 +msgid "Search" +msgstr "ๆค็ดข" + +#: ../../../search.php:73 ../../../search.php:123 +msgid "Search Bookmarks" +msgstr "ใใใฏใใผใฏใๆค็ดขใใ" + +#: ../../../search.php:79 +msgid "Search Results" +msgstr "ๆค็ดข็ตๆ" + +#: ../../../search.php:114 +msgid "Unsatisfied? You can also try our " +msgstr "" + +#: ../../../tag2tagadd.php:50 +msgid "Tag link created" +msgstr "" + +#: ../../../tag2tagadd.php:53 +msgid "Failed to create the link" +msgstr "ใชใณใฏใฎๅ้คใซๅคฑๆใใพใใ" + +#: ../../../tag2tagadd.php:65 +msgid "Add Tag Link" +msgstr "" + +#: ../../../tag2tagdelete.php:66 +msgid "Tag link deleted" +msgstr "" + +#: ../../../tag2tagdelete.php:69 +msgid "Failed to delete the link" +msgstr "ใชใณใฏใฎๅ้คใซๅคฑๆใใพใใ" + +#: ../../../tag2tagdelete.php:81 +msgid "Delete Link Between Tags" +msgstr "" + +#: ../../../tag2tagedit.php:55 +msgid "Edit Link Between Tags" +msgstr "" + +#: ../../../tagcommondescriptionedit.php:55 +msgid "Tag common description updated" +msgstr "" + +#: ../../../tagcommondescriptionedit.php:58 +msgid "Failed to update the tag common description" +msgstr "" + +#: ../../../tagcommondescriptionedit.php:64 +#: ../../../templates/sidebar.block.tagactions.php:26 +msgid "Edit Tag Common Description" +msgstr "" + +#: ../../../tagdelete.php:43 +msgid "Tag deleted" +msgstr "ใฟใฐใๅ้คใใพใใ" + +#: ../../../tagdelete.php:46 +msgid "Failed to delete the tag" +msgstr "ใฟใฐใฎๅ้คใซๅคฑๆใใพใใ" + +#: ../../../tagdelete.php:54 +#: ../../../templates/sidebar.block.tagactions.php:22 +msgid "Delete Tag" +msgstr "ใฟใฐใๅ้คใใ" + +#: ../../../tagedit.php:52 +msgid "Tag description updated" +msgstr "ใฟใฐใฎ่ชฌๆใๆดๆฐใใพใใ" + +#: ../../../tagedit.php:55 +msgid "Failed to update the tag description" +msgstr "ใฟใฐใฎ่ชฌๆใฎๆดๆฐใซๅคฑๆใใพใใ" + +#: ../../../tagedit.php:61 ../../../templates/sidebar.block.tagactions.php:24 +msgid "Edit Tag Description" +msgstr "ใฟใฐใฎ่ชฌๆใ็ทจ้ใใ" + +#: ../../../tagrename.php:63 +msgid "Tag renamed" +msgstr "ใฟใฐๅใๅคๆดใใพใใ" + +#: ../../../tagrename.php:66 +msgid "Failed to rename the tag" +msgstr "ใฟใฐๅใฎๅคๆดใซๅคฑๆใใพใใ" + +#: ../../../tagrename.php:72 ../../../templates/sidebar.block.tagactions.php:9 +msgid "Rename Tag" +msgid_plural "Rename Tags" +msgstr[0] "ใฟใฐใๅคๆดใใ" + +#: ../../../tags.php:45 ../../../tags.php:67 +#: ../../../templates/editbookmark.tpl.php:69 +#: ../../../templates/toolbar.inc.php:10 +msgid "Tags" +msgstr "ใฟใฐ" + +#: ../../../users.php:35 +msgid "Users" +msgstr "ใฆใผใถใผ" + +#: ../../../watch.php:54 +msgid "User removed from your watchlist" +msgstr "ๆณจ็ฎไธ่ฆงใใใฆใผใถใผใๅ้คใใพใใ" + +#: ../../../watch.php:56 +msgid "User added to your watchlist" +msgstr "ๆณจ็ฎไธ่ฆงใซใฆใผใถใผใ่ฟฝๅ ใใพใใ" + +#: ../../../watchlist.php:104 +msgid "My Watchlist" +msgstr "่ชๅใฎๆณจ็ฎไธ่ฆง" + +#: ../../../watchlist.php:106 ../../../templates/toolbar.inc.php:11 +msgid "Watchlist" +msgstr "ๆณจ็ฎไธ่ฆง" + +#: ../../../templates/about.tpl.php:6 +msgid "" +"<strong>Store</strong> all your favourite links in one place, accessible " +"from anywhere." +msgstr "" +"ใใใชใๅ ดๆใใใใขใฏใปในๅฏ่ฝใช 1 ใคใฎๅ ดๆใซใๅฅฝใใชใชใณใฏใใในใฆ<strong>ไฟ" +"็ฎก</strong>ใใพใใ" + +#: ../../../templates/about.tpl.php:7 +msgid "" +"<strong>Share</strong> your bookmarks with everyone, with friends on your " +"watchlist or just keep them private." +msgstr "" +"ใใใฏใใผใฏใใใฉใคใใผใใงใๆณจ็ฎไธ่ฆงใงๅ้ใจใใในใฆใฎไบบใจ<strong>ๅ
ฑๆ</" +"strong>ใใพใใ" + +#: ../../../templates/about.tpl.php:8 +msgid "" +"<strong>Tag</strong> your bookmarks with as many labels as you want, instead " +"of wrestling with folders." +msgstr "" +"ใใฉใซใใผใจๆ ผ้ใใไปฃใใใซใๆใใชใใใใคใใฎใฉใใซใจใจใใฆใใใฏใใผใฏใฎ" +"<strong>ใฟใฐ</strong>ใไปใใฆใใ ใใใ" + +#: ../../../templates/about.tpl.php:9 +msgid "Register now" +msgstr "ไปใใ็ป้ฒใใ" + +#: ../../../templates/about.tpl.php:9 +#, php-format +msgid " to start using %s!" +msgstr "ใง %s ใฎๅฉ็จใๅงใใใใพใ!" + +#: ../../../templates/about.tpl.php:12 +msgid "Geek Stuff" +msgstr "ใฎใผใฏในใฟใใ" + +#: ../../../templates/about.tpl.php:14 +msgid "is licensed under the " +msgstr "ใฏๆฌกใฎใฉใคใปใณในใงๅฉ็จใงใใพใ: " + +#: ../../../templates/about.tpl.php:14 +msgid "you can freely host it on your own web server." +msgstr "ใใชใใฎใฆใงใใตใผใใผใง่ช็ฑใซ้ๅถใงใใพใใ" + +#: ../../../templates/about.tpl.php:15 +#, php-format +msgid "" +"%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us " +"<abbr title=\"Application Programming Interface\">API</abbr></a>. 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 ใฏใปใจใใฉใฎ <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr " +"title=\"Application Programming Interface\">API</abbr></a> ใใตใใผใใใพใใ" +"ใใฎใทในใใ ใฎใใใซไฝๆใใใ้ฉๅใชใใผใซใฎใปใผๅ
จใฆใฏใไปฃใใใซAAAAใงๅไฝใ" +"ใใใใซไฟฎๆญฃใใใใจใใงใใพใใใใชใใ API ใขใใฌในใๅคๆดใใใใจใใงใใชใ" +"ใใผใซใ่ฆใคใใใใ่ฃฝไฝ่
ใซใใฎ่จญๅฎใๅ ใใใใ้ ผใใงใใ ใใใใฉใใชใใใ" +"ใใใพใใใใๅฝผใใฏๅฏพๅฟใใใใใใใพใใใ" + +#: ../../../templates/about.tpl.php:24 +msgid "Tips" +msgstr "" + +#: ../../../templates/about.tpl.php:26 +msgid "Add search plugin into your browser:" +msgstr "" + +#: ../../../templates/about.tpl.php:27 +msgid "" +"The secret tag \"system:unfiled\" allows you to find bookmarks without tags." +msgstr "" + +#: ../../../templates/about.tpl.php:28 +msgid "" +"The secret tag \"system:imported\" allows you to find imported bookmarks." +msgstr "" + +#: ../../../templates/admin.tpl.php:5 +msgid "Users management" +msgstr "ใฆใผใถใผ็ฎก็" + +#: ../../../templates/admin.tpl.php:14 +msgid "Public/Shared/Private" +msgstr "ๅ
ฌ้/ๅ
ฑๆ/ใใฉใคใใผใ" + +#: ../../../templates/admin.tpl.php:14 ../../../templates/bookmarks.tpl.php:93 +msgid "bookmark(s)" +msgstr "ใใใฏใใผใฏ" + +#: ../../../templates/admin.tpl.php:19 +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Delete" +msgstr "ๅ้คใใ" + +#: ../../../templates/admin.tpl.php:27 +msgid "Other actions" +msgstr "ใใฎไปใฎๆไฝ" + +#: ../../../templates/admin.tpl.php:29 +msgid "Check all URLs (May take some time)" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:16 +msgid "" +"Collaborative description: these fields can be viewed and modified by every " +"users" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:18 +#: ../../../templates/bookmarks.tpl.php:123 +#: ../../../templates/editbookmark.tpl.php:38 +msgid "Title" +msgstr "้กๅ" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:23 +#: ../../../templates/editbookmark.tpl.php:44 +#: ../../../templates/editprofile.tpl.php:47 +#: ../../../templates/profile.tpl.php:33 +#: ../../../templates/tagcommondescriptionedit.tpl.php:13 +#: ../../../templates/tagedit.tpl.php:12 +msgid "Description" +msgstr "่ชฌๆ" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:31 +#: ../../../templates/tagcommondescriptionedit.tpl.php:21 +msgid "Last modification:" +msgstr "ๆ็ตๆดๆฐ:" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:42 +#: ../../../templates/tagcommondescriptionedit.tpl.php:32 +#: ../../../templates/tagedit.tpl.php:18 +msgid "Update" +msgstr "ๆดๆฐ" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:43 +#: ../../../templates/editbookmark.tpl.php:98 +#: ../../../templates/tag2tagadd.tpl.php:24 +#: ../../../templates/tag2tagedit.tpl.php:38 +#: ../../../templates/tagcommondescriptionedit.tpl.php:33 +#: ../../../templates/tagedit.tpl.php:19 +#: ../../../templates/tagrename.tpl.php:25 +msgid "Cancel" +msgstr "ๅใๆถใ" + +#: ../../../templates/bookmarks.tpl.php:26 +msgid "Bookmarks on this page are managed by an admin user." +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:51 +#: ../../../templates/bookmarks.tpl.php:52 +msgid "Edit the common description of this tag" +msgstr "ใใฎใฟใฐใฎๅ
ฑ้่ชฌๆใ็ทจ้ใใ" + +#: ../../../templates/bookmarks.tpl.php:55 +#: ../../../templates/bookmarks.tpl.php:56 +msgid "Edit the common description of this bookmark" +msgstr "ใใฎใใใฏใใผใฏใฎๅ
ฑ้่ชฌๆใ็ทจ้ใใ" + +#: ../../../templates/bookmarks.tpl.php:76 +#: ../../../templates/bookmarks.tpl.php:77 +msgid "Edit your personal description of this tag" +msgstr "ใใฎใฟใฐใฎๅไบบ็ใซ่ชฌๆใ็ทจ้ใใ" + +#: ../../../templates/bookmarks.tpl.php:93 ../../../templates/tags.tpl.php:10 +#: ../../../templates/users.tpl.php:8 +msgid "Sort by:" +msgstr "ไธฆในๆฟใใฎๅบๆบ:" + +#: ../../../templates/bookmarks.tpl.php:122 +msgid "Date" +msgstr "ๆฅไป" + +#: ../../../templates/bookmarks.tpl.php:129 +msgid "Bookmarks from other users for this tag" +msgstr "ใใฎใฟใฐใฎใใฎไปใฎใฆใผใถใผใฎใใใฏใใผใฏ" + +#: ../../../templates/bookmarks.tpl.php:134 +msgid "Only your bookmarks for this tag" +msgstr "ใใฎใฟใฐใฏใใชใใฎใใใฏใใผใฏใฎใฟใงใ" + +#: ../../../templates/bookmarks.tpl.php:157 +#: ../../../templates/bookmarks.tpl.php:163 +msgid "First" +msgstr "ๆๅใธ" + +#: ../../../templates/bookmarks.tpl.php:158 +#: ../../../templates/bookmarks.tpl.php:164 +msgid "Previous" +msgstr "ๅใธ" + +#: ../../../templates/bookmarks.tpl.php:171 +#: ../../../templates/bookmarks.tpl.php:174 +msgid "Next" +msgstr "ๆฌกใธ" + +#: ../../../templates/bookmarks.tpl.php:172 +#: ../../../templates/bookmarks.tpl.php:175 +msgid "Last" +msgstr "ๆๅพใธ" + +#: ../../../templates/bookmarks.tpl.php:185 +#, php-format +msgid "Page %d of %d" +msgstr "ใใผใธ (%d/%d)" + +#: ../../../templates/bookmarks.tpl.php:225 +msgid "Tags:" +msgstr "ใฟใฐ:" + +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Edit" +msgstr "็ทจ้ใใ" + +#: ../../../templates/bookmarks.tpl.php:235 +msgid "Last update" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:238 +msgid "by" +msgstr "็ป้ฒ่
:" + +#: ../../../templates/bookmarks.tpl.php:240 +msgid "you" +msgstr "ใใชใ" + +#: ../../../templates/bookmarks.tpl.php:254 +#, php-format +msgid " and %s1 other%s" +msgstr "ใจใใฎไป%sใฒใจใ%s" + +#: ../../../templates/bookmarks.tpl.php:257 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr "ใจใใฎไป %2$s%1$s ไบบ%3$s" + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy this bookmark to YOUR bookmarks." +msgstr "ใใชใใฎใใใฏใใผใฏใซใใฎใใใฏใใผใฏใใณใใผใใพใ" + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy" +msgstr "ใณใใผใใ" + +#: ../../../templates/bookmarks.tpl.php:284 +msgid "This bookmark is certified by an admin user." +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:323 +msgid "Private Note on this bookmark" +msgstr "ใใฎใใใฏใใผใฏใฎใใฉใคใใผใใใผใ" + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Come back to the top of this page." +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Top of the page" +msgstr "ใใผใธใฎๅ
้ ญ" + +#: ../../../templates/bookmarks.tpl.php:340 +msgid "No bookmarks available" +msgstr "ใใใฏใใผใฏใซ็ป้ฒใใใฆใใพใใ" + +#: ../../../templates/bottom.inc.php:7 +msgid "Propulsed by " +msgstr "" + +#: ../../../templates/dynamictags.inc.php:47 +#: ../../../templates/sidebar.block.common.php:19 +#: ../../../templates/sidebar.block.popular.php:34 +#: ../../../templates/sidebar.block.recent.php:29 +#: ../../../templates/tags.tpl.php:19 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "ใใใฏใใผใฏ" + +#: ../../../templates/dynamictags.inc.php:131 +msgid "Popular Tags From All Users" +msgstr "ใในใฆใฎใฆใผใถใผใงไบบๆฐใฎใฟใฐ" + +#: ../../../templates/editbookmark.tpl.php:33 +msgid "Address" +msgstr "ใขใใฌใน" + +#: ../../../templates/editbookmark.tpl.php:35 +#: ../../../templates/editbookmark.tpl.php:40 +#: ../../../templates/editprofile.tpl.php:31 +#: ../../../templates/tagrename.tpl.php:14 +#: ../../../templates/tagrename.tpl.php:19 +msgid "Required" +msgstr "ๅฟ
้ " + +#: ../../../templates/editbookmark.tpl.php:45 +msgid "Add Note" +msgstr "ใใผใใฎ่ฟฝๅ " + +#: ../../../templates/editbookmark.tpl.php:48 +msgid "" +"You can use anchors to delimite attributes. for example: [publisher]blah[/" +"publisher] " +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:51 +msgid "Suggested anchors: " +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:63 +msgid "Private Note" +msgstr "ใใฉใคใใผใใใผใ" + +#: ../../../templates/editbookmark.tpl.php:65 +msgid "Just visible by you and your contacts." +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:73 +msgid "Comma-separated" +msgstr "ใซใณใๅบๅใ" + +#: ../../../templates/editbookmark.tpl.php:77 +#: ../../../templates/tag2tagadd.tpl.php:9 +msgid "" +"Note: use \">\" to include one tag in another. e.g.: europe>france>paris" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:81 +#: ../../../templates/tag2tagadd.tpl.php:8 +msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:84 +#: ../../../templates/importDelicious.tpl.php:15 +#: ../../../templates/importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "ใใฉใคใใทใผ" + +#: ../../../templates/editbookmark.tpl.php:87 +#: ../../../templates/importDelicious.tpl.php:18 +#: ../../../templates/importNetscape.tpl.php:19 +msgid "Public" +msgstr "ๅ
ฌ้" + +#: ../../../templates/editbookmark.tpl.php:88 +msgid "Shared with Watch List" +msgstr "ๆณจ็ฎใชในใใงๅ
ฑๆ" + +#: ../../../templates/editbookmark.tpl.php:89 +#: ../../../templates/importDelicious.tpl.php:20 +#: ../../../templates/importNetscape.tpl.php:21 +msgid "Private" +msgstr "ใใฉใคใใผใ" + +#: ../../../templates/editbookmark.tpl.php:102 +msgid "Delete Bookmark" +msgstr "ใใใฏใใผใฏใๅ้คใใ" + +#: ../../../templates/editbookmark.tpl.php:107 +msgid "edit common description" +msgstr "ๅ
ฑ้่ชฌๆใฎ็ทจ้" + +#: ../../../templates/editbookmark.tpl.php:134 +msgid "Bookmarklet" +msgstr "ใใใฏใใผใฏใฌใใ" + +#: ../../../templates/editbookmark.tpl.php:140 +#, 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 ใซใใผใธใ่ฟฝๅ ใใใๅ ดๅใๅธธใซใใใใฏใชใใฏใใฆใใ ใใใ" + +#: ../../../templates/editbookmark.tpl.php:144 +#, 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 ใซใใผใธใ่ฟฝๅ ใใใๅ ดๅใๅธธใซใใใใฏใชใใฏใใฆใใ ใใใ" + +#: ../../../templates/editbookmark.tpl.php:157 +#: ../../../templates/editbookmark.tpl.php:162 +#, php-format +msgid "Post to %s" +msgstr "%s ใซๆ็จฟใใ" + +#: ../../../templates/editbookmark.tpl.php:158 +#: ../../../templates/editbookmark.tpl.php:163 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "%s ใซๆ็จฟใใ (ใใใใขใใ)" + +#: ../../../templates/editbookmark.tpl.php:168 +#: ../../../templates/importDelicious.tpl.php:26 +#: ../../../templates/importNetscape.tpl.php:27 +#: ../../../templates/importStructure.tpl.php:16 +msgid "Import" +msgstr "ใคใณใใผใใใ" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Import bookmarks from bookmark file" +msgstr "ใใใฏใใผใฏใใกใคใซใใใใใฏใใผใฏใใคใณใใผใใใ" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet ExplorerใMozilla Firefox ใจ Netscape" + +#: ../../../templates/editbookmark.tpl.php:171 +msgid "Import bookmarks from del.icio.us" +msgstr "del.icio.us ใใใใใฏใใผใฏใใคใณใใผใใใ" + +#: ../../../templates/editprofile.tpl.php:10 +msgid "Account Details" +msgstr "ใขใซใฆใณใใฎ่ฉณ็ดฐ" + +#: ../../../templates/editprofile.tpl.php:14 +#: ../../../templates/login.tpl.php:15 ../../../templates/password.tpl.php:10 +#: ../../../templates/profile.tpl.php:6 ../../../templates/register.tpl.php:16 +msgid "Username" +msgstr "ใฆใผใถใผๅ" + +#: ../../../templates/editprofile.tpl.php:19 +msgid "New Password" +msgstr "ๆฐ่ฆใในใฏใผใ" + +#: ../../../templates/editprofile.tpl.php:24 +msgid "Confirm Password" +msgstr "ใในใฏใผใ(็ขบ่ช)" + +#: ../../../templates/editprofile.tpl.php:29 +#: ../../../templates/password.tpl.php:14 +#: ../../../templates/register.tpl.php:26 +msgid "E-mail" +msgstr "้ปๅญใกใผใซ" + +#: ../../../templates/editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "ๅไบบใฎ่ฉณ็ดฐ" + +#: ../../../templates/editprofile.tpl.php:39 +#: ../../../templates/profile.tpl.php:17 +msgid "Name" +msgstr "ๅๅ" + +#: ../../../templates/editprofile.tpl.php:43 +#: ../../../templates/profile.tpl.php:23 +msgid "Homepage" +msgstr "ใใผใ ใใผใธ" + +#: ../../../templates/editprofile.tpl.php:55 +#: ../../../templates/sidebar.block.tagactions.php:17 +#: ../../../templates/sidebar.block.watchstatus.php:18 +msgid "Actions" +msgstr "ๆไฝ" + +#: ../../../templates/editprofile.tpl.php:58 +msgid "Export bookmarks" +msgstr "ใใใฏใใผใฏใใจใฏในใใผใใใ" + +#: ../../../templates/editprofile.tpl.php:60 +msgid "HTML file (for browsers)" +msgstr "HTML ใใกใคใซ (ใใฉใฆใถใผ็จ)" + +#: ../../../templates/editprofile.tpl.php:61 +msgid "XML file (like del.icio.us)" +msgstr "XML ใใกใคใซ (del.icio.us ใฎใใใช)" + +#: ../../../templates/editprofile.tpl.php:62 +msgid "CSV file (for spreadsheet tools)" +msgstr "CSV ใใกใคใซ (ในใใฌใใใทใผใ ใใผใซ็จ)" + +#: ../../../templates/error.404.tpl.php:5 +msgid "Not Found" +msgstr "่ฆใคใใใพใใ" + +#: ../../../templates/error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "่ฆๆฑใใใ URL ใฏใใฎใตใผใใผใง่ฆใคใใใพใใ" + +#: ../../../templates/error.500.tpl.php:5 +msgid "General server error" +msgstr "ใตใผใใผๅ
จไฝใฎใจใฉใผ" + +#: ../../../templates/error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "่ฆๆฑใใใ URL ใฏๅฆ็ใงใใพใใ" + +#: ../../../templates/importDelicious.tpl.php:19 +#: ../../../templates/importNetscape.tpl.php:20 +msgid "Shared with Watchlist" +msgstr "ๆณจ็ฎใชในใใงๅ
ฑๆ" + +#: ../../../templates/importDelicious.tpl.php:31 +#: ../../../templates/importNetscape.tpl.php:32 +#: ../../../templates/importStructure.tpl.php:21 +msgid "Instructions" +msgstr "ๆ้ " + +#: ../../../templates/importDelicious.tpl.php:33 +msgid "" +"Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at " +"del.icio.us</a>" +msgstr "" +"<a href=\"http://del.icio.us/api/posts/all\">del.icio.us ใฎใจใฏในใใผใใใผใธ" +"</a> ใซใญใฐใคใณใใพใใ" + +#: ../../../templates/importDelicious.tpl.php:34 +msgid "" +"Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> " +"file to your computer" +msgstr "" +"็ตๆใฎ <abbr title=\"Extensible Markup Language\">XML</abbr> ใใกใคใซใใณใณ" +"ใใฅใผใฟใผใซไฟๅญใใพใใ" + +#: ../../../templates/importDelicious.tpl.php:35 +msgid "" +"Click <kbd>Browse...</kbd> to find this file on your computer. The maximum " +"size the file can be is 1MB" +msgstr "" +"ใณใณใใฅใผใฟใผไธใฎใใฎใใกใคใซใ่ฆใคใใใใใซ <kbd>ๅ็
ง...</kbd> ใใฏใชใใฏ" +"ใใพใใใใกใคใซใฎๆๅคงใตใคใบใฏ 1MB ใงใใ" + +#: ../../../templates/importDelicious.tpl.php:36 +#: ../../../templates/importNetscape.tpl.php:43 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "ใคใณใใผใใใใใใฏใใผใฏใฎๆจๆบใใฉใคใใทใผ่จญๅฎใ้ธๆใใพใใ" + +#: ../../../templates/importDelicious.tpl.php:37 +#: ../../../templates/importNetscape.tpl.php:44 +msgid "" +"Click <kbd>Import</kbd> to start importing the bookmarks; it may take a " +"minute" +msgstr "" +"<kbd>ใคใณใใผใใใ</kbd> ใใฏใชใใฏใใใจใใใฏใใผใฏใฎใคใณใใผใใ้ๅงใใพ" +"ใใใใฐใใใใใใใใใใพใใใ" + +#: ../../../templates/importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "ใใฉใฆใถใผใใใใกใคใซใซใใใฏใใผใฏใใจใฏในใใผใใใ" + +#: ../../../templates/importNetscape.tpl.php:37 +msgid "" +"Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "" +"Internet Explorer: <kbd>ใใกใคใซ > ใคใณใใผใใจใจใฏในใใผใ... > ใๆฐใซ" +"ๅ
ฅใใฎใจใฏในใใผใ" + +#: ../../../templates/importNetscape.tpl.php:38 +msgid "" +"Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > " +"Export..." +msgstr "" +"Mozilla Firefox: <kbd>ใใใฏใใผใฏ > ใใใฏใใผใฏใฎ็ฎก็... > ใใกใคใซ " +"> Export..." + +#: ../../../templates/importNetscape.tpl.php:39 +msgid "" +"Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "" +"Netscape: <kbd>ใใใฏใใผใฏ > ใใใฏใใผใฏใฎ็ฎก็... > ใใผใซ > ใจใฏ" +"ในใใผใ..." + +#: ../../../templates/importNetscape.tpl.php:42 +msgid "" +"Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. " +"The maximum size the file can be is 1MB" +msgstr "" +"ใณใณใใฅใผใฟใผไธใซไฟๅญใใใใใใฏใใผใฏใ่ฆใคใใใใใซ <kbd>ๅ็
ง...</kbd> " +"ใใฏใชใใฏใใพใใใใกใคใซใฎๆๅคงใตใคใบใฏ 1MB ใงใใ" + +#: ../../../templates/importStructure.tpl.php:24 +msgid "Create your structure into a simple text file and following this model:" +msgstr "" + +#: ../../../templates/importStructure.tpl.php:35 +msgid "" +"Then import the file. The tags and their relations will be added to your " +"profile." +msgstr "" + +#: ../../../templates/login.tpl.php:20 ../../../templates/register.tpl.php:21 +msgid "Password" +msgstr "ใในใฏใผใ" + +#: ../../../templates/login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "2 ้ฑ้่ชๅใฎใในใฏใผใใๅใๅใใใพใใ" + +#: ../../../templates/login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "ใในใฏใผใใๅฟใใพใใใ?" + +#: ../../../templates/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 ใฏๆฐใใใในใฏใผใใ็ๆใงใใพใใใขใซใฆใณ" +"ใใฎใฆใผใถใผๅใจ้ปๅญใกใผใซใขใใฌในใไธใฎใใฉใผใ ใซๅ
ฅๅใใฆใใ ใใใใใใใ" +"ใฐใๆฐใใใในใฏใผใใ้ปๅญใกใผใซใง้ไฟกใใใงใใใใ" + +#: ../../../templates/password.tpl.php:19 +msgid "Generate Password" +msgstr "ใในใฏใผใใ็ๆใใ" + +#: ../../../templates/profile.tpl.php:11 +msgid "Email" +msgstr "้ปๅญใกใผใซ" + +#: ../../../templates/profile.tpl.php:28 +msgid "Member Since" +msgstr "ใกใณใใผ็ป้ฒๆฅ" + +#: ../../../templates/profile.tpl.php:40 +#: ../../../templates/sidebar.block.watchlist.php:30 +msgid "Watching" +msgstr "ๆณจ็ฎไธ่ฆง" + +#: ../../../templates/profile.tpl.php:55 +#: ../../../templates/sidebar.block.watchlist.php:52 +msgid "Watched By" +msgstr "ๆณจ็ฎใใฆใใไบบ:" + +#: ../../../templates/profile.tpl.php:68 ../../../templates/toolbar.inc.php:9 +msgid "Bookmarks" +msgstr "ใใใฏใใผใฏ" + +#: ../../../templates/profile.tpl.php:69 +msgid "Go to bookmarks" +msgstr "ใใใฏใใผใฏใซ็งปๅใใ" + +#: ../../../templates/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 ใฎใขใซใฆใณใใ่ช็ฑใซไฝๆใงใใพใใไธ่จใง่ฆๆฑใใใๆ
" +"ๅ ฑใฏใในใฆๅฟ
้ ใงใใ" + +#: ../../../templates/register.tpl.php:18 +msgid "" +" at least 5 characters, alphanumeric (no spaces, no dots or other special " +"ones)" +msgstr "" + +#: ../../../templates/register.tpl.php:28 +msgid " to send you your password if you forget it" +msgstr "" + +#: ../../../templates/register.tpl.php:33 +msgid "Antispam question" +msgstr "ในใใ ๅฏพ็ญใฎ่ณชๅ" + +#: ../../../templates/sidebar.block.linked.php:51 +#, fuzzy +msgid "Linked Tags" +msgstr "้ข้ฃใใใฟใฐ" + +#: ../../../templates/sidebar.block.linked.php:62 +#: ../../../templates/sidebar.block.menu.php:46 +msgid "Add new link" +msgstr "ๆฐ่ฆใชใณใฏใ่ฟฝๅ ใใ" + +#: ../../../templates/sidebar.block.linked.php:63 +#: ../../../templates/sidebar.block.menu.php:47 +msgid "Delete link" +msgstr "ใชใณใฏใๅ้คใใ" + +#: ../../../templates/sidebar.block.menu.php:35 +#, php-format +msgid "Tags included into the tag '%s'" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:35 +msgid "Menu Tags" +msgstr "ใฟใฐใฎใกใใฅใผ" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "See all your tags" +msgstr "ใในใฆใฎใฟใฐใ่ฆใ" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "all your tags" +msgstr "ใใชใใฎใในใฆใฎใฟใฐ" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "See all tags from this user" +msgstr "ใใฎใฆใผใถใผใฎใในใฆใฎใฟใฐใ่ฆใ" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "all tags from this user" +msgstr "ใใฎใฆใผใถใผใฎใปใใฎใฟใฐ" + +#: ../../../templates/sidebar.block.menu.php:74 +msgid "See popular tags" +msgstr "ไบบๆฐใฎใฟใฐใ่ฆใ" + +#: ../../../templates/sidebar.block.menu2.php:25 +msgid "Featured Menu Tags" +msgstr "" + +#: ../../../templates/sidebar.block.menu2.php:29 +msgid "This menu is composed of keywords (tags) organized by admins." +msgstr "" + +#: ../../../templates/sidebar.block.recent.php:18 +msgid "Recent Tags" +msgstr "ๆ่ฟใฎใฟใฐ" + +#: ../../../templates/sidebar.block.related.php:26 +msgid "Related Tags" +msgstr "้ข้ฃใใใฟใฐ" + +#: ../../../templates/sidebar.block.search.php:15 +msgid "Last Searches" +msgstr "ๆๅพใฎๆค็ดข" + +#: ../../../templates/sidebar.block.search.php:24 +msgid "Number of bookmarks for this query" +msgstr "ใใฎๅใๅใใใฎใใใฏใใผใฏๆฐ" + +#: ../../../templates/sidebar.block.tagactions.php:28 +msgid "Create a link to another tag" +msgstr "ๅฅใฎใฟใฐใธใฎใชใณใฏใไฝๆใใ" + +#: ../../../templates/sidebar.block.users.php:14 +msgid "New Users" +msgstr "ๆฐ่ฆใฆใผใถใผ" + +#: ../../../templates/sidebar.block.users.php:23 +#: ../../../templates/users.tpl.php:17 +msgid "bookmarks" +msgstr "ใใใฏใใผใฏ" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "See all users" +msgstr "ใในใฆใฎใฆใผใถใผใ่ฆใ" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "All users" +msgstr "ใในใฆใฎใฆใผใถใผ" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts are mutual contacts" +msgstr "" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts" +msgstr "้ฃ็ตก็ฐฟใ้ใใ" + +#: ../../../templates/sidebar.block.watchlist.php:36 +msgid "Add a contact..." +msgstr "้ฃ็ตก็ฐฟใซ่ฟฝๅ ใใ..." + +#: ../../../templates/sidebar.block.watchlist.php:36 +msgid "Type a username to add it to your contacts." +msgstr "้ฃ็ตก็ฐฟใซ่ฟฝๅ ใใใฆใผใถใผๅใๅ
ฅๅใใพใใ" + +#: ../../../templates/sidebar.block.watchlist.php:44 +msgid "Remove this contact" +msgstr "้ฃ็ตก็ฐฟใใๅ้คใใ" + +#: ../../../templates/sidebar.block.watchstatus.php:11 +msgid "Remove from Watchlist" +msgstr "ๆณจ็ฎไธ่ฆงใใๅ้คใใ" + +#: ../../../templates/sidebar.block.watchstatus.php:13 +msgid "Add to Watchlist" +msgstr "ๆณจ็ฎไธ่ฆงใซ่ฟฝๅ " + +#: ../../../templates/sidebar.linkedtags.inc.php:18 +msgid "Edit link" +msgstr "ใชใณใฏใ็ทจ้ใใ" + +#: ../../../templates/sidebar.linkedtags.inc.php:47 +msgid "Synonyms:" +msgstr "" + +#: ../../../templates/tag2tagadd.tpl.php:12 +msgid "Create new link:" +msgstr "ๆฐใใใชใณใฏใฎไฝๆ:" + +#: ../../../templates/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 "" + +#: ../../../templates/tag2tagadd.tpl.php:23 +#: ../../../templates/tag2tagedit.tpl.php:37 +msgid "Create" +msgstr "ไฝๆ" + +#: ../../../templates/tag2tagadd.tpl.php:35 +#: ../../../templates/tag2tagdelete.tpl.php:27 +#: ../../../templates/tag2tagedit.tpl.php:51 +msgid "Existing links:" +msgstr "ๆขๅญใฎใชใณใฏ:" + +#: ../../../templates/tag2tagadd.tpl.php:53 +#: ../../../templates/tag2tagdelete.tpl.php:45 +#: ../../../templates/tag2tagedit.tpl.php:69 +msgid "No links" +msgstr "ใชใณใฏใชใ" + +#: ../../../templates/tag2tagedit.tpl.php:6 +msgid "Delete the link" +msgstr "ใชใณใฏใไฝๆใใ" + +#: ../../../templates/tag2tagedit.tpl.php:29 +msgid "Create new link" +msgstr "ๆฐ่ฆใชใณใฏใไฝๆใใ" + +#: ../../../templates/tagrename.tpl.php:12 +msgid "Old" +msgstr "ๆง" + +#: ../../../templates/tagrename.tpl.php:17 +msgid "New" +msgstr "ๆฐ" + +#: ../../../templates/tagrename.tpl.php:24 +msgid "Rename" +msgstr "ๅๅใๅคๆดใใ" + +#: ../../../templates/tags.tpl.php:11 ../../../templates/users.tpl.php:9 +msgid "Alphabet" +msgstr "ใขใซใใกใใใ" + +#: ../../../templates/tags.tpl.php:12 ../../../templates/users.tpl.php:10 +msgid "Popularity" +msgstr "ไบบๆฐ" + +#: ../../../templates/toolbar.inc.php:8 ../../../templates/toolbar.inc.php:26 +msgid "Home" +msgstr "ใใผใ " + +#: ../../../templates/toolbar.inc.php:14 +msgid "Log Out" +msgstr "ใญใฐใขใฆใ" + +#: ../../../templates/toolbar.inc.php:17 +msgid "Admin" +msgstr "็ฎก็" + +#: ../../../templates/top.inc.php:51 +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.inc.php." +msgstr "" + +#: ../../../templates/users.tpl.php:17 +msgid "profile" +msgstr "ใใญใใฃใผใซ" + +#: ../../../templates/users.tpl.php:17 +msgid "created in" +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 "" +#~ "<strong><a href=\"register.php\">Register now</a></strong> to start using " +#~ "%s!" +#~ msgstr "" +#~ "%s ใไฝฟใๅงใใใซใฏ<strong><a href=\"register.php\">ไปใใ็ป้ฒ</a>ใใฆใใ " +#~ "ใใ</strong>!" + +#~ msgid "" +#~ "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an " +#~ "open-source project</a> licensed under the <a href=\"http://www.gnu.org/" +#~ "copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> " +#~ "General Public License</a>. 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 ใฏ <a href=\"http://sourceforge.net/projects/scuttle/\">ใชใผใใณใฝใผใน" +#~ "</a>ใซๅบใฅใใใ<a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym " +#~ "title=\"GNU's Not Unix\">GNU</acronym>General Public License</a> ใฎๅ
ใงใฉ" +#~ "ใคใปใณในใใใฆใใพใใใใใฏใใคใณใฟใผใใใใๅไบบใฎใใใใฏใผใฏใใใใใฏ" +#~ "่ชๅใฎใณใณใใฅใผใฟใใ่ชๅใฎใฆใงใใตใผใใง็กๆใง้ๅถใใใใจใใงใใใใจใ" +#~ "ๆๅณใใพใใ" + +#~ msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +#~ msgstr "<abbr title=\"้ปๅญใกใผใซ\">้ปๅญใกใผใซ</abbr>" diff --git a/data/locales/lt_LT/LC_MESSAGES/messages.mo b/data/locales/lt_LT/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..216b01f --- /dev/null +++ b/data/locales/lt_LT/LC_MESSAGES/messages.mo diff --git a/data/locales/lt_LT/LC_MESSAGES/messages.po b/data/locales/lt_LT/LC_MESSAGES/messages.po new file mode 100644 index 0000000..90cd169 --- /dev/null +++ b/data/locales/lt_LT/LC_MESSAGES/messages.po @@ -0,0 +1,808 @@ +# 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 <audrius@gmail.com> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-04-29 11:17+0200\n" +"PO-Revision-Date: 2006-03-26 14:26-0800\n" +"Last-Translator: Marcus Campbell <marcus.campbell@gmail.com>\n" +"Language-Team: lt-LT <audrius@gmail.com>\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "Apie" + +#: ..\..\..\ajaxDelete.php:29 +msgid "You are not allowed to delete this bookmark" +msgstr "Jums neturite teisฤs iลกtrinti ลกฤฏ ลพymฤ" + +#: ..\..\..\ajaxDelete.php:33 +msgid "Failed to delete bookmark" +msgstr "Nepavyko iลกtrinti ลพymฤs" + +#: ..\..\..\alltags.php:50 +msgid "All Tags" +msgstr "Visos gairฤs" + +#: ..\..\..\alltags.php:59 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:46 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:61 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:62 +#, php-format +msgid "User with username %s not was not found" +msgstr "Nepavyko rasti vartotojo vardu %s" + +#: ..\..\..\bookmarks.php:71 +#, php-format +msgid "User with username %s was not found" +msgstr "Nepavyko rasti vartotojo vardu %s" + +#: ..\..\..\bookmarks.php:94 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "ฤฎraลกoma ลพymฤ privalo turฤti pavadinimฤ
ir adresฤ
" + +#: ..\..\..\bookmarks.php:114 +#: ..\..\..\edit.php:58 +msgid "Bookmark saved" +msgstr "ลฝymฤ iลกsaugota" + +#: ..\..\..\bookmarks.php:122 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:74 +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ลณ." + +#: ..\..\..\bookmarks.php:160 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Pridฤti ลพymฤ" + +#: ..\..\..\bookmarks.php:163 +msgid "Add Bookmark" +msgstr "Pridฤti ลพymฤ" + +#: ..\..\..\bookmarks.php:166 +msgid "You must be logged in before you can add bookmarks." +msgstr "Jei norite pridฤti naujas ลพymes, privalote prisijungti." + +#: ..\..\..\bookmarks.php:213 +msgid "My Bookmarks" +msgstr "Mano ลพymฤs" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "Keisti ลพymฤ" + +#: ..\..\..\edit.php:34 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "ลฝymฤs su id %s nepavyko rasti" + +#: ..\..\..\edit.php:39 +msgid "You are not allowed to edit this bookmark" +msgstr "Jลซs neturite teisฤs keisti ลกiฤ
ลพymฤ" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "Saugant ลพymฤ ฤฏvyko klaida" + +#: ..\..\..\edit.php:78 +msgid "Failed to delete the bookmark" +msgstr "ลฝymฤs iลกtrinti nepavyko" + +#: ..\..\..\edit.php:88 +#: ..\..\..\templates\editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "Iลกsaugoti pakeitimus" + +#: ..\..\..\functions.inc.php:92 +msgid "message_die() was called multiple times." +msgstr "message_die() buvo iลกkviesta daug kartลณ." + +#: ..\..\..\functions.inc.php:104 +msgid "SQL Error" +msgstr "message_die() buvo iลกkviesta daug kartลณ." + +#: ..\..\..\functions.inc.php:110 +msgid "Line" +msgstr "Eilutฤ" + +#: ..\..\..\functions.inc.php:110 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "Failas" + +#: ..\..\..\functions.inc.php:116 +msgid "Information" +msgstr "Informacija" + +#: ..\..\..\functions.inc.php:121 +msgid "Critical Information" +msgstr "Kritinฤ informacija" + +#: ..\..\..\functions.inc.php:126 +msgid "An error occured" +msgstr "ฤฎvyko klaida" + +#: ..\..\..\functions.inc.php:129 +msgid "General Error" +msgstr "Bendro pobลซdลพio klaida" + +#: ..\..\..\functions.inc.php:137 +msgid "An critical error occured" +msgstr "ฤฎvyko kritinฤ klaida" + +#: ..\..\..\functions.inc.php:140 +msgid "Critical Error" +msgstr "Kritinฤ klaida" + +#: ..\..\..\functions.inc.php:149 +msgid "DEBUG MODE" +msgstr "Derinimo rฤลพimas" + +#: ..\..\..\history.php:65 +msgid "History" +msgstr "Istorija" + +#: ..\..\..\history.php:66 +#, php-format +msgid "History for %s" +msgstr "%s istorija" + +#: ..\..\..\history.php:81 +msgid "Address was not found" +msgstr "Adreso nepavyko rasti" + +#: ..\..\..\import.php:41 +msgid "Could not open XML input" +msgstr "Nepavyko atidaryti XML ฤฏvesties" + +#: ..\..\..\import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "XML klaida: %s eilutฤje %d" + +#: ..\..\..\import.php:54 +msgid "Import Bookmarks from del.icio.us" +msgstr "Importuoti ลพymes iลก del.icio.us" + +#: ..\..\..\import.php:86 +#: ..\..\..\importNetscape.php:64 +msgid "You have already submitted this bookmark." +msgstr "Jลซs jau iลกsaugojote ลกiฤ
ลพymฤ." + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:72 +msgid "Bookmark imported." +msgstr "ลฝymฤ importuota." + +#: ..\..\..\importNetscape.php:81 +msgid "Import Bookmarks from Browser File" +msgstr "Importuoti ลพymes iลก naryklฤs failo" + +#: ..\..\..\index.php:32 +msgid "You have now logged out" +msgstr "Jลซs dabar atsijungฤte" + +#: ..\..\..\index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: naujos ลพymฤs" + +#: ..\..\..\index.php:72 +msgid "Store, share and tag your favourite links" +msgstr "Kaupkite, dalinkites ir apraลกinฤkite savo svarbiausias interneto ลพymes" + +#: ..\..\..\index.php:73 +msgid "Recent Bookmarks" +msgstr "Naujos ลพymฤs" + +#: ..\..\..\jsScuttle.php:22 +msgid "Are you sure?" +msgstr "Ar tikrai?" + +#: ..\..\..\jsScuttle.php:22 +msgid "Yes" +msgstr "Taip" + +#: ..\..\..\jsScuttle.php:22 +msgid "No" +msgstr "Ne" + +#: ..\..\..\jsScuttle.php:68 +msgid "Available" +msgstr "Yra" + +#: ..\..\..\jsScuttle.php:71 +msgid "Not Available" +msgstr "Nฤra" + +#: ..\..\..\login.php:38 +msgid "The details you have entered are incorrect. Please try again." +msgstr "Jลซsลณ ฤฏraลกyti duomenys neteisingi. Bandykite dar kartฤ
." + +#: ..\..\..\login.php:48 +#: ..\..\..\templates\login.tpl.php:26 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "Prisijungti" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "Privalote ฤฏraลกyti vartotojo vardฤ
." + +#: ..\..\..\password.php:35 +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Privalote ฤฏraลกyti savo <abbr title=\"elektroninis paลกtas\">el. paลกto</abbr> adresฤ
." + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "Nepavyko rasti ฤฏraลกลณ, susijusiลณ su ลกiuo vartotoju." + +#: ..\..\..\password.php:45 +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Nepavyko rasti ฤฏraลกลณ, susijusiลณ su ลกiuo vartotojo vardu ir <abbr title=\"elektroninis paลกtas\">el. paลกto</abbr> adresu." + +#: ..\..\..\password.php:53 +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ฤ
." + +#: ..\..\..\password.php:57 +msgid "Your new password is:" +msgstr "Jลซsลณ naujasis slaptaลพodis yra:" + +#: ..\..\..\password.php:57 +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." + +#: ..\..\..\password.php:60 +#, php-format +msgid "%s Account Information" +msgstr "%s paskyros informacija" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "Naujas slaptaลพodis sukurtas ir iลกsiลณstas %s" + +#: ..\..\..\password.php:69 +msgid "Forgotten Password" +msgstr "Uลพmirลกtas slaptaลพodis" + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\dynamictags.inc.php:101 +#: ..\..\..\templates\sidebar.block.common.php:9 +#: ..\..\..\templates\sidebar.block.popular.php:15 +#: ..\..\..\templates\sidebar.block.recent.php:25 +msgid "Popular Tags" +msgstr "Populiarios gairฤs" + +#: ..\..\..\profile.php:54 +#: ..\..\..\watched.php:114 +msgid "Username was not specified" +msgstr "Nenurodytas vartotojo vardas" + +#: ..\..\..\profile.php:60 +msgid "My Profile" +msgstr "Mano profilis" + +#: ..\..\..\profile.php:62 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Profile" +msgstr "Profilis" + +#: ..\..\..\profile.php:80 +msgid "Password and confirmation do not match." +msgstr "ฤฎraลกyti slaptaลพodลพio variantai nesutampa." + +#: ..\..\..\profile.php:84 +msgid "Password must be at least 6 characters long." +msgstr "Slaptaลพodis turi bลซti bent 6 simboliลณ ilgio." + +#: ..\..\..\profile.php:88 +msgid "E-mail address is not valid." +msgstr "Neteisingas el. paลกto adresas." + +#: ..\..\..\profile.php:92 +msgid "An error occurred while saving your changes." +msgstr "Saugant pakeitimus ฤฏvyko klaida." + +#: ..\..\..\profile.php:94 +msgid "Changes saved." +msgstr "Pakeitimai iลกsaugoti." + +#: ..\..\..\register.php:33 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "<em>Privalote</em> ฤฏraลกyti vartotojo vardฤ
, slaptaลพodฤฏ, vardฤ
ir <abbr title=\"elektroninis paลกtas\">el. paลกto</abbr> adresฤ
." + +#: ..\..\..\register.php:37 +msgid "This username already exists, please make another choice." +msgstr "Toks vartotojas jau yra, praลกom pasirinkti kitฤ
." + +#: ..\..\..\register.php:41 +msgid "E-mail address is not valid. Please try again." +msgstr "El. paลกto adresas neteisingas. Bandykite dar kartฤ
." + +#: ..\..\..\register.php:50 +msgid "You have successfully registered. Enjoy!" +msgstr "Sveikiname sฤkmingai uลพsiregistravus!" + +#: ..\..\..\register.php:52 +msgid "Registration failed. Please try again." +msgstr "Registracija nepavyko. Bandykite dar kartฤ
." + +#: ..\..\..\register.php:57 +#: ..\..\..\templates\register.tpl.php:32 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "Registracija" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:57 +msgid "Search" +msgstr "Ieลกkoti" + +#: ..\..\..\search.inc.php:35 +msgid "this user's bookmarks" +msgstr "ลกio vartotojo ลพymฤse" + +#: ..\..\..\search.inc.php:40 +msgid "my bookmarks" +msgstr "mano ลพymฤse" + +#: ..\..\..\search.inc.php:41 +msgid "my watchlist" +msgstr "biฤiuliลณ ลพymฤse" + +#: ..\..\..\search.inc.php:45 +msgid "all bookmarks" +msgstr "visose ลพymฤse" + +#: ..\..\..\search.inc.php:48 +msgid "for" +msgstr "teksto" + +#: ..\..\..\search.php:91 +#: ..\..\..\search.php:128 +msgid "Search Bookmarks" +msgstr "Ieลกkoti ลพymฤse" + +#: ..\..\..\search.php:97 +msgid "Search Results" +msgstr "Paieลกkos rezultatai" + +#: ..\..\..\tags.php:38 +#: ..\..\..\templates\editbookmark.tpl.php:44 +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Tags" +msgstr "Gairฤs" + +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "%s ลพymฤs" + +#: ..\..\..\watch.php:84 +msgid "User removed from your watchlist" +msgstr "Vartotojas iลกbrauktas iลก biฤiuliลณ sฤ
raลกo" + +#: ..\..\..\watch.php:86 +msgid "User added to your watchlist" +msgstr "Vartotojas ฤฏtrauktas ฤฏ biฤiuliลณ sฤ
raลกฤ
" + +#: ..\..\..\watched.php:105 +msgid "My Watchlist" +msgstr "Mano biฤiuliai" + +#: ..\..\..\watched.php:107 +#: ..\..\..\templates\sidebar.block.profile.php:14 +#: ..\..\..\templates\toolbar.inc.php:12 +msgid "Watchlist" +msgstr "Biฤiuliai" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "<strong>Kaupkite</strong> Jus dominanฤias ลพymes vienoje, bet kur pasiekiamoje vietoje." + +#: ..\..\..\templates\about.tpl.php:7 +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "<strong>Dalinkitฤs</strong> savo ลพymฤmis su visais ar ฤฏ tik biฤiuliลณ sฤ
raลกฤ
ฤฏtrauktais draugais arba laikykite jas asmeniniam naudojimui." + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "<strong>Grupuokite</strong> savo ลพymes gairiลณ pagalba. Jลณ galite sukurti tiek, kiek Jums reikia. Pamirลกkite nelanksฤius katalogus!" + +#: ..\..\..\templates\about.tpl.php:9 +#, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "<strong><a href=\"register.php\">Registruokitฤs dabar</a></strong> ir pradฤkite darbฤ
su <strong>%s</strong>!" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "Techninฤ informacija" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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 "<strong>%s</strong> veikia pagal <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> GPL</a> licencijฤ
sukurto <a href=\"http://sourceforge.net/projects/scuttle/\">atvirojo kodo projekto</a> pagrindu. Tai reiลกkia, kad Jลซs galite ลกiฤ
sistemฤ
nemokamai naudoti ir talpinti internete, vidaus tinkle ar savo kompiuteryje." + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 "<strong>%1$s</strong> palaiko <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. Daugumฤ
ลกiai sistemai skirtลณ ฤฏrankiลณ galiama pakoreguoti taip, kad jie veiktลณ su <strong>%1$s</strong>. Jei radote ฤฏrankฤฏ, kuriame negalima pakeisti API adreso, papraลกykite jo kลซrฤjลณ tai padaryti. Jie tikrai neatsilaikys Jลซsลณ kerams." + +#: ..\..\..\templates\bookmarks.tpl.php:17 +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Sort by:" +msgstr "Rลซลกiuoti pagal:" + +#: ..\..\..\templates\bookmarks.tpl.php:18 +msgid "Date" +msgstr "datฤ
" + +#: ..\..\..\templates\bookmarks.tpl.php:19 +#: ..\..\..\templates\editbookmark.tpl.php:34 +msgid "Title" +msgstr "pavadinimฤ
" + +#: ..\..\..\templates\bookmarks.tpl.php:23 +msgid "URL" +msgstr "adresฤ
" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Edit" +msgstr "Keisti" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Delete" +msgstr "Trinti" + +#: ..\..\..\templates\bookmarks.tpl.php:66 +msgid "by" +msgstr " ฤฏraลกฤ" + +#: ..\..\..\templates\bookmarks.tpl.php:78 +#, php-format +msgid " and %s1 other%s" +msgstr " bei dar %s1 vartotojas%s" + +#: ..\..\..\templates\bookmarks.tpl.php:81 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr " bei dar %2$s%1$s vartotojai%3$s" + +#: ..\..\..\templates\bookmarks.tpl.php:90 +msgid "Copy" +msgstr "Kopijuoti" + +#: ..\..\..\templates\bookmarks.tpl.php:136 +#: ..\..\..\templates\bookmarks.tpl.php:142 +msgid "First" +msgstr "Pirmas" + +#: ..\..\..\templates\bookmarks.tpl.php:137 +#: ..\..\..\templates\bookmarks.tpl.php:143 +msgid "Previous" +msgstr "Ankstesnis" + +#: ..\..\..\templates\bookmarks.tpl.php:150 +#: ..\..\..\templates\bookmarks.tpl.php:153 +msgid "Next" +msgstr "Kitas" + +#: ..\..\..\templates\bookmarks.tpl.php:151 +#: ..\..\..\templates\bookmarks.tpl.php:154 +msgid "Last" +msgstr "Paskutinis" + +#: ..\..\..\templates\bookmarks.tpl.php:156 +#, php-format +msgid "Page %d of %d" +msgstr "%d iลก %d puslapiลณ" + +#: ..\..\..\templates\bookmarks.tpl.php:160 +msgid "No bookmarks available" +msgstr "ลฝymiลณ nฤra" + +#: ..\..\..\templates\dynamictags.inc.php:108 +#: ..\..\..\templates\sidebar.block.common.php:15 +#: ..\..\..\templates\sidebar.block.popular.php:21 +#: ..\..\..\templates\sidebar.block.recent.php:20 +#: ..\..\..\templates\tags.tpl.php:16 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "ลพymฤ" +msgstr[1] "ลพymฤs" + +#: ..\..\..\templates\editbookmark.tpl.php:29 +msgid "Address" +msgstr "Adresas" + +#: ..\..\..\templates\editbookmark.tpl.php:31 +#: ..\..\..\templates\editbookmark.tpl.php:36 +#: ..\..\..\templates\editprofile.tpl.php:31 +msgid "Required" +msgstr "Privaloma" + +#: ..\..\..\templates\editbookmark.tpl.php:39 +#: ..\..\..\templates\editprofile.tpl.php:47 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "Apraลกas" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "Skiriamos kableliais" + +#: ..\..\..\templates\editbookmark.tpl.php:49 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Privatumas" + +#: ..\..\..\templates\editbookmark.tpl.php:52 +#: ..\..\..\templates\importDelicious.tpl.php:18 +#: ..\..\..\templates\importNetscape.tpl.php:19 +msgid "Public" +msgstr "Vieลกa" + +#: ..\..\..\templates\editbookmark.tpl.php:53 +#: ..\..\..\templates\importDelicious.tpl.php:19 +#: ..\..\..\templates\importNetscape.tpl.php:20 +msgid "Shared with Watch List" +msgstr "Tik biฤiuliams" + +#: ..\..\..\templates\editbookmark.tpl.php:54 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Private" +msgstr "Privati" + +#: ..\..\..\templates\editbookmark.tpl.php:66 +msgid "Delete Bookmark" +msgstr "Trinti ลพymฤ" + +#: ..\..\..\templates\editbookmark.tpl.php:93 +msgid "Bookmarklet" +msgstr "ลฝymeklis" + +#: ..\..\..\templates\editbookmark.tpl.php:94 +#, 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ฤฏ ฤฏ <strong>%s</strong>" + +#: ..\..\..\templates\editbookmark.tpl.php:106 +#, php-format +msgid "Post to %s" +msgstr "Siลณsti ฤฏ <strong>%s</strong>" + +#: ..\..\..\templates\editbookmark.tpl.php:107 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Siลณsti ฤฏ <strong>%s</strong> (atskirame lange)" + +#: ..\..\..\templates\editbookmark.tpl.php:111 +#: ..\..\..\templates\importDelicious.tpl.php:26 +#: ..\..\..\templates\importNetscape.tpl.php:27 +msgid "Import" +msgstr "Importas" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Import bookmarks from bookmark file" +msgstr "Importuoti ลพymes iลก ลพymiลณ failo" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox ir Netscape" + +#: ..\..\..\templates\editbookmark.tpl.php:114 +msgid "Import bookmarks from del.icio.us" +msgstr "Importuoti ลพymes iลก del.icio.us" + +#: ..\..\..\templates\editprofile.tpl.php:10 +msgid "Account Details" +msgstr "Paskyris informacija" + +#: ..\..\..\templates\editprofile.tpl.php:14 +#: ..\..\..\templates\login.tpl.php:15 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:16 +msgid "Username" +msgstr "Vartotojas" + +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "New Password" +msgstr "Naujas slaptaลพodis" + +#: ..\..\..\templates\editprofile.tpl.php:24 +msgid "Confirm Password" +msgstr "Pakartoti slaptaลพodฤฏ" + +#: ..\..\..\templates\editprofile.tpl.php:29 +#: ..\..\..\templates\register.tpl.php:26 +msgid "E-mail" +msgstr "El. paลกtas" + +#: ..\..\..\templates\editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "Asmeniniai duomenys" + +#: ..\..\..\templates\editprofile.tpl.php:39 +#: ..\..\..\templates\profile.tpl.php:12 +msgid "Name" +msgstr "Vardas" + +#: ..\..\..\templates\editprofile.tpl.php:43 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "Svetainฤ" + +#: ..\..\..\templates\error.404.tpl.php:5 +msgid "Not Found" +msgstr "Nฤra" + +#: ..\..\..\templates\error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "Uลพklausto saito darbo stotyje nฤra" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "Bendro pobลซdลพio darbo stoties klaida" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "Uลพklausa negali bลซti ฤฏvykdyta" + +#: ..\..\..\templates\importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Prisijunkite prie <a href=\"http://del.icio.us/api/posts/all\">del.icio.us eksporto puslapio</a>" + +#: ..\..\..\templates\importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Iลกsaugoti <abbr title=\"Extensible Markup Language\">XML</abbr> failฤ
Jลซsลณ kompiuteryje" + +#: ..\..\..\templates\importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Paspauskite <kbd>Browse...</kbd> ir raskite ลกฤฏ failฤ
kompiuteryje. Maksimalus failo dydis - 1 MB" + +#: ..\..\..\templates\importDelicious.tpl.php:36 +#: ..\..\..\templates\importNetscape.tpl.php:43 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "Pasirinkite bazines privatumo nuostatas importuojamoms ลพymฤms" + +#: ..\..\..\templates\importDelicious.tpl.php:37 +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "Norฤdami importuoti ลพymes, spauskite <kbd>Importuoti</kbd>; tai gali ลกiek tiek uลพtrukti" + +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "Instrukcija" + +#: ..\..\..\templates\importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "Eksportuokite savo ลพymes iลก narลกyklฤs ฤฏ failฤ
" + +#: ..\..\..\templates\importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" + +#: ..\..\..\templates\importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." + +#: ..\..\..\templates\importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Paspauskite <kbd>Browse...</kbd> ir raskite ลพymes savo kompiuteryje. Maksimalus failo dydis - 1MB." + +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\register.tpl.php:21 +msgid "Password" +msgstr "Slaptaลพodis" + +#: ..\..\..\templates\login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Neklausti slaptaลพodลพio dvi savaites" + +#: ..\..\..\templates\login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "Pamirลกote slaptaลพodฤฏ?" + +#: ..\..\..\templates\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ฤฏ, <strong>%s</strong> 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ฤฏ." + +#: ..\..\..\templates\password.tpl.php:14 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "<abbr title=\"Elektroninis paลกtas\">El. paลกtas</abbr>" + +#: ..\..\..\templates\password.tpl.php:19 +msgid "Generate Password" +msgstr "Generuoti slaptaลพodฤฏ" + +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "Dalyvauja nuo" + +#: ..\..\..\templates\profile.tpl.php:35 +#: ..\..\..\templates\sidebar.block.watchlist.php:8 +msgid "Watching" +msgstr "Stebi" + +#: ..\..\..\templates\profile.tpl.php:50 +msgid "Watched By" +msgstr "Yra stebimas" + +#: ..\..\..\templates\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 <strong>%s</strong> uลพlipdykite ลพemiau esanฤiฤ
anketฤ
" + +#: ..\..\..\templates\rss.tpl.php:9 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Naujos, %s iลกsiลณstos gairฤs" + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +msgid "No bookmarks found" +msgstr "ลฝymiลณ nฤra" + +#: ..\..\..\templates\sidebar.block.recent.php:15 +msgid "Recent Tags" +msgstr "Naujos gairฤs" + +#: ..\..\..\templates\sidebar.block.related.php:15 +msgid "Related Tags" +msgstr "Susijฤ gairฤs" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "Paลกalinti iลก biฤiuliลณ sฤ
raลกo" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "ฤฎtraukti ฤฏ biฤiuliลณ sฤ
raลกฤ
" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:17 +msgid "Actions" +msgstr "Veiksmai" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Alphabet" +msgstr "Abฤcฤlฤ" + +#: ..\..\..\templates\tags.tpl.php:9 +msgid "Popularity" +msgstr "Populiarumas" + +#: ..\..\..\templates\toolbar.inc.php:11 +msgid "Bookmarks" +msgstr "ลฝymฤs" + +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "Atsijungti" + diff --git a/data/locales/messages.po b/data/locales/messages.po new file mode 100644 index 0000000..c2f50f8 --- /dev/null +++ b/data/locales/messages.po @@ -0,0 +1,1410 @@ +# 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 <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-04 11:34+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\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" + +#: ../../../about.php:23 ../../../about.php:24 +#: ../../../templates/bottom.inc.php:5 ../../../templates/toolbar.inc.php:15 +#: ../../../templates/toolbar.inc.php:28 +msgid "About" +msgstr "" + +#: ../../../admin.php:32 +msgid "Manage users" +msgstr "" + +#: ../../../admin.php:68 +#, php-format +msgid "%s and all his bookmarks and tags were deleted." +msgstr "" + +#: ../../../admin.php:75 +msgid "Problem with " +msgstr "" + +#: ../../../ajaxDelete.php:37 +msgid "You are not allowed to delete this bookmark" +msgstr "" + +#: ../../../ajaxDelete.php:41 ../../../edit.php:103 +msgid "Failed to delete bookmark" +msgstr "" + +#: ../../../alltags.php:49 +msgid "All Tags" +msgstr "" + +#: ../../../alltags.php:55 ../../../bookmarks.php:96 +#: ../../../populartags.php:52 ../../../profile.php:51 ../../../rss.php:67 +#: ../../../search.php:101 ../../../watch.php:45 ../../../watchlist.php:61 +#, php-format +msgid "User with username %s was not found" +msgstr "" + +#: ../../../bookmarkcommondescriptionedit.php:51 ../../../tag2tagadd.php:37 +#: ../../../tag2tagdelete.php:41 ../../../tag2tagedit.php:33 +#: ../../../tagcommondescriptionedit.php:43 ../../../tagedit.php:43 +msgid "Permission denied." +msgstr "" + +#: ../../../bookmarkcommondescriptionedit.php:60 +msgid "Bookmark common description updated" +msgstr "" + +#: ../../../bookmarkcommondescriptionedit.php:63 +msgid "Failed to update the bookmark common description" +msgstr "" + +#: ../../../bookmarkcommondescriptionedit.php:71 +msgid "Edit Bookmark Common Description" +msgstr "" + +#: ../../../bookmarks.php:111 ../../../tags.php:47 +msgid "Remove the tag from the selection" +msgstr "" + +#: ../../../bookmarks.php:131 ../../../edit.php:65 +msgid "Your bookmark must have a title and an address" +msgstr "" + +#: ../../../bookmarks.php:152 ../../../edit.php:83 ../../../edit.php:86 +msgid "Bookmark saved" +msgstr "" + +#: ../../../bookmarks.php:152 +msgid "(Come back to previous page.)" +msgstr "" + +#: ../../../bookmarks.php:159 ../../../import.php:106 +#: ../../../importNetscape.php:108 +msgid "" +"There was an error saving your bookmark. Please try again or contact the " +"administrator." +msgstr "" + +#: ../../../bookmarks.php:209 ../../../templates/toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "" + +#: ../../../bookmarks.php:213 +msgid "Add Bookmark" +msgstr "" + +#: ../../../bookmarks.php:216 +msgid "You must be logged in before you can add bookmarks." +msgstr "" + +#: ../../../bookmarks.php:270 ../../../bookmarks.php:271 +msgid "My Bookmarks" +msgstr "" + +#: ../../../edit.php:44 ../../../edit.php:45 +msgid "Edit Bookmark" +msgstr "" + +#: ../../../edit.php:51 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "" + +#: ../../../edit.php:57 +msgid "You are not allowed to edit this bookmark" +msgstr "" + +#: ../../../edit.php:77 +msgid "Error while saving your bookmark" +msgstr "" + +#: ../../../edit.php:113 ../../../templates/editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "" + +#: ../../../functions.inc.php:144 +msgid "message_die() was called multiple times." +msgstr "" + +#: ../../../functions.inc.php:156 +msgid "SQL Error" +msgstr "" + +#: ../../../functions.inc.php:162 +msgid "Line" +msgstr "" + +#: ../../../functions.inc.php:162 ../../../templates/importDelicious.tpl.php:8 +#: ../../../templates/importNetscape.tpl.php:9 +#: ../../../templates/importStructure.tpl.php:10 +msgid "File" +msgstr "" + +#: ../../../functions.inc.php:168 +msgid "Information" +msgstr "" + +#: ../../../functions.inc.php:173 +msgid "Critical Information" +msgstr "" + +#: ../../../functions.inc.php:178 +msgid "An error occured" +msgstr "" + +#: ../../../functions.inc.php:181 +msgid "General Error" +msgstr "" + +#: ../../../functions.inc.php:189 +msgid "An critical error occured" +msgstr "" + +#: ../../../functions.inc.php:192 +msgid "Critical Error" +msgstr "" + +#: ../../../functions.inc.php:201 +msgid "DEBUG MODE" +msgstr "" + +#: ../../../history.php:61 +msgid "History" +msgstr "" + +#: ../../../history.php:62 +#, php-format +msgid "History for %s" +msgstr "" + +#: ../../../history.php:84 +msgid "Address was not found" +msgstr "" + +#: ../../../import.php:47 +msgid "Could not open XML input" +msgstr "" + +#: ../../../import.php:51 +#, php-format +msgid "XML error: %s at line %d" +msgstr "" + +#: ../../../import.php:60 +msgid "Import Bookmarks from del.icio.us" +msgstr "" + +#: ../../../import.php:93 +msgid "You have already submitted this bookmark." +msgstr "" + +#: ../../../import.php:104 +msgid "Bookmark imported." +msgstr "" + +#: ../../../importNetscape.php:95 +msgid "You have already submitted some of these bookmarks." +msgstr "" + +#: ../../../importNetscape.php:115 +msgid "Bookmarks found: " +msgstr "" + +#: ../../../importNetscape.php:116 +msgid "Bookmarks imported: " +msgstr "" + +#: ../../../importNetscape.php:117 ../../../importNetscape.php:122 +msgid "Import Bookmarks from Browser File" +msgstr "" + +#: ../../../importStructure.php:61 +msgid "Bad indentation" +msgstr "" + +#: ../../../importStructure.php:67 +msgid "New links between tags: " +msgstr "" + +#: ../../../importStructure.php:72 +msgid "Import Structure" +msgstr "" + +#: ../../../index.php:38 +msgid "You have now logged out" +msgstr "" + +#: ../../../index.php:45 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "" + +#: ../../../index.php:78 +msgid "Store, share and tag your favourite links" +msgstr "" + +#: ../../../index.php:79 +msgid "All Bookmarks" +msgstr "" + +#: ../../../jsScuttle.php:22 ../../../templates/admin.tpl.php:19 +#: ../../../templates/tag2tagadd.tpl.php:21 +#: ../../../templates/tag2tagdelete.tpl.php:13 +#: ../../../templates/tag2tagedit.tpl.php:14 +#: ../../../templates/tag2tagedit.tpl.php:35 +#: ../../../templates/tagdelete.tpl.php:6 +msgid "Are you sure?" +msgstr "" + +#: ../../../jsScuttle.php:22 ../../../templates/tag2tagdelete.tpl.php:15 +#: ../../../templates/tag2tagedit.tpl.php:16 +#: ../../../templates/tagdelete.tpl.php:8 +msgid "Yes" +msgstr "" + +#: ../../../jsScuttle.php:22 ../../../templates/tag2tagdelete.tpl.php:16 +#: ../../../templates/tag2tagedit.tpl.php:17 +#: ../../../templates/tagdelete.tpl.php:9 +msgid "No" +msgstr "" + +#: ../../../jsScuttle.php:69 +msgid "Available" +msgstr "" + +#: ../../../jsScuttle.php:72 +msgid "Not Available" +msgstr "" + +#: ../../../login.php:48 +msgid "The details you have entered are incorrect. Please try again." +msgstr "" + +#: ../../../login.php:57 ../../../templates/login.tpl.php:26 +#: ../../../templates/toolbar.inc.php:29 +msgid "Log In" +msgstr "" + +#: ../../../password.php:36 +msgid "You must enter your username." +msgstr "" + +#: ../../../password.php:40 +msgid "" +"You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "" + +#: ../../../password.php:48 +msgid "No matches found for that username." +msgstr "" + +#: ../../../password.php:51 +msgid "" +"No matches found for that combination of username and <abbr title=" +"\"electronic mail\">e-mail</abbr> address." +msgstr "" + +#: ../../../password.php:59 +msgid "" +"There was an error while generating your new password. Please try again." +msgstr "" + +#: ../../../password.php:63 +msgid "Your new password is:" +msgstr "" + +#: ../../../password.php:63 +msgid "" +"To keep your bookmarks secure, you should change this password in your " +"profile the next time you log in." +msgstr "" + +#: ../../../password.php:66 +#, php-format +msgid "%s Account Information" +msgstr "" + +#: ../../../password.php:68 +#, php-format +msgid "New password generated and sent to %s" +msgstr "" + +#: ../../../password.php:75 +msgid "Forgotten Password" +msgstr "" + +#: ../../../populartags.php:46 ../../../templates/dynamictags.inc.php:128 +#: ../../../templates/sidebar.block.common.php:9 +#: ../../../templates/sidebar.block.menu.php:74 +#: ../../../templates/sidebar.block.popular.php:23 +#: ../../../templates/sidebar.block.recent.php:34 +#: ../../../templates/toolbar.inc.php:27 +msgid "Popular Tags" +msgstr "" + +#: ../../../profile.php:59 ../../../watchlist.php:119 +msgid "Username was not specified" +msgstr "" + +#: ../../../profile.php:65 +msgid "My Profile" +msgstr "" + +#: ../../../profile.php:67 ../../../templates/toolbar.inc.php:12 +msgid "Profile" +msgstr "" + +#: ../../../profile.php:89 +msgid "Invalid Token" +msgstr "" + +#: ../../../profile.php:94 +msgid "Password and confirmation do not match." +msgstr "" + +#: ../../../profile.php:98 +msgid "Password must be at least 6 characters long." +msgstr "" + +#: ../../../profile.php:102 +msgid "E-mail address is not valid." +msgstr "" + +#: ../../../profile.php:106 +msgid "An error occurred while saving your changes." +msgstr "" + +#: ../../../profile.php:108 +msgid "Changes saved." +msgstr "" + +#: ../../../register.php:40 +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "" + +#: ../../../register.php:44 +msgid "This username has been reserved, please make another choice." +msgstr "" + +#: ../../../register.php:48 +msgid "This username already exists, please make another choice." +msgstr "" + +#: ../../../register.php:52 +msgid "" +"This username is not valid (too short, too long, forbidden characters...), " +"please make another choice." +msgstr "" + +#: ../../../register.php:56 +msgid "E-mail address is not valid. Please try again." +msgstr "" + +#: ../../../register.php:60 +msgid "Antispam answer is not valid. Please try again." +msgstr "" + +#: ../../../register.php:69 +msgid "You have successfully registered. Enjoy!" +msgstr "" + +#: ../../../register.php:71 +msgid "Registration failed. Please try again." +msgstr "" + +#: ../../../register.php:77 ../../../templates/register.tpl.php:41 +#: ../../../templates/toolbar.inc.php:30 +msgid "Register" +msgstr "" + +#: ../../../rss.php:84 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "" + +#: ../../../search.inc.php:23 +msgid "Search..." +msgstr "" + +#: ../../../search.inc.php:24 +msgid "in" +msgstr "" + +#: ../../../search.inc.php:30 +msgid "this user's bookmarks" +msgstr "" + +#: ../../../search.inc.php:35 +msgid "my bookmarks" +msgstr "" + +#: ../../../search.inc.php:36 +msgid "my watchlist" +msgstr "" + +#: ../../../search.inc.php:40 +msgid "all bookmarks" +msgstr "" + +#: ../../../search.inc.php:50 +msgid "Search" +msgstr "" + +#: ../../../search.php:73 ../../../search.php:123 +msgid "Search Bookmarks" +msgstr "" + +#: ../../../search.php:79 +msgid "Search Results" +msgstr "" + +#: ../../../search.php:114 +msgid "Unsatisfied? You can also try our " +msgstr "" + +#: ../../../tag2tagadd.php:50 +msgid "Tag link created" +msgstr "" + +#: ../../../tag2tagadd.php:53 +msgid "Failed to create the link" +msgstr "" + +#: ../../../tag2tagadd.php:65 +msgid "Add Tag Link" +msgstr "" + +#: ../../../tag2tagdelete.php:66 +msgid "Tag link deleted" +msgstr "" + +#: ../../../tag2tagdelete.php:69 +msgid "Failed to delete the link" +msgstr "" + +#: ../../../tag2tagdelete.php:81 +msgid "Delete Link Between Tags" +msgstr "" + +#: ../../../tag2tagedit.php:55 +msgid "Edit Link Between Tags" +msgstr "" + +#: ../../../tagcommondescriptionedit.php:55 +msgid "Tag common description updated" +msgstr "" + +#: ../../../tagcommondescriptionedit.php:58 +msgid "Failed to update the tag common description" +msgstr "" + +#: ../../../tagcommondescriptionedit.php:64 +#: ../../../templates/sidebar.block.tagactions.php:26 +msgid "Edit Tag Common Description" +msgstr "" + +#: ../../../tagdelete.php:43 +msgid "Tag deleted" +msgstr "" + +#: ../../../tagdelete.php:46 +msgid "Failed to delete the tag" +msgstr "" + +#: ../../../tagdelete.php:54 +#: ../../../templates/sidebar.block.tagactions.php:22 +msgid "Delete Tag" +msgstr "" + +#: ../../../tagedit.php:52 +msgid "Tag description updated" +msgstr "" + +#: ../../../tagedit.php:55 +msgid "Failed to update the tag description" +msgstr "" + +#: ../../../tagedit.php:61 ../../../templates/sidebar.block.tagactions.php:24 +msgid "Edit Tag Description" +msgstr "" + +#: ../../../tagrename.php:63 +msgid "Tag renamed" +msgstr "" + +#: ../../../tagrename.php:66 +msgid "Failed to rename the tag" +msgstr "" + +#: ../../../tagrename.php:72 ../../../templates/sidebar.block.tagactions.php:9 +msgid "Rename Tag" +msgid_plural "Rename Tags" +msgstr[0] "" +msgstr[1] "" + +#: ../../../tags.php:45 ../../../tags.php:67 +#: ../../../templates/editbookmark.tpl.php:69 +#: ../../../templates/toolbar.inc.php:10 +msgid "Tags" +msgstr "" + +#: ../../../users.php:35 +msgid "Users" +msgstr "" + +#: ../../../watch.php:54 +msgid "User removed from your watchlist" +msgstr "" + +#: ../../../watch.php:56 +msgid "User added to your watchlist" +msgstr "" + +#: ../../../watchlist.php:104 +msgid "My Watchlist" +msgstr "" + +#: ../../../watchlist.php:106 ../../../templates/toolbar.inc.php:11 +msgid "Watchlist" +msgstr "" + +#: ../../../templates/about.tpl.php:6 +msgid "" +"<strong>Store</strong> all your favourite links in one place, accessible " +"from anywhere." +msgstr "" + +#: ../../../templates/about.tpl.php:7 +msgid "" +"<strong>Share</strong> your bookmarks with everyone, with friends on your " +"watchlist or just keep them private." +msgstr "" + +#: ../../../templates/about.tpl.php:8 +msgid "" +"<strong>Tag</strong> your bookmarks with as many labels as you want, instead " +"of wrestling with folders." +msgstr "" + +#: ../../../templates/about.tpl.php:9 +msgid "Register now" +msgstr "" + +#: ../../../templates/about.tpl.php:9 +#, php-format +msgid " to start using %s!" +msgstr "" + +#: ../../../templates/about.tpl.php:12 +msgid "Geek Stuff" +msgstr "" + +#: ../../../templates/about.tpl.php:14 +msgid "is licensed under the " +msgstr "" + +#: ../../../templates/about.tpl.php:14 +msgid "you can freely host it on your own web server." +msgstr "" + +#: ../../../templates/about.tpl.php:15 +#, php-format +msgid "" +"%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us " +"<abbr title=\"Application Programming Interface\">API</abbr></a>. 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 "" + +#: ../../../templates/about.tpl.php:24 +msgid "Tips" +msgstr "" + +#: ../../../templates/about.tpl.php:26 +msgid "Add search plugin into your browser:" +msgstr "" + +#: ../../../templates/about.tpl.php:27 +msgid "" +"The secret tag \"system:unfiled\" allows you to find bookmarks without tags." +msgstr "" + +#: ../../../templates/about.tpl.php:28 +msgid "" +"The secret tag \"system:imported\" allows you to find imported bookmarks." +msgstr "" + +#: ../../../templates/admin.tpl.php:5 +msgid "Users management" +msgstr "" + +#: ../../../templates/admin.tpl.php:14 +msgid "Public/Shared/Private" +msgstr "" + +#: ../../../templates/admin.tpl.php:14 ../../../templates/bookmarks.tpl.php:93 +msgid "bookmark(s)" +msgstr "" + +#: ../../../templates/admin.tpl.php:19 +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Delete" +msgstr "" + +#: ../../../templates/admin.tpl.php:27 +msgid "Other actions" +msgstr "" + +#: ../../../templates/admin.tpl.php:29 +msgid "Check all URLs (May take some time)" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:16 +msgid "" +"Collaborative description: these fields can be viewed and modified by every " +"users" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:18 +#: ../../../templates/bookmarks.tpl.php:123 +#: ../../../templates/editbookmark.tpl.php:38 +msgid "Title" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:23 +#: ../../../templates/editbookmark.tpl.php:44 +#: ../../../templates/editprofile.tpl.php:47 +#: ../../../templates/profile.tpl.php:33 +#: ../../../templates/tagcommondescriptionedit.tpl.php:13 +#: ../../../templates/tagedit.tpl.php:12 +msgid "Description" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:31 +#: ../../../templates/tagcommondescriptionedit.tpl.php:21 +msgid "Last modification:" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:42 +#: ../../../templates/tagcommondescriptionedit.tpl.php:32 +#: ../../../templates/tagedit.tpl.php:18 +msgid "Update" +msgstr "" + +#: ../../../templates/bookmarkcommondescriptionedit.tpl.php:43 +#: ../../../templates/editbookmark.tpl.php:98 +#: ../../../templates/tag2tagadd.tpl.php:24 +#: ../../../templates/tag2tagedit.tpl.php:38 +#: ../../../templates/tagcommondescriptionedit.tpl.php:33 +#: ../../../templates/tagedit.tpl.php:19 +#: ../../../templates/tagrename.tpl.php:25 +msgid "Cancel" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:26 +msgid "Bookmarks on this page are managed by an admin user." +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:51 +#: ../../../templates/bookmarks.tpl.php:52 +msgid "Edit the common description of this tag" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:55 +#: ../../../templates/bookmarks.tpl.php:56 +msgid "Edit the common description of this bookmark" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:76 +#: ../../../templates/bookmarks.tpl.php:77 +msgid "Edit your personal description of this tag" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:93 ../../../templates/tags.tpl.php:10 +#: ../../../templates/users.tpl.php:8 +msgid "Sort by:" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:122 +msgid "Date" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:129 +msgid "Bookmarks from other users for this tag" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:134 +msgid "Only your bookmarks for this tag" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:157 +#: ../../../templates/bookmarks.tpl.php:163 +msgid "First" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:158 +#: ../../../templates/bookmarks.tpl.php:164 +msgid "Previous" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:171 +#: ../../../templates/bookmarks.tpl.php:174 +msgid "Next" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:172 +#: ../../../templates/bookmarks.tpl.php:175 +msgid "Last" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:185 +#, php-format +msgid "Page %d of %d" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:225 +msgid "Tags:" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:231 +msgid "Edit" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:235 +msgid "Last update" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:238 +msgid "by" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:240 +msgid "you" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:254 +#, php-format +msgid " and %s1 other%s" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:257 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy this bookmark to YOUR bookmarks." +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:265 +msgid "Copy" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:284 +msgid "This bookmark is certified by an admin user." +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:323 +msgid "Private Note on this bookmark" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Come back to the top of this page." +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:334 +msgid "Top of the page" +msgstr "" + +#: ../../../templates/bookmarks.tpl.php:340 +msgid "No bookmarks available" +msgstr "" + +#: ../../../templates/bottom.inc.php:7 +msgid "Propulsed by " +msgstr "" + +#: ../../../templates/dynamictags.inc.php:47 +#: ../../../templates/sidebar.block.common.php:19 +#: ../../../templates/sidebar.block.popular.php:34 +#: ../../../templates/sidebar.block.recent.php:29 +#: ../../../templates/tags.tpl.php:19 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "" +msgstr[1] "" + +#: ../../../templates/dynamictags.inc.php:131 +msgid "Popular Tags From All Users" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:33 +msgid "Address" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:35 +#: ../../../templates/editbookmark.tpl.php:40 +#: ../../../templates/editprofile.tpl.php:31 +#: ../../../templates/tagrename.tpl.php:14 +#: ../../../templates/tagrename.tpl.php:19 +msgid "Required" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:45 +msgid "Add Note" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:48 +msgid "" +"You can use anchors to delimite attributes. for example: [publisher]blah[/" +"publisher] " +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:51 +msgid "Suggested anchors: " +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:63 +msgid "Private Note" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:65 +msgid "Just visible by you and your contacts." +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:73 +msgid "Comma-separated" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:77 +#: ../../../templates/tag2tagadd.tpl.php:9 +msgid "" +"Note: use \">\" to include one tag in another. e.g.: europe>france>paris" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:81 +#: ../../../templates/tag2tagadd.tpl.php:8 +msgid "Note: use \"=\" to make synonym two tags. e.g.: france=frenchcountry" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:84 +#: ../../../templates/importDelicious.tpl.php:15 +#: ../../../templates/importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:87 +#: ../../../templates/importDelicious.tpl.php:18 +#: ../../../templates/importNetscape.tpl.php:19 +msgid "Public" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:88 +msgid "Shared with Watch List" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:89 +#: ../../../templates/importDelicious.tpl.php:20 +#: ../../../templates/importNetscape.tpl.php:21 +msgid "Private" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:102 +msgid "Delete Bookmark" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:107 +msgid "edit common description" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:134 +msgid "Bookmarklet" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:140 +#, 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 "" + +#: ../../../templates/editbookmark.tpl.php:144 +#, 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 "" + +#: ../../../templates/editbookmark.tpl.php:157 +#: ../../../templates/editbookmark.tpl.php:162 +#, php-format +msgid "Post to %s" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:158 +#: ../../../templates/editbookmark.tpl.php:163 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:168 +#: ../../../templates/importDelicious.tpl.php:26 +#: ../../../templates/importNetscape.tpl.php:27 +#: ../../../templates/importStructure.tpl.php:16 +msgid "Import" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Import bookmarks from bookmark file" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:170 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "" + +#: ../../../templates/editbookmark.tpl.php:171 +msgid "Import bookmarks from del.icio.us" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:10 +msgid "Account Details" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:14 +#: ../../../templates/login.tpl.php:15 ../../../templates/password.tpl.php:10 +#: ../../../templates/profile.tpl.php:6 ../../../templates/register.tpl.php:16 +msgid "Username" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:19 +msgid "New Password" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:24 +msgid "Confirm Password" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:29 +#: ../../../templates/password.tpl.php:14 +#: ../../../templates/register.tpl.php:26 +msgid "E-mail" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:39 +#: ../../../templates/profile.tpl.php:17 +msgid "Name" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:43 +#: ../../../templates/profile.tpl.php:23 +msgid "Homepage" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:55 +#: ../../../templates/sidebar.block.tagactions.php:17 +#: ../../../templates/sidebar.block.watchstatus.php:18 +msgid "Actions" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:58 +msgid "Export bookmarks" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:60 +msgid "HTML file (for browsers)" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:61 +msgid "XML file (like del.icio.us)" +msgstr "" + +#: ../../../templates/editprofile.tpl.php:62 +msgid "CSV file (for spreadsheet tools)" +msgstr "" + +#: ../../../templates/error.404.tpl.php:5 +msgid "Not Found" +msgstr "" + +#: ../../../templates/error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "" + +#: ../../../templates/error.500.tpl.php:5 +msgid "General server error" +msgstr "" + +#: ../../../templates/error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "" + +#: ../../../templates/importDelicious.tpl.php:19 +#: ../../../templates/importNetscape.tpl.php:20 +msgid "Shared with Watchlist" +msgstr "" + +#: ../../../templates/importDelicious.tpl.php:31 +#: ../../../templates/importNetscape.tpl.php:32 +#: ../../../templates/importStructure.tpl.php:21 +msgid "Instructions" +msgstr "" + +#: ../../../templates/importDelicious.tpl.php:33 +msgid "" +"Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at " +"del.icio.us</a>" +msgstr "" + +#: ../../../templates/importDelicious.tpl.php:34 +msgid "" +"Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> " +"file to your computer" +msgstr "" + +#: ../../../templates/importDelicious.tpl.php:35 +msgid "" +"Click <kbd>Browse...</kbd> to find this file on your computer. The maximum " +"size the file can be is 1MB" +msgstr "" + +#: ../../../templates/importDelicious.tpl.php:36 +#: ../../../templates/importNetscape.tpl.php:43 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "" + +#: ../../../templates/importDelicious.tpl.php:37 +#: ../../../templates/importNetscape.tpl.php:44 +msgid "" +"Click <kbd>Import</kbd> to start importing the bookmarks; it may take a " +"minute" +msgstr "" + +#: ../../../templates/importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "" + +#: ../../../templates/importNetscape.tpl.php:37 +msgid "" +"Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "" + +#: ../../../templates/importNetscape.tpl.php:38 +msgid "" +"Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > " +"Export..." +msgstr "" + +#: ../../../templates/importNetscape.tpl.php:39 +msgid "" +"Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "" + +#: ../../../templates/importNetscape.tpl.php:42 +msgid "" +"Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. " +"The maximum size the file can be is 1MB" +msgstr "" + +#: ../../../templates/importStructure.tpl.php:24 +msgid "Create your structure into a simple text file and following this model:" +msgstr "" + +#: ../../../templates/importStructure.tpl.php:35 +msgid "" +"Then import the file. The tags and their relations will be added to your " +"profile." +msgstr "" + +#: ../../../templates/login.tpl.php:20 ../../../templates/register.tpl.php:21 +msgid "Password" +msgstr "" + +#: ../../../templates/login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "" + +#: ../../../templates/login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "" + +#: ../../../templates/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 "" + +#: ../../../templates/password.tpl.php:19 +msgid "Generate Password" +msgstr "" + +#: ../../../templates/profile.tpl.php:11 +msgid "Email" +msgstr "" + +#: ../../../templates/profile.tpl.php:28 +msgid "Member Since" +msgstr "" + +#: ../../../templates/profile.tpl.php:40 +#: ../../../templates/sidebar.block.watchlist.php:30 +msgid "Watching" +msgstr "" + +#: ../../../templates/profile.tpl.php:55 +#: ../../../templates/sidebar.block.watchlist.php:52 +msgid "Watched By" +msgstr "" + +#: ../../../templates/profile.tpl.php:68 ../../../templates/toolbar.inc.php:9 +msgid "Bookmarks" +msgstr "" + +#: ../../../templates/profile.tpl.php:69 +msgid "Go to bookmarks" +msgstr "" + +#: ../../../templates/register.tpl.php:11 +#, php-format +msgid "" +"Sign up here to create a free %s account. All the information requested " +"below is required" +msgstr "" + +#: ../../../templates/register.tpl.php:18 +msgid "" +" at least 5 characters, alphanumeric (no spaces, no dots or other special " +"ones)" +msgstr "" + +#: ../../../templates/register.tpl.php:28 +msgid " to send you your password if you forget it" +msgstr "" + +#: ../../../templates/register.tpl.php:33 +msgid "Antispam question" +msgstr "" + +#: ../../../templates/sidebar.block.linked.php:51 +msgid "Linked Tags" +msgstr "" + +#: ../../../templates/sidebar.block.linked.php:62 +#: ../../../templates/sidebar.block.menu.php:46 +msgid "Add new link" +msgstr "" + +#: ../../../templates/sidebar.block.linked.php:63 +#: ../../../templates/sidebar.block.menu.php:47 +msgid "Delete link" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:35 +#, php-format +msgid "Tags included into the tag '%s'" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:35 +msgid "Menu Tags" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "See all your tags" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:68 +msgid "all your tags" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "See all tags from this user" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:70 +msgid "all tags from this user" +msgstr "" + +#: ../../../templates/sidebar.block.menu.php:74 +msgid "See popular tags" +msgstr "" + +#: ../../../templates/sidebar.block.menu2.php:25 +msgid "Featured Menu Tags" +msgstr "" + +#: ../../../templates/sidebar.block.menu2.php:29 +msgid "This menu is composed of keywords (tags) organized by admins." +msgstr "" + +#: ../../../templates/sidebar.block.recent.php:18 +msgid "Recent Tags" +msgstr "" + +#: ../../../templates/sidebar.block.related.php:26 +msgid "Related Tags" +msgstr "" + +#: ../../../templates/sidebar.block.search.php:15 +msgid "Last Searches" +msgstr "" + +#: ../../../templates/sidebar.block.search.php:24 +msgid "Number of bookmarks for this query" +msgstr "" + +#: ../../../templates/sidebar.block.tagactions.php:28 +msgid "Create a link to another tag" +msgstr "" + +#: ../../../templates/sidebar.block.users.php:14 +msgid "New Users" +msgstr "" + +#: ../../../templates/sidebar.block.users.php:23 +#: ../../../templates/users.tpl.php:17 +msgid "bookmarks" +msgstr "" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "See all users" +msgstr "" + +#: ../../../templates/sidebar.block.users.php:30 +msgid "All users" +msgstr "" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts are mutual contacts" +msgstr "" + +#: ../../../templates/sidebar.block.watchlist.php:19 +msgid "Close contacts" +msgstr "" + +#: ../../../templates/sidebar.block.watchlist.php:36 +msgid "Add a contact..." +msgstr "" + +#: ../../../templates/sidebar.block.watchlist.php:36 +msgid "Type a username to add it to your contacts." +msgstr "" + +#: ../../../templates/sidebar.block.watchlist.php:44 +msgid "Remove this contact" +msgstr "" + +#: ../../../templates/sidebar.block.watchstatus.php:11 +msgid "Remove from Watchlist" +msgstr "" + +#: ../../../templates/sidebar.block.watchstatus.php:13 +msgid "Add to Watchlist" +msgstr "" + +#: ../../../templates/sidebar.linkedtags.inc.php:18 +msgid "Edit link" +msgstr "" + +#: ../../../templates/sidebar.linkedtags.inc.php:47 +msgid "Synonyms:" +msgstr "" + +#: ../../../templates/tag2tagadd.tpl.php:12 +msgid "Create new link:" +msgstr "" + +#: ../../../templates/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 "" + +#: ../../../templates/tag2tagadd.tpl.php:23 +#: ../../../templates/tag2tagedit.tpl.php:37 +msgid "Create" +msgstr "" + +#: ../../../templates/tag2tagadd.tpl.php:35 +#: ../../../templates/tag2tagdelete.tpl.php:27 +#: ../../../templates/tag2tagedit.tpl.php:51 +msgid "Existing links:" +msgstr "" + +#: ../../../templates/tag2tagadd.tpl.php:53 +#: ../../../templates/tag2tagdelete.tpl.php:45 +#: ../../../templates/tag2tagedit.tpl.php:69 +msgid "No links" +msgstr "" + +#: ../../../templates/tag2tagedit.tpl.php:6 +msgid "Delete the link" +msgstr "" + +#: ../../../templates/tag2tagedit.tpl.php:29 +msgid "Create new link" +msgstr "" + +#: ../../../templates/tagrename.tpl.php:12 +msgid "Old" +msgstr "" + +#: ../../../templates/tagrename.tpl.php:17 +msgid "New" +msgstr "" + +#: ../../../templates/tagrename.tpl.php:24 +msgid "Rename" +msgstr "" + +#: ../../../templates/tags.tpl.php:11 ../../../templates/users.tpl.php:9 +msgid "Alphabet" +msgstr "" + +#: ../../../templates/tags.tpl.php:12 ../../../templates/users.tpl.php:10 +msgid "Popularity" +msgstr "" + +#: ../../../templates/toolbar.inc.php:8 ../../../templates/toolbar.inc.php:26 +msgid "Home" +msgstr "" + +#: ../../../templates/toolbar.inc.php:14 +msgid "Log Out" +msgstr "" + +#: ../../../templates/toolbar.inc.php:17 +msgid "Admin" +msgstr "" + +#: ../../../templates/top.inc.php:51 +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.inc.php." +msgstr "" + +#: ../../../templates/users.tpl.php:17 +msgid "profile" +msgstr "" + +#: ../../../templates/users.tpl.php:17 +msgid "created in" +msgstr "" diff --git a/data/locales/nl_NL/LC_MESSAGES/messages.mo b/data/locales/nl_NL/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..b4b617c --- /dev/null +++ b/data/locales/nl_NL/LC_MESSAGES/messages.mo diff --git a/data/locales/nl_NL/LC_MESSAGES/messages.po b/data/locales/nl_NL/LC_MESSAGES/messages.po new file mode 100644 index 0000000..1dd6526 --- /dev/null +++ b/data/locales/nl_NL/LC_MESSAGES/messages.po @@ -0,0 +1,851 @@ +# Scuttle nl-NL Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# <alley@ilikeu2.nl> +# +msgid "" +msgstr "" +"Project-Id-Version: scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-04-29 11:17+0200\n" +"PO-Revision-Date: 2006-03-18 21:46-0800\n" +"Last-Translator: Marcus Campbell <marcus.campbell@gmail.com>\n" +"Language-Team: nl-NL <alley@ilikeu2.nl>\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "Over ons" + +#: ..\..\..\ajaxDelete.php:29 +#, fuzzy +msgid "You are not allowed to delete this bookmark" +msgstr "De bookmark kon niet worden verwijderd" + +#: ..\..\..\ajaxDelete.php:33 +#, fuzzy +msgid "Failed to delete bookmark" +msgstr "Bookmark Verwijderen" + +#: ..\..\..\alltags.php:50 +msgid "All Tags" +msgstr "Alle tags" + +#: ..\..\..\alltags.php:59 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:46 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:61 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:62 +#, php-format +msgid "User with username %s not was not found" +msgstr "" + +#: ..\..\..\bookmarks.php:71 +#, fuzzy, php-format +msgid "User with username %s was not found" +msgstr "Bookmark werd niet gevonden" + +#: ..\..\..\bookmarks.php:94 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "Je bookmarks moeten een titel en adres hebben" + +#: ..\..\..\bookmarks.php:114 +#: ..\..\..\edit.php:58 +msgid "Bookmark saved" +msgstr "Bookmark opgeslagen" + +#: ..\..\..\bookmarks.php:122 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:74 +msgid "There was an error saving your bookmark. Please try again or contact the administrator." +msgstr "" + +#: ..\..\..\bookmarks.php:160 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Voeg een bookmark toe" + +#: ..\..\..\bookmarks.php:163 +msgid "Add Bookmark" +msgstr "Bookmark toevoegen" + +#: ..\..\..\bookmarks.php:166 +msgid "You must be logged in before you can add bookmarks." +msgstr "Je moet ingelogd zijn om bookmarks toe te kunnen voegen" + +#: ..\..\..\bookmarks.php:213 +#, fuzzy +msgid "My Bookmarks" +msgstr "%s Bookmarks" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "Bookmark Bewerken" + +#: ..\..\..\edit.php:34 +#, fuzzy, php-format +msgid "Bookmark with id %s not was not found" +msgstr "Bookmark werd niet gevonden" + +#: ..\..\..\edit.php:39 +#, fuzzy +msgid "You are not allowed to edit this bookmark" +msgstr "De bookmark kon niet worden verwijderd" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "" + +#: ..\..\..\edit.php:78 +#, fuzzy +msgid "Failed to delete the bookmark" +msgstr "De bookmark kon niet worden verwijderd" + +#: ..\..\..\edit.php:88 +#: ..\..\..\templates\editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "Veranderingen opslaan" + +#: ..\..\..\functions.inc.php:92 +msgid "message_die() was called multiple times." +msgstr "" + +#: ..\..\..\functions.inc.php:104 +msgid "SQL Error" +msgstr "" + +#: ..\..\..\functions.inc.php:110 +msgid "Line" +msgstr "" + +#: ..\..\..\functions.inc.php:110 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "Bestand" + +#: ..\..\..\functions.inc.php:116 +#, fuzzy +msgid "Information" +msgstr "Instructies" + +#: ..\..\..\functions.inc.php:121 +msgid "Critical Information" +msgstr "" + +#: ..\..\..\functions.inc.php:126 +msgid "An error occured" +msgstr "" + +#: ..\..\..\functions.inc.php:129 +msgid "General Error" +msgstr "" + +#: ..\..\..\functions.inc.php:137 +msgid "An critical error occured" +msgstr "" + +#: ..\..\..\functions.inc.php:140 +msgid "Critical Error" +msgstr "" + +#: ..\..\..\functions.inc.php:149 +msgid "DEBUG MODE" +msgstr "" + +#: ..\..\..\history.php:65 +msgid "History" +msgstr "" + +#: ..\..\..\history.php:66 +#, php-format +msgid "History for %s" +msgstr "" + +#: ..\..\..\history.php:81 +msgid "Address was not found" +msgstr "" + +#: ..\..\..\import.php:41 +msgid "Could not open XML input" +msgstr "XML bestand kon niet geopend worden" + +#: ..\..\..\import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "XML fout: %s op regel %d" + +#: ..\..\..\import.php:54 +#, fuzzy +msgid "Import Bookmarks from del.icio.us" +msgstr "Importeer van del.icio.us" + +#: ..\..\..\import.php:86 +#: ..\..\..\importNetscape.php:64 +#, fuzzy +msgid "You have already submitted this bookmark." +msgstr "Je hebt deze bookmark al opgenomen" + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:72 +#, fuzzy +msgid "Bookmark imported." +msgstr "Bookmark opgeslagen" + +#: ..\..\..\importNetscape.php:81 +#, fuzzy +msgid "Import Bookmarks from Browser File" +msgstr "Importeer bookmarks uit een bookmark bestand" + +#: ..\..\..\index.php:32 +msgid "You have now logged out" +msgstr "Je bent uitgelogd" + +#: ..\..\..\index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Recente bookmarks" + +#: ..\..\..\index.php:72 +msgid "Store, share and tag your favourite links" +msgstr "" + +#: ..\..\..\index.php:73 +msgid "Recent Bookmarks" +msgstr "Recente bookmarks" + +#: ..\..\..\jsScuttle.php:22 +msgid "Are you sure?" +msgstr "" + +#: ..\..\..\jsScuttle.php:22 +msgid "Yes" +msgstr "" + +#: ..\..\..\jsScuttle.php:22 +msgid "No" +msgstr "" + +#: ..\..\..\jsScuttle.php:68 +msgid "Available" +msgstr "" + +#: ..\..\..\jsScuttle.php:71 +#, fuzzy +msgid "Not Available" +msgstr "Geen bookmarks beschikbaar" + +#: ..\..\..\login.php:38 +#, fuzzy +msgid "The details you have entered are incorrect. Please try again." +msgstr "De ingevoerde details zijn niet correct. Probeer het nog eens." + +#: ..\..\..\login.php:48 +#: ..\..\..\templates\login.tpl.php:26 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "Inloggen" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "" + +#: ..\..\..\password.php:35 +#, fuzzy +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Een gebruikersnaam, wachtwoord, naam en <abbr title=\"Electronic mail\">email</abbr> adres <em>moeten</em> worden opgegeven" + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "" + +#: ..\..\..\password.php:45 +#, fuzzy +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Een gebruikersnaam, wachtwoord, naam en <abbr title=\"Electronic mail\">email</abbr> adres <em>moeten</em> worden opgegeven" + +#: ..\..\..\password.php:53 +#, 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." + +#: ..\..\..\password.php:57 +#, fuzzy +msgid "Your new password is:" +msgstr "Bevestiging nieuw wachtwoord" + +#: ..\..\..\password.php:57 +msgid "To keep your bookmarks secure, you should change this password in your profile the next time you log in." +msgstr "" + +#: ..\..\..\password.php:60 +#, fuzzy, php-format +msgid "%s Account Information" +msgstr "Instructies" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "" + +#: ..\..\..\password.php:69 +#, fuzzy +msgid "Forgotten Password" +msgstr "Nieuw wachtwoord" + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\dynamictags.inc.php:101 +#: ..\..\..\templates\sidebar.block.common.php:9 +#: ..\..\..\templates\sidebar.block.popular.php:15 +#: ..\..\..\templates\sidebar.block.recent.php:25 +msgid "Popular Tags" +msgstr "Populaire Tags" + +#: ..\..\..\profile.php:54 +#: ..\..\..\watched.php:114 +msgid "Username was not specified" +msgstr "" + +#: ..\..\..\profile.php:60 +#, fuzzy +msgid "My Profile" +msgstr "Profiel" + +#: ..\..\..\profile.php:62 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Profile" +msgstr "Profiel" + +#: ..\..\..\profile.php:80 +#, fuzzy +msgid "Password and confirmation do not match." +msgstr "Wachtwoord en wachtwoordbevestiging komen niet overen" + +#: ..\..\..\profile.php:84 +#, fuzzy +msgid "Password must be at least 6 characters long." +msgstr "Wachtwoord dient minimaal 6 karakters lang te zijn" + +#: ..\..\..\profile.php:88 +#, fuzzy +msgid "E-mail address is not valid." +msgstr "Email adres is ongeldig" + +#: ..\..\..\profile.php:92 +msgid "An error occurred while saving your changes." +msgstr "" + +#: ..\..\..\profile.php:94 +#, fuzzy +msgid "Changes saved." +msgstr "Wijzigingen opgeslagen" + +#: ..\..\..\register.php:33 +#, fuzzy +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "Een gebruikersnaam, wachtwoord, naam en <abbr title=\"Electronic mail\">email</abbr> adres <em>moeten</em> worden opgegeven" + +#: ..\..\..\register.php:37 +msgid "This username already exists, please make another choice." +msgstr "" + +#: ..\..\..\register.php:41 +#, fuzzy +msgid "E-mail address is not valid. Please try again." +msgstr "Email adres is ongeldig" + +#: ..\..\..\register.php:50 +#, fuzzy +msgid "You have successfully registered. Enjoy!" +msgstr "De bookmark is succesvol verwijderd" + +#: ..\..\..\register.php:52 +msgid "Registration failed. Please try again." +msgstr "" + +#: ..\..\..\register.php:57 +#: ..\..\..\templates\register.tpl.php:32 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:57 +msgid "Search" +msgstr "" + +#: ..\..\..\search.inc.php:35 +#, fuzzy +msgid "this user's bookmarks" +msgstr "%s Bookmarks" + +#: ..\..\..\search.inc.php:40 +msgid "my bookmarks" +msgstr "Mijn bookmarks" + +#: ..\..\..\search.inc.php:41 +#, fuzzy +msgid "my watchlist" +msgstr "Voeg toe aan 'watch-list'" + +#: ..\..\..\search.inc.php:45 +msgid "all bookmarks" +msgstr "Alle bookmarks" + +#: ..\..\..\search.inc.php:48 +msgid "for" +msgstr "voor" + +#: ..\..\..\search.php:91 +#: ..\..\..\search.php:128 +msgid "Search Bookmarks" +msgstr "Bookmarks zoeken" + +#: ..\..\..\search.php:97 +msgid "Search Results" +msgstr "" + +#: ..\..\..\tags.php:38 +#: ..\..\..\templates\editbookmark.tpl.php:44 +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Tags" +msgstr "Tags" + +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "%s Bookmarks" + +#: ..\..\..\watch.php:84 +#, fuzzy +msgid "User removed from your watchlist" +msgstr "Van 'watch-list' verwijderen" + +#: ..\..\..\watch.php:86 +#, fuzzy +msgid "User added to your watchlist" +msgstr "Voeg toe aan 'watch-list'" + +#: ..\..\..\watched.php:105 +#, fuzzy +msgid "My Watchlist" +msgstr "Watch List" + +#: ..\..\..\watched.php:107 +#: ..\..\..\templates\sidebar.block.profile.php:14 +#: ..\..\..\templates\toolbar.inc.php:12 +#, fuzzy +msgid "Watchlist" +msgstr "Watch List" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "" + +#: ..\..\..\templates\about.tpl.php:7 +#, fuzzy +msgid "<strong>Share</strong> 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" + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "" + +#: ..\..\..\templates\about.tpl.php:9 +#, fuzzy, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "<a href=\"register.php\">Registreer nu</a> om je eigen bookmarks op te slaan" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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 "" + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 "" + +#: ..\..\..\templates\bookmarks.tpl.php:17 +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Sort by:" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:18 +msgid "Date" +msgstr "Datum" + +#: ..\..\..\templates\bookmarks.tpl.php:19 +#: ..\..\..\templates\editbookmark.tpl.php:34 +msgid "Title" +msgstr "Titel" + +#: ..\..\..\templates\bookmarks.tpl.php:23 +msgid "URL" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Edit" +msgstr "Bewerken" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Delete" +msgstr "Verwijderen" + +#: ..\..\..\templates\bookmarks.tpl.php:66 +msgid "by" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:78 +#, php-format +msgid " and %s1 other%s" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:81 +#, php-format +msgid " and %2$s%1$s others%3$s" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:90 +msgid "Copy" +msgstr "Kopiëren" + +#: ..\..\..\templates\bookmarks.tpl.php:136 +#: ..\..\..\templates\bookmarks.tpl.php:142 +msgid "First" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:137 +#: ..\..\..\templates\bookmarks.tpl.php:143 +msgid "Previous" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:150 +#: ..\..\..\templates\bookmarks.tpl.php:153 +msgid "Next" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:151 +#: ..\..\..\templates\bookmarks.tpl.php:154 +msgid "Last" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:156 +#, php-format +msgid "Page %d of %d" +msgstr "Pagina %d van %d" + +#: ..\..\..\templates\bookmarks.tpl.php:160 +msgid "No bookmarks available" +msgstr "Geen bookmarks beschikbaar" + +#: ..\..\..\templates\dynamictags.inc.php:108 +#: ..\..\..\templates\sidebar.block.common.php:15 +#: ..\..\..\templates\sidebar.block.popular.php:21 +#: ..\..\..\templates\sidebar.block.recent.php:20 +#: ..\..\..\templates\tags.tpl.php:16 +#, fuzzy +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "%s Bookmarks" +msgstr[1] "%s Bookmarks" + +#: ..\..\..\templates\editbookmark.tpl.php:29 +msgid "Address" +msgstr "Adres" + +#: ..\..\..\templates\editbookmark.tpl.php:31 +#: ..\..\..\templates\editbookmark.tpl.php:36 +#: ..\..\..\templates\editprofile.tpl.php:31 +msgid "Required" +msgstr "Verplicht" + +#: ..\..\..\templates\editbookmark.tpl.php:39 +#: ..\..\..\templates\editprofile.tpl.php:47 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "Omschrijving" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "Door comma's gescheiden" + +#: ..\..\..\templates\editbookmark.tpl.php:49 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "Privacy" + +#: ..\..\..\templates\editbookmark.tpl.php:52 +#: ..\..\..\templates\importDelicious.tpl.php:18 +#: ..\..\..\templates\importNetscape.tpl.php:19 +msgid "Public" +msgstr "Publiekelijk" + +#: ..\..\..\templates\editbookmark.tpl.php:53 +#: ..\..\..\templates\importDelicious.tpl.php:19 +#: ..\..\..\templates\importNetscape.tpl.php:20 +msgid "Shared with Watch List" +msgstr "Gedeeld met 'watch list'" + +#: ..\..\..\templates\editbookmark.tpl.php:54 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Private" +msgstr "Priv&egrav;" + +#: ..\..\..\templates\editbookmark.tpl.php:66 +msgid "Delete Bookmark" +msgstr "Bookmark Verwijderen" + +#: ..\..\..\templates\editbookmark.tpl.php:93 +msgid "Bookmarklet" +msgstr "Bookmarklet" + +#: ..\..\..\templates\editbookmark.tpl.php:94 +#, 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" + +#: ..\..\..\templates\editbookmark.tpl.php:106 +#, php-format +msgid "Post to %s" +msgstr "Plaats op %s" + +#: ..\..\..\templates\editbookmark.tpl.php:107 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Plaats op %s (pop-up)" + +#: ..\..\..\templates\editbookmark.tpl.php:111 +#: ..\..\..\templates\importDelicious.tpl.php:26 +#: ..\..\..\templates\importNetscape.tpl.php:27 +msgid "Import" +msgstr "Importeren" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Import bookmarks from bookmark file" +msgstr "Importeer bookmarks uit een bookmark bestand" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox en Netscape" + +#: ..\..\..\templates\editbookmark.tpl.php:114 +msgid "Import bookmarks from del.icio.us" +msgstr "Importeer van del.icio.us" + +#: ..\..\..\templates\editprofile.tpl.php:10 +msgid "Account Details" +msgstr "" + +#: ..\..\..\templates\editprofile.tpl.php:14 +#: ..\..\..\templates\login.tpl.php:15 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:16 +msgid "Username" +msgstr "Gebruikersnaam" + +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "New Password" +msgstr "Nieuw wachtwoord" + +#: ..\..\..\templates\editprofile.tpl.php:24 +#, fuzzy +msgid "Confirm Password" +msgstr "Bevestiging nieuw wachtwoord" + +#: ..\..\..\templates\editprofile.tpl.php:29 +#: ..\..\..\templates\register.tpl.php:26 +msgid "E-mail" +msgstr "Email" + +#: ..\..\..\templates\editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "" + +#: ..\..\..\templates\editprofile.tpl.php:39 +#: ..\..\..\templates\profile.tpl.php:12 +msgid "Name" +msgstr "Naam" + +#: ..\..\..\templates\editprofile.tpl.php:43 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "Homepage" + +#: ..\..\..\templates\error.404.tpl.php:5 +#, fuzzy +msgid "Not Found" +msgstr "Gebruiker werd niet gevonden" + +#: ..\..\..\templates\error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "" + +#: ..\..\..\templates\importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Log in op de <a href=\"http://del.icio.us/api/posts/all\">export pagina op del.icio.us</a>" + +#: ..\..\..\templates\importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Sla het resulterende <abbr title=\"Extensible Markup Language\">XML</abbr> bestand op, op de locale computer" + +#: ..\..\..\templates\importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Klik vervolgens op <kbd>Bladeren...</kbd> om dit opgeslagen bestand op de computer te vinden. De maximum toegelaten bestandsgrootte op onze server is 1MB" + +#: ..\..\..\templates\importDelicious.tpl.php:36 +#: ..\..\..\templates\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" + +#: ..\..\..\templates\importDelicious.tpl.php:37 +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "Klik op <kbd>Importeren</kbd> om het importeren te starten. Dit kan enkele minuten duren." + +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "Instructies" + +#: ..\..\..\templates\importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "Bookmarks exporteren vanuit een browser" + +#: ..\..\..\templates\importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" + +#: ..\..\..\templates\importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." + +#: ..\..\..\templates\importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Klik vervolgens op <kbd>Bladeren...</kbd> om het opgeslagen bookmark bestand op de computer te vinden. De maximum toegelaten bestandsgrootte op onze server is 1MB" + +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\register.tpl.php:21 +msgid "Password" +msgstr "Wachtwoord" + +#: ..\..\..\templates\login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "Wachtwoord de komende 2 weken niet nog een keer vragen" + +#: ..\..\..\templates\login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "" + +#: ..\..\..\templates\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 "" + +#: ..\..\..\templates\password.tpl.php:14 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "" + +#: ..\..\..\templates\password.tpl.php:19 +#, fuzzy +msgid "Generate Password" +msgstr "Nieuw wachtwoord" + +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "Lid sinds" + +#: ..\..\..\templates\profile.tpl.php:35 +#: ..\..\..\templates\sidebar.block.watchlist.php:8 +#, fuzzy +msgid "Watching" +msgstr "Watch List" + +#: ..\..\..\templates\profile.tpl.php:50 +#, fuzzy +msgid "Watched By" +msgstr "Watched" + +#: ..\..\..\templates\register.tpl.php:11 +#, php-format +msgid "Sign up here to create a free %s account. All the information requested below is required" +msgstr "" + +#: ..\..\..\templates\rss.tpl.php:9 +#, fuzzy, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Recente bookmarks" + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +#, fuzzy +msgid "No bookmarks found" +msgstr "Geen bookmarks beschikbaar" + +#: ..\..\..\templates\sidebar.block.recent.php:15 +#, fuzzy +msgid "Recent Tags" +msgstr "Gerelateerde Tags" + +#: ..\..\..\templates\sidebar.block.related.php:15 +msgid "Related Tags" +msgstr "Gerelateerde Tags" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "Van 'watch-list' verwijderen" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "Voeg toe aan 'watch-list'" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:17 +#, fuzzy +msgid "Actions" +msgstr "Instructies" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Alphabet" +msgstr "" + +#: ..\..\..\templates\tags.tpl.php:9 +#, fuzzy +msgid "Popularity" +msgstr "Populaire Tags" + +#: ..\..\..\templates\toolbar.inc.php:11 +#, fuzzy +msgid "Bookmarks" +msgstr "%s Bookmarks" + +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "" + diff --git a/data/locales/pt_BR/LC_MESSAGES/messages.mo b/data/locales/pt_BR/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..4faf24a --- /dev/null +++ b/data/locales/pt_BR/LC_MESSAGES/messages.mo diff --git a/data/locales/pt_BR/LC_MESSAGES/messages.po b/data/locales/pt_BR/LC_MESSAGES/messages.po new file mode 100644 index 0000000..36df105 --- /dev/null +++ b/data/locales/pt_BR/LC_MESSAGES/messages.po @@ -0,0 +1,814 @@ +# 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) <metal@alucinados.com>, 2006. +# +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-04-29 11:17+0200\n" +"PO-Revision-Date: 2006-04-06 17:26-0300\n" +"Last-Translator: Daniel duende Carvalho <daniel.carvalho@gmail.com>\n" +"Language-Team: Portuguese/Brazil\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\toolbar.inc.php:14 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "Sobre" + +#: ..\..\..\ajaxDelete.php:28 +msgid "You are not allowed to delete this bookmark" +msgstr "Vocรช nรฃo tem permissรฃo para apagar este bookmark" + +#: ..\..\..\ajaxDelete.php:32 +msgid "Failed to delete bookmark" +msgstr "Falha ao apagar bookmark" + +#: ..\..\..\alltags.php:48 +msgid "All Tags" +msgstr "Todos os Tags" + +#: ..\..\..\alltags.php:57 +#: ..\..\..\bookmarks.php:64 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:39 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:55 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:56 +#, php-format +msgid "User with username %s not was not found" +msgstr "O Nome de Usuรกrio %s nรฃo foi encontrado" + +#: ..\..\..\bookmarks.php:87 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "O seu bookmark deve possuir um tรญtulo e um endereรงo" + +#: ..\..\..\bookmarks.php:104 +msgid "Bookmark saved" +msgstr "Bookmark gravado" + +#: ..\..\..\bookmarks.php:106 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:71 +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." + +#: ..\..\..\bookmarks.php:143 +#: ..\..\..\toolbar.inc.php:9 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "Adicione um Bookmark" + +#: ..\..\..\bookmarks.php:144 +msgid "Add Bookmark" +msgstr "Adicionar Bookmark" + +#: ..\..\..\bookmarks.php:147 +msgid "You must be logged in before you can add bookmarks." +msgstr "Vocรช deve dar entrada no sistema para poder adicionar bookmarks" + +#: ..\..\..\bookmarks.php:196 +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "%s Bookmarks" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "Editar Bookmark" + +#: ..\..\..\edit.php:34 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "O Bookmark com a identificaรงรฃo %s nรฃo foi encontrado" + +#: ..\..\..\edit.php:39 +msgid "You are not allowed to edit this bookmark" +msgstr "Vocรช nรฃo tem permissรฃo para editar este bookmark" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "Erro durante a gravaรงรฃo do seu bookmark" + +#: ..\..\..\edit.php:73 +msgid "Failed to delete the bookmark" +msgstr "Falha ao apagar o bookmark" + +#: ..\..\..\edit.php:80 +#: ..\..\..\templates\editprofile.tpl.php:59 +msgid "Save Changes" +msgstr "Salva Alteraรงรตes" + +#: ..\..\..\functions.inc.php:98 +msgid "message_die() was called multiple times." +msgstr "message_die() foi chamada mรบltiplas vezes" + +#: ..\..\..\functions.inc.php:110 +msgid "SQL Error" +msgstr "Erro de SQL" + +#: ..\..\..\functions.inc.php:116 +msgid "Line" +msgstr "Linha" + +#: ..\..\..\functions.inc.php:116 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "Arquivo" + +#: ..\..\..\functions.inc.php:122 +msgid "Information" +msgstr "Informaรงรตes" + +#: ..\..\..\functions.inc.php:127 +msgid "Critical Information" +msgstr "Informaรงรตes Importantes" + +#: ..\..\..\functions.inc.php:132 +msgid "An error occured" +msgstr "Um erro ocorreu" + +#: ..\..\..\functions.inc.php:135 +msgid "General Error" +msgstr "Erro Geral" + +#: ..\..\..\functions.inc.php:143 +msgid "An critical error occured" +msgstr "Um erro crรญtico ocorreu" + +#: ..\..\..\functions.inc.php:146 +msgid "Critical Error" +msgstr "Erro Crรญtico" + +#: ..\..\..\functions.inc.php:155 +msgid "DEBUG MODE" +msgstr "MODO DEBUG" + +#: ..\..\..\import.php:39 +msgid "Could not open XML input" +msgstr "Nรฃo foi possรญvel abrir a entrada XML" + +#: ..\..\..\import.php:43 +#, php-format +msgid "XML error: %s at line %d" +msgstr "Erro de XML: %s na linha %d" + +#: ..\..\..\import.php:52 +msgid "Import Bookmarks from del.icio.us" +msgstr "Importar Bookmarks do del.icio.us" + +#: ..\..\..\import.php:84 +#: ..\..\..\importNetscape.php:62 +msgid "You have already submitted this bookmark." +msgstr "Vocรช jรก submeteu este Bookmark." + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:69 +msgid "Bookmark imported." +msgstr "Bookmark importado." + +#: ..\..\..\importNetscape.php:77 +msgid "Import Bookmarks from Browser File" +msgstr "Importar Bookmarks (Favoritos) do Arquivo do Navegador" + +#: ..\..\..\index.php:31 +msgid "You have now logged out" +msgstr "Vocรช saiu do sistema" + +#: ..\..\..\index.php:38 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: Bookmarks recentes" + +#: ..\..\..\index.php:71 +msgid "Online Bookmarks Manager" +msgstr "Gerenciador Online de Bookmarks" + +#: ..\..\..\index.php:72 +msgid "Recent Bookmarks" +msgstr "Bookmarks Recentes" + +#: ..\..\..\jsScuttle.php:42 +msgid "Are you sure?" +msgstr "Vocรช tem certeza disso!?" + +#: ..\..\..\jsScuttle.php:42 +msgid "Yes" +msgstr "Sim" + +#: ..\..\..\jsScuttle.php:42 +msgid "No" +msgstr "Nรฃo" + +#: ..\..\..\login.php:36 +msgid "The details you have entered are incorrect. Please try again." +msgstr "Os detalhes submetidos por vocรช estรฃo incorretos. Por favor tente novamente." + +#: ..\..\..\login.php:53 +msgid "You are already logged in." +msgstr "Vocรช jรก entrou no sistema." + +#: ..\..\..\login.php:55 +#: ..\..\..\toolbar.inc.php:14 +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "Entrar no sistema" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "Vocรช tem que digitar o seu nome de usuรกrio" + +#: ..\..\..\password.php:35 +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Vocรช tem que digitar o seu endereรงo de <abbr title=\"electronic mail\">e-mail</abbr>." + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "Nenhum resultado encontrado pra este nome de usuรกrio" + +#: ..\..\..\password.php:45 +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Nenhum resultado encontrado para esta combinaรงรฃo de nome de usuรกrio e endereรงo de <abbr title=\"electronic mail\">e-mail</abbr> " + +#: ..\..\..\password.php:53 +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." + +#: ..\..\..\password.php:57 +msgid "Your new password is:" +msgstr "A sua nova senha รฉ:" + +#: ..\..\..\password.php:57 +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." + +#: ..\..\..\password.php:60 +#, php-format +msgid "%s Account Information" +msgstr "Informaรงรตes da Conta de %s" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "Nova senha gerada e enviada para %s" + +#: ..\..\..\password.php:69 +msgid "Forgotten Password" +msgstr "Esquecรญ a Senha" + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\sidebar.block.popular.php:13 +msgid "Popular Tags" +msgstr "Tags populares" + +#: ..\..\..\profile.php:47 +#: ..\..\..\templates\sidebar.block.profile.php:11 +msgid "Profile" +msgstr "Perfil" + +#: ..\..\..\profile.php:49 +msgid "Username was not specified" +msgstr "O nome de usuรกrio nรฃo foi especificado" + +#: ..\..\..\profile.php:57 +#, php-format +msgid "%s Profile" +msgstr "Perfil de %s" + +#: ..\..\..\profile.php:71 +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." + +#: ..\..\..\profile.php:75 +msgid "Password and confirmation do not match." +msgstr "A senha digitada nรฃo รฉ idรชntica ร quela digitada no campo de confirmaรงรฃo de senha." + +#: ..\..\..\profile.php:79 +msgid "Password must be at least 6 characters long." +msgstr "A senha deve ter um mรญnimo de 6 caracteres." + +#: ..\..\..\profile.php:87 +msgid "E-mail address is not valid." +msgstr "O endereรงo de e-mail fornecido nรฃo รฉ vรกlido." + +#: ..\..\..\profile.php:91 +msgid "An error occurred while saving your changes." +msgstr "Um erro ocorreu durante a gravaรงรฃo das suas alteraรงรตes." + +#: ..\..\..\profile.php:93 +msgid "Changes saved." +msgstr "Alteraรงรตes gravadas." + +#: ..\..\..\register.php:30 +msgid "You <em>must</em> enter a username, password, name and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "Vocรช <em>deve</em> digitar um nome de usuรกrio, uma senha, seu nome e endereรงo de <abbr title=\"electronic mail\">e-mail</abbr>." + +#: ..\..\..\register.php:34 +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." + +#: ..\..\..\register.php:38 +msgid "E-mail address is not valid. Please try again." +msgstr "Endereรงo de email invรกlido. Por favor tente novamente." + +#: ..\..\..\register.php:46 +msgid "You have successfully registered. Enjoy!" +msgstr "Vocรช completou o seu registro. Agora divirta-se!" + +#: ..\..\..\register.php:48 +msgid "Registration failed. Please try again." +msgstr "Falha ao registrar-se. Por favor tente novamente." + +#: ..\..\..\register.php:52 +#: ..\..\..\toolbar.inc.php:14 +#: ..\..\..\templates\register.tpl.php:27 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "Registre-se" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:58 +msgid "Search" +msgstr "Busca" + +#: ..\..\..\search.inc.php:36 +#, php-format +msgid "%s bookmarks" +msgstr "%s bookmarks" + +#: ..\..\..\search.inc.php:41 +msgid "my bookmarks" +msgstr "meus bookmarks" + +#: ..\..\..\search.inc.php:42 +msgid "my watched bookmarks" +msgstr "meus bookmarks observados" + +#: ..\..\..\search.inc.php:46 +msgid "all bookmarks" +msgstr "todos os bookmarks" + +#: ..\..\..\search.inc.php:49 +msgid "for" +msgstr "por" + +#: ..\..\..\search.php:110 +#: ..\..\..\search.php:114 +msgid "Search Bookmarks" +msgstr "Busca Bookmarks" + +#: ..\..\..\search.php:112 +msgid "Search Results" +msgstr "Resultados da Busca" + +#: ..\..\..\toolbar.inc.php:9 +msgid "Your Bookmarks" +msgstr "Seus Bookmarks" + +#: ..\..\..\toolbar.inc.php:9 +msgid "Watched Bookmarks" +msgstr "Bookmarks Observados" + +#: ..\..\..\toolbar.inc.php:9 +msgid "All Bookmarks" +msgstr "Todos os Bookmarks" + +#: ..\..\..\toolbar.inc.php:9 +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "Sair do Sistema" + +#: ..\..\..\watch.php:84 +msgid "User removed from your watchlist" +msgstr "Usuรกrio removido da sua lista de observaรงรฃo" + +#: ..\..\..\watch.php:86 +msgid "User added to your watchlist" +msgstr "Usuรกrio adicionado ร sua lista de observaรงรฃo" + +#: ..\..\..\watched.php:64 +#: ..\..\..\watched.php:101 +#, php-format +msgid "%s Watched Bookmarks" +msgstr "%s Bookmarks Observados" + +#: ..\..\..\services\userservice.php:93 +msgid "Your" +msgstr "Seu" + +#: ..\..\..\services\userservice.php:101 +#, php-format +msgid "%s'" +msgstr "" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "<strong>Agregue</strong> todos os seus links favoritos em um sรณ local, acessรญvel de qualquer lugar." + +#: ..\..\..\templates\about.tpl.php:7 +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "<strong>Compartilhe</strong> seus bookmarks com todo o mundo, com amigos em sua lista de observaรงรฃo ou guarde-os apenas para vocรช." + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "<strong>Identifique</strong> seus bookmarks com tantos tags quanto quiser, em vez de lutar contra pastas e diretรณrios." + +#: ..\..\..\templates\about.tpl.php:9 +#, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "<strong><a href=\"register.php\">Registre-se agora</a></strong> para comeรงar a usar o %s!" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "Coisas de Geek" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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 <a href=\"http://sourceforge.net/projects/scuttle/\">um projeto open source</a> licenciado sob a <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public Licence</a>. 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." + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 <a href=\"http://del.icio.us/doc/api\"><abbr title=\"Application Programming Interface\">API</abbr> do del.icio.us</a>. 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." + +#: ..\..\..\templates\bookmarks.tpl.php:10 +#: ..\..\..\templates\tags.tpl.php:6 +msgid "Sort by:" +msgstr "Ordenar por:" + +#: ..\..\..\templates\bookmarks.tpl.php:11 +msgid "Date" +msgstr "Data" + +#: ..\..\..\templates\bookmarks.tpl.php:12 +#: ..\..\..\templates\editbookmark.tpl.php:28 +msgid "Title" +msgstr "Tรญtulo" + +#: ..\..\..\templates\bookmarks.tpl.php:13 +msgid "URL" +msgstr "URL" + +#: ..\..\..\templates\bookmarks.tpl.php:52 +msgid "Edit" +msgstr "Editar" + +#: ..\..\..\templates\bookmarks.tpl.php:52 +msgid "Delete" +msgstr "Apagar" + +#: ..\..\..\templates\bookmarks.tpl.php:67 +msgid " and 1 other" +msgstr "e 1 outro" + +#: ..\..\..\templates\bookmarks.tpl.php:70 +#, php-format +msgid " and %s others" +msgstr "e %s outros" + +#: ..\..\..\templates\bookmarks.tpl.php:73 +msgid "Copy" +msgstr "Copiar" + +#: ..\..\..\templates\bookmarks.tpl.php:121 +#: ..\..\..\templates\bookmarks.tpl.php:125 +msgid "Previous" +msgstr "Anterior" + +#: ..\..\..\templates\bookmarks.tpl.php:132 +#: ..\..\..\templates\bookmarks.tpl.php:134 +msgid "Next" +msgstr "Prรณximo" + +#: ..\..\..\templates\bookmarks.tpl.php:135 +#, php-format +msgid "Page %d of %d" +msgstr "Pรกgina %d de %d" + +#: ..\..\..\templates\bookmarks.tpl.php:145 +msgid "No bookmarks available" +msgstr "Nenhum bookmark disponรญvel" + +#: ..\..\..\templates\editbookmark.tpl.php:23 +msgid "Address" +msgstr "Endereรงo" + +#: ..\..\..\templates\editbookmark.tpl.php:25 +#: ..\..\..\templates\editbookmark.tpl.php:30 +#: ..\..\..\templates\editprofile.tpl.php:17 +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "Required" +msgstr "Requerido" + +#: ..\..\..\templates\editbookmark.tpl.php:33 +#: ..\..\..\templates\editprofile.tpl.php:24 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "Descriรงรฃo" + +#: ..\..\..\templates\editbookmark.tpl.php:38 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Tags" +msgstr "Tags (Rรณtulos)" + +#: ..\..\..\templates\editbookmark.tpl.php:40 +#: ..\..\..\templates\importDelicious.tpl.php:17 +#: ..\..\..\templates\importNetscape.tpl.php:18 +msgid "Comma-separated" +msgstr "Separados por vรญrgula" + +#: ..\..\..\templates\editbookmark.tpl.php:43 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Privacy" +msgstr "Privacidade" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +#: ..\..\..\templates\importDelicious.tpl.php:23 +#: ..\..\..\templates\importNetscape.tpl.php:24 +msgid "Public" +msgstr "Pรบblico" + +#: ..\..\..\templates\editbookmark.tpl.php:47 +#: ..\..\..\templates\importDelicious.tpl.php:24 +#: ..\..\..\templates\importNetscape.tpl.php:25 +msgid "Shared with Watch List" +msgstr "Partilhado com a sua Lista de Observaรงรฃo" + +#: ..\..\..\templates\editbookmark.tpl.php:48 +#: ..\..\..\templates\importDelicious.tpl.php:25 +#: ..\..\..\templates\importNetscape.tpl.php:26 +msgid "Private" +msgstr "Privado" + +#: ..\..\..\templates\editbookmark.tpl.php:60 +msgid "Delete Bookmark" +msgstr "Apagar Bookmark" + +#: ..\..\..\templates\editbookmark.tpl.php:74 +msgid "Bookmarklet" +msgstr "Gerador de Bookmarks" + +#: ..\..\..\templates\editbookmark.tpl.php:75 +#, 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" + +#: ..\..\..\templates\editbookmark.tpl.php:77 +#, php-format +msgid "Post to %s" +msgstr "Postar para %s" + +#: ..\..\..\templates\editbookmark.tpl.php:78 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "Postar para %s (versรฃo Pop-Up)" + +#: ..\..\..\templates\editbookmark.tpl.php:81 +#: ..\..\..\templates\importDelicious.tpl.php:31 +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Import" +msgstr "Importar" + +#: ..\..\..\templates\editbookmark.tpl.php:83 +msgid "Import bookmarks from bookmark file" +msgstr "Importar bookmarks do arquivo de bookmarks" + +#: ..\..\..\templates\editbookmark.tpl.php:83 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox and Netscape" + +#: ..\..\..\templates\editbookmark.tpl.php:84 +msgid "Import bookmarks from del.icio.us" +msgstr "Importar bookmarks do del.icio.us" + +#: ..\..\..\templates\editprofile.tpl.php:10 +#: ..\..\..\templates\login.tpl.php:9 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:10 +msgid "Username" +msgstr "Nome de Usuรกrio" + +#: ..\..\..\templates\editprofile.tpl.php:12 +msgid "New Password" +msgstr "Nova Senha" + +#: ..\..\..\templates\editprofile.tpl.php:14 +msgid "Confirm New Password" +msgstr "Confirme a Nova Senha" + +#: ..\..\..\templates\editprofile.tpl.php:16 +#: ..\..\..\templates\profile.tpl.php:12 +#: ..\..\..\templates\register.tpl.php:18 +msgid "Name" +msgstr "Nome" + +#: ..\..\..\templates\editprofile.tpl.php:18 +msgid "E-mail" +msgstr "E-mail" + +#: ..\..\..\templates\editprofile.tpl.php:20 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "Pรกgina na Web" + +#: ..\..\..\templates\editprofile.tpl.php:22 +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "Membro Desde" + +#: ..\..\..\templates\editprofile.tpl.php:30 +#: ..\..\..\templates\profile.tpl.php:35 +msgid "Watch List" +msgstr "Lista de Observaรงรฃo" + +#: ..\..\..\templates\editprofile.tpl.php:45 +#: ..\..\..\templates\profile.tpl.php:50 +msgid "Watched By" +msgstr "Observado Por" + +#: ..\..\..\templates\error.404.tpl.php:5 +msgid "Not Found" +msgstr "Nรฃo Encontrado" + +#: ..\..\..\templates\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" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "Erro Geral de servidor" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "A URL requisitada nรฃo pรดde ser processada" + +#: ..\..\..\templates\importDelicious.tpl.php:38 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "Entrar na <a href=\"http://del.icio.us/api/posts/all\">pรกgina de exportaรงรฃo do del.icio.us</a>" + +#: ..\..\..\templates\importDelicious.tpl.php:39 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "Salvar o arquivo <abbr title=\"Extensible Markup Language\">XML</abbr> resultante em seu computador." + +#: ..\..\..\templates\importDelicious.tpl.php:40 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "Clique em <kbd>Navegar...</kbd>para encontrar este arquivo no seu computador. O tamanho mรกximo que o arquivo pode ter รฉ 1MB" + +#: ..\..\..\templates\importDelicious.tpl.php:41 +#: ..\..\..\templates\importNetscape.tpl.php:48 +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" + +#: ..\..\..\templates\importDelicious.tpl.php:42 +#: ..\..\..\templates\importNetscape.tpl.php:49 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "Selecione o status de privacidade padrรฃo para os seus bookmarks importados" + +#: ..\..\..\templates\importDelicious.tpl.php:43 +#: ..\..\..\templates\importNetscape.tpl.php:50 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "Clique em <kbd>Importar</kbd> para comeรงar a importar os bookmarks. Isso pode levar um minutinho..." + +#: ..\..\..\templates\importNetscape.tpl.php:37 +msgid "Instructions" +msgstr "Instruรงรตes" + +#: ..\..\..\templates\importNetscape.tpl.php:40 +msgid "Export your bookmarks from your browser to a file" +msgstr "Exporte seus bookmarks de seu navegador para um arquivo" + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>Arquivo > Importar e Exportar... > Exportar Favoritos" + +#: ..\..\..\templates\importNetscape.tpl.php:43 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>Bookmarks > Gerenciar Bookmarks... > Arquivo > Exportar..." + +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>Bookmarks > Gerenciar Bookmarks... > Ferramentas > Exportar..." + +#: ..\..\..\templates\importNetscape.tpl.php:47 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "Clique <kbd>Procurar...</kbd> para encontrar o arquivo de bookmarks gravado em seu computador. O tamanho mรกximo permitido para o arquivo รฉ 1MB" + +#: ..\..\..\templates\login.tpl.php:14 +#: ..\..\..\templates\register.tpl.php:14 +msgid "Password" +msgstr "Senha" + +#: ..\..\..\templates\login.tpl.php:16 +msgid "Don't ask for my password for 2 weeks" +msgstr "Nรฃo pergunte minha senha por duas semanas" + +#: ..\..\..\templates\login.tpl.php:24 +msgid "Forgotten your password?" +msgstr "Esqueceu a sua senha?" + +#: ..\..\..\templates\myTagsDynamicInsert.inc.php:34 +#: ..\..\..\templates\myTagsDynamicInsert.inc.php:65 +msgid "My Tags" +msgstr "Minhas Tags" + +#: ..\..\..\templates\myTagsDynamicInsert.inc.php:44 +msgid "Show" +msgstr "Mostrar" + +#: ..\..\..\templates\myTagsDynamicInsert.inc.php:57 +msgid "System Popular Tags" +msgstr "Tags Populares Gerais" + +#: ..\..\..\templates\myTagsDynamicInsert.inc.php:70 +msgid "My Popular Tags" +msgstr "Minhas Tags Populares" + +#: ..\..\..\templates\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." + +#: ..\..\..\templates\password.tpl.php:14 +#: ..\..\..\templates\register.tpl.php:22 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "<abbr title=\"Correio Eletrรดnico\">E-mail</abbr>" + +#: ..\..\..\templates\password.tpl.php:19 +msgid "Generate Password" +msgstr "Gerar Senha" + +#: ..\..\..\templates\register.tpl.php:5 +#, 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." + +#: ..\..\..\templates\rss.tpl.php:9 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "Bookmarks recentemente postados para %s" + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +msgid "No bookmarks found" +msgstr "Nenhum bookmark encontrado" + +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Watched" +msgstr "Observado" + +#: ..\..\..\templates\sidebar.block.recent.php:13 +msgid "Recent Tags" +msgstr "Tags Recentes" + +#: ..\..\..\templates\sidebar.block.related.php:14 +msgid "Related Tags" +msgstr "Tags Relacionadas" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "Remover da Lista de Observaรงรฃo" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "Adicionar ร Lista de Observaรงรฃo" + +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Alphabet" +msgstr "Alfabeto" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Popularity" +msgstr "Popularidade" + +#: ..\..\..\templates\tags.tpl.php:15 +msgid "bookmark" +msgstr "bookmark" + +#: ..\..\..\templates\toolbar.inc.php:10 +msgid "My Bookmarks" +msgstr "Meus Bookmarks" + +#: ..\..\..\templates\toolbar.inc.php:11 +msgid "My Watched" +msgstr "Meus Observados" + +#: ..\..\..\templates\toolbar.inc.php:12 +msgid "All Recent" +msgstr "Todos os Recentes" + diff --git a/data/locales/zh_CN/LC_MESSAGES/messages.mo b/data/locales/zh_CN/LC_MESSAGES/messages.mo Binary files differnew file mode 100644 index 0000000..2bdc82e --- /dev/null +++ b/data/locales/zh_CN/LC_MESSAGES/messages.mo diff --git a/data/locales/zh_CN/LC_MESSAGES/messages.po b/data/locales/zh_CN/LC_MESSAGES/messages.po new file mode 100644 index 0000000..b6aadcb --- /dev/null +++ b/data/locales/zh_CN/LC_MESSAGES/messages.po @@ -0,0 +1,827 @@ +# Scuttle zh-CN Translation +# Copyright (C) 2005 - 2006 Scuttle project +# This file is distributed under the same license as the Scuttle package. +# Yanni Zheng <ynzheng@gmail.com> +# +msgid "" +msgstr "" +"Project-Id-Version: Scuttle\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-04-29 11:17+0200\n" +"PO-Revision-Date: 2006-03-18 21:45-0800\n" +"Last-Translator: Marcus Campbell <marcus.campbell@gmail.com>\n" +"Language-Team: zh-CN <ynzheng@gmail.com>\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" + +#: ..\..\..\about.php:25 +#: ..\..\..\templates\toolbar.inc.php:24 +msgid "About" +msgstr "ๅ
ณไบ" + +#: ..\..\..\ajaxDelete.php:29 +msgid "You are not allowed to delete this bookmark" +msgstr "ๆจๆฒกๆๆ้ๅ ้คๆญคๆกไนฆ็ญพ" + +#: ..\..\..\ajaxDelete.php:33 +msgid "Failed to delete bookmark" +msgstr "ๅ ้คไนฆ็ญพๅคฑ่ดฅ" + +#: ..\..\..\alltags.php:50 +msgid "All Tags" +msgstr "ๆๆๆ ็ญพ" + +#: ..\..\..\alltags.php:59 +#: ..\..\..\populartags.php:63 +#: ..\..\..\profile.php:46 +#: ..\..\..\rss.php:55 +#: ..\..\..\search.php:61 +#: ..\..\..\watch.php:35 +#: ..\..\..\watched.php:62 +#, php-format +msgid "User with username %s not was not found" +msgstr "ๆชๅ็ฐไปฅ %s ไธบ็จๆทๅ็็จๆท" + +#: ..\..\..\bookmarks.php:71 +#, fuzzy, php-format +msgid "User with username %s was not found" +msgstr "ๆชๅ็ฐไปฅ %s ไธบ็จๆทๅ็็จๆท" + +#: ..\..\..\bookmarks.php:94 +#: ..\..\..\edit.php:44 +msgid "Your bookmark must have a title and an address" +msgstr "ๆฏๆกไนฆ็ญพๅฟ
้กปๅ
ๅซๆ ้ขๅ็ฝๅ" + +#: ..\..\..\bookmarks.php:114 +#: ..\..\..\edit.php:58 +msgid "Bookmark saved" +msgstr "ๅฝๅ
ฅไนฆ็ญพๅทฒ่ขซๆๅไฟๅญ" + +#: ..\..\..\bookmarks.php:122 +#: ..\..\..\import.php:99 +#: ..\..\..\importNetscape.php:74 +msgid "There was an error saving your bookmark. Please try again or contact the administrator." +msgstr "ไฟๅญไนฆ็ญพๆถๅบ้๏ผ่ฏทๅไฟๅญ้่ฏไธๆฌกๆ่
่็ณป็ฎก็ๅ" + +#: ..\..\..\bookmarks.php:160 +#: ..\..\..\templates\toolbar.inc.php:13 +msgid "Add a Bookmark" +msgstr "ๆทปๅ ไนฆ็ญพ" + +#: ..\..\..\bookmarks.php:163 +msgid "Add Bookmark" +msgstr "ๆทปๅ ไนฆ็ญพ" + +#: ..\..\..\bookmarks.php:166 +msgid "You must be logged in before you can add bookmarks." +msgstr "ๆจๅฟ
้กป็ป้ๅๆ่ฝๆทปๅ ไนฆ็ญพ" + +#: ..\..\..\bookmarks.php:213 +msgid "My Bookmarks" +msgstr "ๆจ็ไนฆ็ญพ" + +#: ..\..\..\edit.php:29 +msgid "Edit Bookmark" +msgstr "็ผ่พไนฆ็ญพ" + +#: ..\..\..\edit.php:34 +#, php-format +msgid "Bookmark with id %s not was not found" +msgstr "idไธบ %s ็ไนฆ็ญพไธๅญๅจ" + +#: ..\..\..\edit.php:39 +msgid "You are not allowed to edit this bookmark" +msgstr "ๆจๆฒกๆๆ้็ผ่พๆญคๆกไนฆ็ญพ" + +#: ..\..\..\edit.php:55 +msgid "Error while saving your bookmark" +msgstr "ๅจไฟๅญไนฆ็ญพๆถๅบ้" + +#: ..\..\..\edit.php:78 +msgid "Failed to delete the bookmark" +msgstr "ๅ ้คไนฆ็ญพๅคฑ่ดฅ" + +#: ..\..\..\edit.php:88 +#: ..\..\..\templates\editprofile.tpl.php:52 +msgid "Save Changes" +msgstr "ไฟๅญไฟฎๆน" + +#: ..\..\..\functions.inc.php:92 +msgid "message_die() was called multiple times." +msgstr "message_die()่ขซ่ฐ็จไบๅคๆฌก" + +#: ..\..\..\functions.inc.php:104 +msgid "SQL Error" +msgstr "SQLๅบ้" + +#: ..\..\..\functions.inc.php:110 +msgid "Line" +msgstr "่ก" + +#: ..\..\..\functions.inc.php:110 +#: ..\..\..\templates\importDelicious.tpl.php:8 +#: ..\..\..\templates\importNetscape.tpl.php:9 +msgid "File" +msgstr "ๆไปถ" + +#: ..\..\..\functions.inc.php:116 +msgid "Information" +msgstr "ไฟกๆฏ" + +#: ..\..\..\functions.inc.php:121 +msgid "Critical Information" +msgstr "ๅ
ณ้ฎๆงไฟกๆฏ" + +#: ..\..\..\functions.inc.php:126 +msgid "An error occured" +msgstr "ๆ้่ฏฏๅ็" + +#: ..\..\..\functions.inc.php:129 +msgid "General Error" +msgstr "ไธ่ฌๆง้่ฏฏ" + +#: ..\..\..\functions.inc.php:137 +msgid "An critical error occured" +msgstr "ๆไธฅ้้่ฏฏๅ็" + +#: ..\..\..\functions.inc.php:140 +msgid "Critical Error" +msgstr "ไธฅ้้่ฏฏ" + +#: ..\..\..\functions.inc.php:149 +msgid "DEBUG MODE" +msgstr "่ฐ่ฏๆจกๅผ" + +#: ..\..\..\history.php:65 +msgid "History" +msgstr "" + +#: ..\..\..\history.php:66 +#, php-format +msgid "History for %s" +msgstr "" + +#: ..\..\..\history.php:81 +msgid "Address was not found" +msgstr "" + +#: ..\..\..\import.php:41 +msgid "Could not open XML input" +msgstr "ๆ ๆณๆๅผXML่พๅ
ฅ" + +#: ..\..\..\import.php:45 +#, php-format +msgid "XML error: %s at line %d" +msgstr "XML้่ฏฏ: %s ๅ็ๅจ %d ่ก" + +#: ..\..\..\import.php:54 +msgid "Import Bookmarks from del.icio.us" +msgstr "ๅฐdel.icio.us็ไนฆ็ญพๆไปถๅฏผๅ
ฅ " + +#: ..\..\..\import.php:86 +#: ..\..\..\importNetscape.php:64 +msgid "You have already submitted this bookmark." +msgstr "ๆจ่ฟๅปๅทฒ็ปๅฝๅ
ฅ่ฟ่ฟๆกไนฆ็ญพ" + +#: ..\..\..\import.php:97 +#: ..\..\..\importNetscape.php:72 +msgid "Bookmark imported." +msgstr "ไนฆ็ญพๅฏผๅ
ฅๅฎๆฏ." + +#: ..\..\..\importNetscape.php:81 +msgid "Import Bookmarks from Browser File" +msgstr "ๅฐๆต่งๅจ็ไนฆ็ญพๆไปถๅฏผๅ
ฅ๏ผInternet Explorer, Mozilla Firefox and Netscape๏ผ" + +#: ..\..\..\index.php:32 +msgid "You have now logged out" +msgstr "ๆจๅทฒ็ปๆๅ็ปๅบ" + +#: ..\..\..\index.php:39 +#, php-format +msgid "%s: Recent bookmarks" +msgstr "%s: ๆ่ฟไนฆ็ญพ" + +#: ..\..\..\index.php:72 +msgid "Store, share and tag your favourite links" +msgstr "" + +#: ..\..\..\index.php:73 +msgid "Recent Bookmarks" +msgstr "ๆ่ฟไนฆ็ญพ" + +#: ..\..\..\jsScuttle.php:22 +msgid "Are you sure?" +msgstr "" + +#: ..\..\..\jsScuttle.php:22 +msgid "Yes" +msgstr "" + +#: ..\..\..\jsScuttle.php:22 +msgid "No" +msgstr "" + +#: ..\..\..\jsScuttle.php:68 +msgid "Available" +msgstr "" + +#: ..\..\..\jsScuttle.php:71 +#, fuzzy +msgid "Not Available" +msgstr "ๅฐๆชๆไนฆ็ญพๅๅ
ฅ" + +#: ..\..\..\login.php:38 +msgid "The details you have entered are incorrect. Please try again." +msgstr "ๆจ่พๅ
ฅ็่ฏฆ็ปไฟกๆฏไธๆญฃ็กฎ๏ผ่ฏท้่ฏ." + +#: ..\..\..\login.php:48 +#: ..\..\..\templates\login.tpl.php:26 +#: ..\..\..\templates\toolbar.inc.php:28 +msgid "Log In" +msgstr "็ป้" + +#: ..\..\..\password.php:31 +msgid "You must enter your username." +msgstr "" + +#: ..\..\..\password.php:35 +#, fuzzy +msgid "You must enter your <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "ๆจ <em>ๅฟ
้กป</em> ่พๅ
ฅ็จๆทๅ,ๅฏ็ ,ๅงๅๅ <abbr title=\"็ตๅญ้ฎไปถ\">e-mail</abbr> ๅฐๅ." + +#: ..\..\..\password.php:42 +msgid "No matches found for that username." +msgstr "" + +#: ..\..\..\password.php:45 +#, fuzzy +msgid "No matches found for that combination of username and <abbr title=\"electronic mail\">e-mail</abbr> address." +msgstr "ๆจ <em>ๅฟ
้กป</em> ่พๅ
ฅ็จๆทๅ,ๅฏ็ ,ๅงๅๅ <abbr title=\"็ตๅญ้ฎไปถ\">e-mail</abbr> ๅฐๅ." + +#: ..\..\..\password.php:53 +#, fuzzy +msgid "There was an error while generating your new password. Please try again." +msgstr "ไฟๅญไนฆ็ญพๆถๅบ้๏ผ่ฏทๅไฟๅญ้่ฏไธๆฌกๆ่
่็ณป็ฎก็ๅ" + +#: ..\..\..\password.php:57 +#, fuzzy +msgid "Your new password is:" +msgstr "็กฎ่ฎคๅฏ็ " + +#: ..\..\..\password.php:57 +msgid "To keep your bookmarks secure, you should change this password in your profile the next time you log in." +msgstr "" + +#: ..\..\..\password.php:60 +#, fuzzy, php-format +msgid "%s Account Information" +msgstr "ไฟกๆฏ" + +#: ..\..\..\password.php:62 +#, php-format +msgid "New password generated and sent to %s" +msgstr "" + +#: ..\..\..\password.php:69 +#, fuzzy +msgid "Forgotten Password" +msgstr "ๆฐ็ๅฏ็ " + +#: ..\..\..\populartags.php:54 +#: ..\..\..\templates\dynamictags.inc.php:101 +#: ..\..\..\templates\sidebar.block.common.php:9 +#: ..\..\..\templates\sidebar.block.popular.php:15 +#: ..\..\..\templates\sidebar.block.recent.php:25 +msgid "Popular Tags" +msgstr "็ญ้จๆ ็ญพ" + +#: ..\..\..\profile.php:54 +#: ..\..\..\watched.php:114 +msgid "Username was not specified" +msgstr "ๆฒกๆๆไพ็จๆทๅ" + +#: ..\..\..\profile.php:60 +#, fuzzy +msgid "My Profile" +msgstr "ไธชไบบ่ตๆ" + +#: ..\..\..\profile.php:62 +#: ..\..\..\templates\sidebar.block.profile.php:12 +msgid "Profile" +msgstr "ไธชไบบ่ตๆ" + +#: ..\..\..\profile.php:80 +msgid "Password and confirmation do not match." +msgstr "ๅฏ็ ๅ็กฎ่ฎคๅฏ็ ไธไธ่ด." + +#: ..\..\..\profile.php:84 +msgid "Password must be at least 6 characters long." +msgstr "ๅฏ็ ่ณๅฐ6ไฝ." + +#: ..\..\..\profile.php:88 +msgid "E-mail address is not valid." +msgstr "Emailๅฐๅไธๅๆณ." + +#: ..\..\..\profile.php:92 +msgid "An error occurred while saving your changes." +msgstr "ไฟๅญไฟฎๆนๆถๅบ้." + +#: ..\..\..\profile.php:94 +msgid "Changes saved." +msgstr "ไฟๅญไฟฎๆนๆๅ." + +#: ..\..\..\register.php:33 +#, fuzzy +msgid "You <em>must</em> enter a username, password and e-mail address." +msgstr "ๆจ <em>ๅฟ
้กป</em> ่พๅ
ฅ็จๆทๅ,ๅฏ็ ,ๅงๅๅ <abbr title=\"็ตๅญ้ฎไปถ\">e-mail</abbr> ๅฐๅ." + +#: ..\..\..\register.php:37 +msgid "This username already exists, please make another choice." +msgstr "็จๆทๅๅทฒ็ปๅญๅจ๏ผ่ฏท้ๆฉๅ
ถไป็จๆทๅ." + +#: ..\..\..\register.php:41 +#, fuzzy +msgid "E-mail address is not valid. Please try again." +msgstr "Emailๅฐๅไธๅๆณ." + +#: ..\..\..\register.php:50 +msgid "You have successfully registered. Enjoy!" +msgstr "ๆจๅทฒ็ปๆณจๅๆๅ." + +#: ..\..\..\register.php:52 +msgid "Registration failed. Please try again." +msgstr "ๆณจๅๅคฑ่ดฅ๏ผ่ฏท้่ฏ." + +#: ..\..\..\register.php:57 +#: ..\..\..\templates\register.tpl.php:32 +#: ..\..\..\templates\toolbar.inc.php:27 +msgid "Register" +msgstr "ๆณจๅ" + +#: ..\..\..\search.inc.php:29 +#: ..\..\..\search.inc.php:57 +msgid "Search" +msgstr "ๆ็ดข" + +#: ..\..\..\search.inc.php:35 +#, fuzzy +msgid "this user's bookmarks" +msgstr "%s ไนฆ็ญพ" + +#: ..\..\..\search.inc.php:40 +msgid "my bookmarks" +msgstr "ๆจ็ไนฆ็ญพ" + +#: ..\..\..\search.inc.php:41 +#, fuzzy +msgid "my watchlist" +msgstr "ๅฐ็จๆทๅ ๅ
ฅๅฐๆจ็ๅ
ณๆณจๅ่กจ" + +#: ..\..\..\search.inc.php:45 +msgid "all bookmarks" +msgstr "ๆๆไนฆ็ญพ" + +#: ..\..\..\search.inc.php:48 +msgid "for" +msgstr "ๅ
ณไบ" + +#: ..\..\..\search.php:91 +#: ..\..\..\search.php:128 +msgid "Search Bookmarks" +msgstr "ๆ็ดขไนฆ็ญพ" + +#: ..\..\..\search.php:97 +msgid "Search Results" +msgstr "ๆ็ดข็ปๆ" + +#: ..\..\..\tags.php:38 +#: ..\..\..\templates\editbookmark.tpl.php:44 +#: ..\..\..\templates\sidebar.block.profile.php:13 +msgid "Tags" +msgstr "ๆ ็ญพ" + +#: ..\..\..\watch.php:79 +#, php-format +msgid "%s Bookmarks" +msgstr "%s ไนฆ็ญพ" + +#: ..\..\..\watch.php:84 +msgid "User removed from your watchlist" +msgstr "ๅทฒๅฐ็จๆทไปๆจ็ๅ
ณๆณจๅ่กจไธญๅ ้ค" + +#: ..\..\..\watch.php:86 +msgid "User added to your watchlist" +msgstr "ๅทฒๅฐ็จๆทๅ ๅ
ฅๅฐๆจ็ๅ
ณๆณจๅ่กจไธญ" + +#: ..\..\..\watched.php:105 +#, fuzzy +msgid "My Watchlist" +msgstr "ๆๅ
ณๆณจ็ๅ
ถไป็จๆท" + +#: ..\..\..\watched.php:107 +#: ..\..\..\templates\sidebar.block.profile.php:14 +#: ..\..\..\templates\toolbar.inc.php:12 +#, fuzzy +msgid "Watchlist" +msgstr "ๆๅ
ณๆณจ็ๅ
ถไป็จๆท" + +#: ..\..\..\templates\about.tpl.php:6 +msgid "<strong>Store</strong> all your favourite links in one place, accessible from anywhere." +msgstr "" + +#: ..\..\..\templates\about.tpl.php:7 +msgid "<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private." +msgstr "ๆจๅฏไปฅๅฐๆจๆถ่็ไนฆ็ญพ่ตๆบไธๆๆๆๅๅไบซ๏ผไน่ฎธๅ ๆญคๅ็ฐไธๆจๅฟๅ้ๅ็ๆๅใๆ่
ไฟๅญไธบๅช่ฝๆจ่ชๅทฑๆฅ็็็งๆ็ถๆ" + +#: ..\..\..\templates\about.tpl.php:8 +msgid "<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders." +msgstr "ๆจๅฏไปฅๅฐๆจ่ฎคไธบไผ็ง็็ซ็น็จๆ ็ญพ๏ผTag๏ผๅฎไน๏ผ่ฟๆฏไธ็งๆดไธบ็ตๆดป็ๅ็ฑปๅฝขๅผ๏ผๆนไพฟๆจ็ๅๆฃ่ฎฐๅฟๅ็ฎก็ใ" + +#: ..\..\..\templates\about.tpl.php:9 +#, php-format +msgid "<strong><a href=\"register.php\">Register now</a></strong> to start using %s!" +msgstr "" + +#: ..\..\..\templates\about.tpl.php:12 +msgid "Geek Stuff" +msgstr "่ด่ฐข" + +#: ..\..\..\templates\about.tpl.php:14 +#, php-format +msgid "%s is based on <a href=\"http://sourceforge.net/projects/scuttle/\">an open-source project</a> licensed under the <a href=\"http://www.gnu.org/copyleft/gpl.html\"><acronym title=\"GNU's Not Unix\">GNU</acronym> General Public License</a>. 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 "" + +#: ..\..\..\templates\about.tpl.php:15 +#, php-format +msgid "%1$s supports most of the <a href=\"http://del.icio.us/doc/api\">del.icio.us <abbr title=\"Application Programming Interface\">API</abbr></a>. 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 "" + +#: ..\..\..\templates\bookmarks.tpl.php:17 +#: ..\..\..\templates\tags.tpl.php:7 +msgid "Sort by:" +msgstr "ๆๅบๆนๅผ:" + +#: ..\..\..\templates\bookmarks.tpl.php:18 +msgid "Date" +msgstr "ๅๅธๆถ้ด" + +#: ..\..\..\templates\bookmarks.tpl.php:19 +#: ..\..\..\templates\editbookmark.tpl.php:34 +msgid "Title" +msgstr "ไนฆ็ญพๆ ้ข" + +#: ..\..\..\templates\bookmarks.tpl.php:23 +msgid "URL" +msgstr "URL็ฝๅ" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Edit" +msgstr "็ผ่พ" + +#: ..\..\..\templates\bookmarks.tpl.php:60 +msgid "Delete" +msgstr "ๅ ้ค" + +#: ..\..\..\templates\bookmarks.tpl.php:66 +msgid "by" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:78 +#, fuzzy, php-format +msgid " and %s1 other%s" +msgstr "ๅๆถ่ขซๅ
ถไป %s ไธช็จๆทๆถ่" + +#: ..\..\..\templates\bookmarks.tpl.php:81 +#, fuzzy, php-format +msgid " and %2$s%1$s others%3$s" +msgstr "ๅๆถ่ขซๅ
ถไป %s ไธช็จๆทๆถ่" + +#: ..\..\..\templates\bookmarks.tpl.php:90 +msgid "Copy" +msgstr "ๅคๅถ" + +#: ..\..\..\templates\bookmarks.tpl.php:136 +#: ..\..\..\templates\bookmarks.tpl.php:142 +msgid "First" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:137 +#: ..\..\..\templates\bookmarks.tpl.php:143 +msgid "Previous" +msgstr "ไธไธ้กต" + +#: ..\..\..\templates\bookmarks.tpl.php:150 +#: ..\..\..\templates\bookmarks.tpl.php:153 +msgid "Next" +msgstr "ไธไธ้กต" + +#: ..\..\..\templates\bookmarks.tpl.php:151 +#: ..\..\..\templates\bookmarks.tpl.php:154 +msgid "Last" +msgstr "" + +#: ..\..\..\templates\bookmarks.tpl.php:156 +#, php-format +msgid "Page %d of %d" +msgstr "็ฌฌ %d ้กต / ๅ
ฑ %d ้กต" + +#: ..\..\..\templates\bookmarks.tpl.php:160 +msgid "No bookmarks available" +msgstr "ๅฐๆชๆไนฆ็ญพๅๅ
ฅ" + +#: ..\..\..\templates\dynamictags.inc.php:108 +#: ..\..\..\templates\sidebar.block.common.php:15 +#: ..\..\..\templates\sidebar.block.popular.php:21 +#: ..\..\..\templates\sidebar.block.recent.php:20 +#: ..\..\..\templates\tags.tpl.php:16 +msgid "bookmark" +msgid_plural "bookmarks" +msgstr[0] "ไนฆ็ญพ" +msgstr[1] "ไนฆ็ญพ" + +#: ..\..\..\templates\editbookmark.tpl.php:29 +msgid "Address" +msgstr "็ฝๅ" + +#: ..\..\..\templates\editbookmark.tpl.php:31 +#: ..\..\..\templates\editbookmark.tpl.php:36 +#: ..\..\..\templates\editprofile.tpl.php:31 +msgid "Required" +msgstr "ๅฟ
ๅกซ้กน็ฎ" + +#: ..\..\..\templates\editbookmark.tpl.php:39 +#: ..\..\..\templates\editprofile.tpl.php:47 +#: ..\..\..\templates\profile.tpl.php:28 +msgid "Description" +msgstr "ๆ่ฟฐ" + +#: ..\..\..\templates\editbookmark.tpl.php:46 +msgid "Comma-separated" +msgstr "ไปฅๅๅญ่้ๅทๅๅผ" + +#: ..\..\..\templates\editbookmark.tpl.php:49 +#: ..\..\..\templates\importDelicious.tpl.php:15 +#: ..\..\..\templates\importNetscape.tpl.php:16 +msgid "Privacy" +msgstr "็งๅฏ" + +#: ..\..\..\templates\editbookmark.tpl.php:52 +#: ..\..\..\templates\importDelicious.tpl.php:18 +#: ..\..\..\templates\importNetscape.tpl.php:19 +msgid "Public" +msgstr "ๅ
ฌๅผๅๅธ" + +#: ..\..\..\templates\editbookmark.tpl.php:53 +#: ..\..\..\templates\importDelicious.tpl.php:19 +#: ..\..\..\templates\importNetscape.tpl.php:20 +msgid "Shared with Watch List" +msgstr "ไป
ๅ
ณๆณจ่
" + +#: ..\..\..\templates\editbookmark.tpl.php:54 +#: ..\..\..\templates\importDelicious.tpl.php:20 +#: ..\..\..\templates\importNetscape.tpl.php:21 +msgid "Private" +msgstr "ไป
ๆฌ็จๆท" + +#: ..\..\..\templates\editbookmark.tpl.php:66 +msgid "Delete Bookmark" +msgstr "ๅ ้คไนฆ็ญพ" + +#: ..\..\..\templates\editbookmark.tpl.php:93 +msgid "Bookmarklet" +msgstr "Bookmarklet" + +#: ..\..\..\templates\editbookmark.tpl.php:94 +#, 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ๅๆฏ่ฎฐๅฝๆไบๅฏนๆจๆญฃๅจๆต่ง็้กต้ข่ฟ่กๅค็็็จๅบๅๆนๆณใ<br>ไฝฟ็จBookmarkletไนๅ๏ผๆจๆ ้ๅฆๅคๅฎ่ฃ
ๆไธ่ฝฝ็จๅผ๏ผๅช่ฆ็ฎๅ็ๅฐๅฆไธ้พๆฅๅ ๅ
ฅๆจ็ๆต่งๅจไนฆ็ญพๆๆฏๆถ่ๅคนไนไธญใ <br>้ๆฉๅฆไธBookmarkletไนไธ,ๅนถๅฐๅ
ถๅ ๅ
ฅๅฐๆจ็ๆต่งๅจไนฆ็ญพไธญ,ๅฝๆจๆต่งๅนถๅธๆๆถ่ๅ
ถไป็ฝ็ซ้กต้ขๆถ,ๅช้็นๅปๆจ็ๆต่งๅจไธญ Bookmarklet ไนฆ็ญพ,ๅฐฑไผๅฐๆจๅธๆๆถ่็้กต้ขๅๅธๅฐ %s" + +#: ..\..\..\templates\editbookmark.tpl.php:106 +#, php-format +msgid "Post to %s" +msgstr "ๆถ่ๅฐ %s" + +#: ..\..\..\templates\editbookmark.tpl.php:107 +#, php-format +msgid "Post to %s (Pop-up)" +msgstr "ๆถ่ๅฐ %s๏ผๅผนๅบ็ชๅฃ๏ผ " + +#: ..\..\..\templates\editbookmark.tpl.php:111 +#: ..\..\..\templates\importDelicious.tpl.php:26 +#: ..\..\..\templates\importNetscape.tpl.php:27 +msgid "Import" +msgstr "ๅฏผๅ
ฅไนฆ็ญพ" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Import bookmarks from bookmark file" +msgstr "ๅฏผๅ
ฅ๏ผInternet Explorer, Mozilla Firefox and Netscape๏ผๆต่งๅจ็ไนฆ็ญพๆไปถ" + +#: ..\..\..\templates\editbookmark.tpl.php:113 +msgid "Internet Explorer, Mozilla Firefox and Netscape" +msgstr "Internet Explorer, Mozilla Firefox and Netscape" + +#: ..\..\..\templates\editbookmark.tpl.php:114 +msgid "Import bookmarks from del.icio.us" +msgstr "ๅฏผๅ
ฅdel.icio.us็ไนฆ็ญพๆไปถ" + +#: ..\..\..\templates\editprofile.tpl.php:10 +msgid "Account Details" +msgstr "" + +#: ..\..\..\templates\editprofile.tpl.php:14 +#: ..\..\..\templates\login.tpl.php:15 +#: ..\..\..\templates\password.tpl.php:10 +#: ..\..\..\templates\profile.tpl.php:7 +#: ..\..\..\templates\register.tpl.php:16 +msgid "Username" +msgstr "็จๆทๅธๅท" + +#: ..\..\..\templates\editprofile.tpl.php:19 +msgid "New Password" +msgstr "ๆฐ็ๅฏ็ " + +#: ..\..\..\templates\editprofile.tpl.php:24 +#, fuzzy +msgid "Confirm Password" +msgstr "็กฎ่ฎคๅฏ็ " + +#: ..\..\..\templates\editprofile.tpl.php:29 +#: ..\..\..\templates\register.tpl.php:26 +msgid "E-mail" +msgstr "็จๆทEmail" + +#: ..\..\..\templates\editprofile.tpl.php:35 +msgid "Personal Details" +msgstr "" + +#: ..\..\..\templates\editprofile.tpl.php:39 +#: ..\..\..\templates\profile.tpl.php:12 +msgid "Name" +msgstr "็จๆทๅ
จๅ" + +#: ..\..\..\templates\editprofile.tpl.php:43 +#: ..\..\..\templates\profile.tpl.php:18 +msgid "Homepage" +msgstr "็จๆท็ฝ็ซ" + +#: ..\..\..\templates\error.404.tpl.php:5 +msgid "Not Found" +msgstr "ๆไปถไธๅญๅจ" + +#: ..\..\..\templates\error.404.tpl.php:6 +msgid "The requested URL was not found on this server" +msgstr "ๆจๆๅฎ็ๆไปถไธๅญๅจใ" + +#: ..\..\..\templates\error.500.tpl.php:5 +msgid "General server error" +msgstr "ไธ่ฌๆงๆๅกๅจ้่ฏฏ" + +#: ..\..\..\templates\error.500.tpl.php:6 +msgid "The requested URL could not be processed" +msgstr "ๆ ๆณๅฏนๆจๆๅฎ็ๆไปถ่ฟ่กๅฏผๅ
ฅๆไฝใ" + +#: ..\..\..\templates\importDelicious.tpl.php:33 +msgid "Log in to the <a href=\"http://del.icio.us/api/posts/all\">export page at del.icio.us</a>" +msgstr "็ปๅฝ<a href=\"http://del.icio.us/api/posts/all\">del.icio.us</a>ๅฏผๅบไนฆ็ญพๆฐๆฎ" + +#: ..\..\..\templates\importDelicious.tpl.php:34 +msgid "Save the resulting <abbr title=\"Extensible Markup Language\">XML</abbr> file to your computer" +msgstr "ไฟๅญ<abbr title=\"Extensible Markup Language\">XML</abbr>ๆไปถๅฐๆจ็็ต่ไธญใ" + +#: ..\..\..\templates\importDelicious.tpl.php:35 +msgid "Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB" +msgstr "็นๅป<kbd>ๆต่ง...</kbd>ๅจๆจ็็ต่ไธญๆพๅฐไนฆ็ญพๆไปถ,ๆๅคงๅ
่ฎธๅฏผๅ
ฅ1Mbๆฐๆฎ" + +#: ..\..\..\templates\importDelicious.tpl.php:36 +#: ..\..\..\templates\importNetscape.tpl.php:43 +msgid "Select the default privacy setting for your imported bookmarks" +msgstr "ไธบๅฏผๅ
ฅ็ไนฆ็ญพ้ๆฉ้ป่ฎค็งๅฏ่ฎพ็ฝฎ" + +#: ..\..\..\templates\importDelicious.tpl.php:37 +#: ..\..\..\templates\importNetscape.tpl.php:44 +msgid "Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute" +msgstr "็นๅป<kbd>ๅฏผๅ
ฅ</kbd>ไนฆ็ญพๅผๅงๅฏผๅ
ฅ,่ๆถ1ๅ้ๅทฆๅณใ" + +#: ..\..\..\templates\importNetscape.tpl.php:32 +msgid "Instructions" +msgstr "ๆญฅ้ชคๅๅฏผๅ
ฅๆนๆณ" + +#: ..\..\..\templates\importNetscape.tpl.php:35 +msgid "Export your bookmarks from your browser to a file" +msgstr "ๅฐๆจ็ๆต่งๅจไนฆ็ญพๆฐๆฎๅฏผๅบไธบไธไธชๆไปถ" + +#: ..\..\..\templates\importNetscape.tpl.php:37 +msgid "Internet Explorer: <kbd>File > Import and Export... > Export Favorites" +msgstr "Internet Explorer: <kbd>ๆไปถ > ๅฏผๅ
ฅๅๅฏผๅบ... > ๅฏผๅบๆถ่ๅคน " + +#: ..\..\..\templates\importNetscape.tpl.php:38 +msgid "Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export..." +msgstr "Mozilla Firefox: <kbd>ไนฆ็ญพ > ็ฎก็ไนฆ็ญพ... > ๆไปถ > ๅฏผๅบไนฆ็ญพ... " + +#: ..\..\..\templates\importNetscape.tpl.php:39 +msgid "Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export..." +msgstr "Netscape: <kbd>ไนฆ็ญพ > ็ฎก็ไนฆ็ญพ... > ๅทฅๅ
ท >> ๅฏผๅบไนฆ็ญพ... " + +#: ..\..\..\templates\importNetscape.tpl.php:42 +msgid "Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB" +msgstr "็นๅป<kbd>ๆต่ง...</kbd> ๅจๆจ็็ต่ไธญๆพๅฐไนฆ็ญพๆไปถ,ๆๅคงๅ
่ฎธๅฏผๅ
ฅ1Mbๆฐๆฎ" + +#: ..\..\..\templates\login.tpl.php:20 +#: ..\..\..\templates\register.tpl.php:21 +msgid "Password" +msgstr "ๅฏ็ " + +#: ..\..\..\templates\login.tpl.php:22 +msgid "Don't ask for my password for 2 weeks" +msgstr "ๅญๅจๅธๅทๅฏ็ ไฟกๆฏ2ๅจ" + +#: ..\..\..\templates\login.tpl.php:30 +msgid "Forgotten your password?" +msgstr "" + +#: ..\..\..\templates\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 "" + +#: ..\..\..\templates\password.tpl.php:14 +msgid "<abbr title=\"Electronic mail\">E-mail</abbr>" +msgstr "<abbr title=\"็ตๅญ้ฎไปถl\">E-mail</abbr>" + +#: ..\..\..\templates\password.tpl.php:19 +#, fuzzy +msgid "Generate Password" +msgstr "ๆฐ็ๅฏ็ " + +#: ..\..\..\templates\profile.tpl.php:23 +msgid "Member Since" +msgstr "ๆณจๅๆถ้ด" + +#: ..\..\..\templates\profile.tpl.php:35 +#: ..\..\..\templates\sidebar.block.watchlist.php:8 +#, fuzzy +msgid "Watching" +msgstr "ๆๅ
ณๆณจ็ๅ
ถไป็จๆท" + +#: ..\..\..\templates\profile.tpl.php:50 +msgid "Watched By" +msgstr "ๅ
ณๆณจ่ฏฅ็จๆท็ๅ
ถไป็จๆท" + +#: ..\..\..\templates\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 ็็จๆท๏ผ่ฏทๅกซๅๅฆไธ่กจๅ:" + +#: ..\..\..\templates\rss.tpl.php:9 +#, php-format +msgid "Recent bookmarks posted to %s" +msgstr "ๆๆฐๅๅธๅฐ%s็ไนฆ็ญพ" + +#: ..\..\..\templates\rss.tpl.php:17 +#: ..\..\..\templates\rss.tpl.php:19 +msgid "No bookmarks found" +msgstr "ๅฐๆ ไนฆ็ญพ" + +#: ..\..\..\templates\sidebar.block.recent.php:15 +msgid "Recent Tags" +msgstr "ๆๆฐๆ ็ญพ" + +#: ..\..\..\templates\sidebar.block.related.php:15 +msgid "Related Tags" +msgstr "ๅ
ณ่ๆ ็ญพ" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:10 +msgid "Remove from Watchlist" +msgstr "ๅฐ็จๆทไปๆจ็ๅ
ณๆณจๅ่กจไธญๅ ้ค" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:12 +msgid "Add to Watchlist" +msgstr "ๅฐ็จๆทๅ ๅ
ฅๅฐๆจ็ๅ
ณๆณจๅ่กจ" + +#: ..\..\..\templates\sidebar.block.watchstatus.php:17 +#, fuzzy +msgid "Actions" +msgstr "ๆญฅ้ชคๅๅฏผๅ
ฅๆนๆณ" + +#: ..\..\..\templates\tags.tpl.php:8 +msgid "Alphabet" +msgstr "" + +#: ..\..\..\templates\tags.tpl.php:9 +#, fuzzy +msgid "Popularity" +msgstr "็ญ้จๆ ็ญพ" + +#: ..\..\..\templates\toolbar.inc.php:11 +#, fuzzy +msgid "Bookmarks" +msgstr "%s ไนฆ็ญพ" + +#: ..\..\..\templates\toolbar.inc.php:16 +msgid "Log Out" +msgstr "็ปๅบ" + diff --git a/data/tables.sql b/data/tables.sql new file mode 100644 index 0000000..ed4d6ba --- /dev/null +++ b/data/tables.sql @@ -0,0 +1,172 @@ +-- Semantic Scuttle - Tables creation SQL script +-- ! Dont forget to change table names according to $tableprefix defined in config.inc.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 '', + 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, + PRIMARY KEY (`uId`) +) 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 ; diff --git a/data/templates/about.tpl.php b/data/templates/about.tpl.php new file mode 100644 index 0000000..4a93d75 --- /dev/null +++ b/data/templates/about.tpl.php @@ -0,0 +1,34 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<ul> +<li><?php echo T_('<strong>Store</strong> all your favourite links in one place, accessible from anywhere.'); ?></li> +<li><?php echo T_('<strong>Share</strong> your bookmarks with everyone, with friends on your watchlist or just keep them private.') ;?></li> +<li><?php echo T_('<strong>Tag</strong> your bookmarks with as many labels as you want, instead of wrestling with folders.'); ?></li> +<li><?php echo sprintf('<strong><a href="'.createURL('register').'">'.T_('Register now').'</a> </strong>'.T_(' to start using %s!'), $GLOBALS['sitename']); ?></li> +</ul> + +<h3><?php echo T_('Geek Stuff'); ?></h3> +<ul> +<li><a href="http://sourceforge.net/projects/semanticscuttle/">Semantic Scuttle</a> <?php echo T_('is licensed under the ');?> <a href="http://www.gnu.org/copyleft/gpl.html"><acronym title="GNU\'s Not Unix">GNU</acronym> General Public License</a> (<?php echo T_('you can freely host it on your own web server.'); ?>)</li> +<li><?php echo sprintf(T_('%1$s supports most of the <a href="http://del.icio.us/doc/api">del.icio.us <abbr title="Application Programming Interface">API</abbr></a>. 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']); ?></li> + + + +<?php if(!is_null($currentUser) && $currentUser->isAdmin()): ?> +<li>SemanticScuttle v0.94</li> +<?php endif ?> +</ul> + +<h3><?php echo T_('Tips'); ?></h3> +<ul> +<li><?php echo T_('Add search plugin into your browser:'); ?> <a href="#" onclick="window.external.AddSearchProvider('<?php echo ROOT?>api/opensearch.php');">opensearch</a></li> +<li><?php echo T_('The secret tag "system:unfiled" allows you to find bookmarks without tags.'); ?></li> +<li><?php echo T_('The secret tag "system:imported" allows you to find imported bookmarks.'); ?></li> +</ul> + + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/admin.tpl.php b/data/templates/admin.tpl.php new file mode 100644 index 0000000..c8d47e8 --- /dev/null +++ b/data/templates/admin.tpl.php @@ -0,0 +1,35 @@ +<?php
+
+$this->includeTemplate($GLOBALS['top_include']); + +echo '<h3>'.T_('Users management').'</h3>'; +
+echo '<ol id="bookmarks">';
+ +foreach($users as $user) {
+ echo '<li class="xfolkentry">'."\n";
+
+ echo '<div class="link">';
+ echo '<a href="'.createURL('profile', $user->getUsername()).'">'.$user->getUsername().'</a>'; + echo ' - <span title='. T_('Public/Shared/Private') .'>'. $user->getNbBookmarks('public') .' / '. $user->getNbBookmarks('shared') .' / '. $user->getNbBookmarks('private') .' '. T_('bookmark(s)') .'</span>';
+ echo '</div>';
+ + if($user->getUsername() != $currentUser->getUsername()) {
+ echo '<div class="meta">';
+ echo '<a href="'.createURL('admin','delete/'.$user->getUsername()).'" onclick="return confirm(\''.T_('Are you sure?').'\');">'.T_('Delete').'</a>';
+ echo '</div>'; + }
+
+ echo '</li>'."\n";
+} +echo '</ol>'; +?> +<h3><?php echo T_('Other actions')?></h3> +<p> +<a href="<?php echo createURL('admin','checkUrl/') ?>"> <?php echo T_('Check all URLs (May take some time)') ?></a> +</p> +<?php
+$this->includeTemplate('sidebar.tpl');
+$this->includeTemplate($GLOBALS['bottom_include']);
+
+?>
diff --git a/data/templates/bookmarkcommondescriptionedit.tpl.php b/data/templates/bookmarkcommondescriptionedit.tpl.php new file mode 100644 index 0000000..af5909a --- /dev/null +++ b/data/templates/bookmarkcommondescriptionedit.tpl.php @@ -0,0 +1,57 @@ +<?php + +$this->includeTemplate($GLOBALS['top_include']); + +list ($url, $hash) = explode('/', $_SERVER['PATH_INFO']); + + +?> +<script type="text/javascript"> +window.onload = function() { + document.getElementById("title").focus(); +} +</script> + +<form action="<?php echo $formaction; ?>" method="post"> +<table title="<?php echo T_('Collaborative description: these fields can be viewed and modified by every users') ?>"> +<tr> + <th align="left"><?php echo T_('Title'); ?></th> + <td><input type="text" id="title" name="title" size="75" maxlength="255" value="<?php echo $description['cdTitle']; ?>" onkeypress="this.style.backgroundImage = 'none';" /></td> + <td></td> +</tr> +<tr> + <th align="left"><?php echo T_('Description'); ?></th> + <td><textarea name="description" cols="75" rows="10"><?php echo $description['cdDescription']; ?></textarea></td> +</tr> +<tr> + <td></td> + <td> + <?php + if(strlen($description['cdDatetime'])>0) { + echo T_('Last modification:').' '.$description['cdDatetime'].', '; + $lastUser = $userservice->getUser($description['uId']); + echo '<a href="'.createURL('profile', $lastUser['username']).'">'.$lastUser['username'].'</a>'; + } + ?> + </td> + <td></td> +</tr> +<tr> + <td></td> + <td> + <input type="submit" name="confirm" value="<?php echo T_('Update'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> + </td> + <td></td> +</tr> +</table> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> +<div><input type="hidden" name="hash" value="<?php echo $hash; ?>" /></div> +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/bookmarks.tpl.php b/data/templates/bookmarks.tpl.php new file mode 100644 index 0000000..2b673b7 --- /dev/null +++ b/data/templates/bookmarks.tpl.php @@ -0,0 +1,344 @@ +<?php + +/* Service creation: only useful services are created */ +$bookmarkservice =& ServiceFactory::getServiceInstance('BookmarkService'); +$tagservice =& ServiceFactory::getServiceInstance('TagService'); +$cdservice =& ServiceFactory::getServiceInstance('CommonDescriptionService'); + + +$pageName = isset($pageName)?$pageName:""; +$user = isset($user)?$user:""; +$currenttag = isset($currenttag)?$currenttag:""; + + +$this->includeTemplate($GLOBALS['top_include']); + +include('search.inc.php'); +?> + +<?php if($pageName == PAGE_INDEX && $GLOBALS['welcomeMessage']):?> +<p id="welcome"><?php echo $GLOBALS['welcomeMessage'];?></p> +<?php endif?> + + +<?php if($GLOBALS['enableAdminColors']!=false && isset($userid) && $userservice->isAdmin($userid) && $pageName != PAGE_WATCHLIST) : ?> +<div style="width:70%;text-align:center;"> +<img src="<?php echo ROOT ?>images/logo_24.gif" width="12px"/> <?php echo T_('Bookmarks on this page are managed by an admin user.'); ?><img src="<?php echo ROOT ?>images/logo_24.gif" width="12px"/> +</div> +<?php endif?> + + +<?php +// common tag description +if(($currenttag!= '' && $GLOBALS['enableCommonTagDescription']) +|| (isset($hash) && $GLOBALS['enableCommonBookmarkDescription'])):?> + + +<p class="commondescription"><?php +$cDescription = ''; +if($currenttag!= '' && $cdservice->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'])). "<br/>"; + echo nl2br(filter($cDescription['cdDescription'])). "<br/>"; +} + +//common tag description edit +if($userservice->isLoggedOn()) { + if($currenttag!= '' && ($GLOBALS['enableCommonTagDescriptionEditedByAll'] || $currentUser->isAdmin())) { + echo ' <a href="'. createURL('tagcommondescriptionedit', $currenttag).'" title="'.T_('Edit the common description of this tag').'">'; + echo !is_array($cDescription) || strlen($cDescription['cdDescription'])==0?T_('Edit the common description of this tag'):''; + echo ' <img src="'.ROOT.'images/b_edit.png" /></a>'; + } elseif(isset($hash)) { + echo ' (<a href="'.createURL('bookmarkcommondescriptionedit', $hash).'" title="'.T_('Edit the common description of this bookmark').'">'; + echo T_('Edit the common description of this bookmark').'</a>)'; + } +} +?></p> +<?php endif ?> + + +<?php +/* personal tag description */ +if($currenttag!= '' && $user!='') { + $userObject = $userservice->getUserByUsername($user); + if($tagservice->getDescription($currenttag, $userObject['uId'])) { ?> + +<p class="commondescription"><?php +$pDescription = $tagservice->getDescription($currenttag, $userObject['uId']); +echo nl2br(filter($pDescription['tDescription'])); + +//personal tag description edit +if($userservice->isLoggedOn()) { + if($currenttag!= '') { + echo ' <a href="'. createURL('tagedit', $currenttag).'" title="'.T_('Edit your personal description of this tag').'" >'; + echo strlen($pDescription['tDescription'])==0?T_('Edit your personal description of this tag'):''; + echo ' <img src="'.ROOT.'images/b_edit.png" /></a>'; + } +} +?></p> + +<?php + } +} +?> + +<?php if (count($bookmarks) > 0) { ?> +<script type="text/javascript"> +window.onload = playerLoad; +</script> + +<p id="sort"><?php echo $total.' '.T_("bookmark(s)"); ?> - <?php echo T_("Sort by:"); ?> +<?php +switch(getSortOrder()) { + case 'date_asc': + $titleArrow = ''; + $dateArrow = ' ↑'; + $dateSort = 'date_desc'; + $titleSort = 'title_asc'; + break; + case 'title_asc': + $titleArrow = ' ↑'; + $dateArrow = ''; + $dateSort = 'date_desc'; + $titleSort = 'title_desc'; + break; + case 'title_desc': + $titleArrow = ' ↓'; + $dateArrow = ''; + $dateSort = 'date_desc'; + $titleSort = 'title_asc'; + break; + case 'date_desc': + default: + $titleArrow = ''; + $dateArrow = ' ↓'; + $dateSort = 'date_asc'; + $titleSort = 'title_asc'; + break; +} +?> <a href="?sort=<?php echo $dateSort ?>"><?php echo T_("Date").$dateArrow; ?></a><span> +/ </span> <a href="?sort=<?php echo $titleSort ?>"><?php echo T_("Title").$titleArrow; ?></a><span> +/ </span> <?php +if($currenttag!= '') { + if($user!= '') { + echo ' - '; + echo '<a href="'. createURL('tags', $currenttag) .'">'; + echo T_('Bookmarks from other users for this tag').'</a>'; + //echo T_(' for these tags'); + } else if($userservice->isLoggedOn()){ + echo ' - '; + echo '<a href="'. createURL('bookmarks', $currentUser->getUsername().'/'.$currenttag) .'">'; + echo T_('Only your bookmarks for this tag').'</a>'; + //echo T_(' for these tags'); + } +} +?></p> + +<?php + // PAGINATION + + // Ordering + $sortOrder = ''; + if (GET_SORT != '') { + $sortOrder = 'sort='. GET_SORT; + } + + $sortAmp = (($sortOrder) ? '&'. $sortOrder : ''); + $sortQue = (($sortOrder) ? '?'. $sortOrder : ''); + + // Previous + $perpage = getPerPageCount($currentUser); + if (!$page || $page < 2) { + $page = 1; + $start = 0; + $bfirst = '<span class="disable">'. T_('First') .'</span>'; + $bprev = '<span class="disable">'. T_('Previous') .'</span>'; + } else { + $prev = $page - 1; + $prev = 'page='. $prev; + $start = ($page - 1) * $perpage; + $bfirst= '<a href="'. sprintf($nav_url, $user, $currenttag, '') . $sortQue .'">'. T_('First') .'</a>'; + $bprev = '<a href="'. sprintf($nav_url, $user, $currenttag, '?') . $prev . $sortAmp .'">'. T_('Previous') .'</a>'; + } + + // Next + $next = $page + 1; + $totalpages = ceil($total / $perpage); + if (count($bookmarks) < $perpage || $perpage * $page == $total) { + $bnext = '<span class="disable">'. T_('Next') .'</span>'; + $blast = '<span class="disable">'. T_('Last') ."</span>\n"; + } else { + $bnext = '<a href="'. sprintf($nav_url, $user, $currenttag, '?page=') . $next . $sortAmp .'">'. T_('Next') .'</a>'; + $blast = '<a href="'. sprintf($nav_url, $user, $currenttag, '?page=') . $totalpages . $sortAmp .'">'. T_('Last') ."</a>\n"; + } + + // RSS + $brss = ''; + $size = count($rsschannels); + for ($i = 0; $i < $size; $i++) { + $brss = '<a style="background:#FFFFFF" href="'. $rsschannels[$i][1] .'" title="'. $rsschannels[$i][0] .'"><img src="'. ROOT .'images/rss.gif" width="16" height="16" alt="'. $rsschannels[$i][0] .'" /></a>'; + } + + $pagesBanner = '<p class="paging">'. $bfirst .'<span> / </span>'. $bprev .'<span> / </span>'. $bnext .'<span> / </span>'. $blast .'<span> / </span>'. sprintf(T_('Page %d of %d'), $page, $totalpages) ." ". $brss ." </p>\n"; + + if(getPerPageCount($currentUser) > 10) { + echo $pagesBanner; // display a page banner if too many bookmarks to manage + } + + +?> + + + +<ol <?php echo ($start > 0 ? ' start="'. ++$start .'"' : ''); ?> + id="bookmarks"> + + <?php + foreach(array_keys($bookmarks) as $key) { + $row =& $bookmarks[$key]; + switch ($row['bStatus']) { + case 0: + $access = ''; + break; + case 1: + $access = ' shared'; + break; + case 2: + $access = ' private'; + break; + } + + $cats = ''; + $tagsForCopy = ''; + $tags = $row['tags']; + foreach(array_keys($tags) as $key) { + + $tag =& $tags[$key]; + $cats .= '<a href="'. sprintf($cat_url, filter($row['username'], 'url'), filter($tag, 'url')) .'" rel="tag">'. filter($tag) .'</a>, '; + $tagsForCopy.= $tag.','; + } + $cats = substr($cats, 0, -2); + if ($cats != '') { + $cats = ' '.T_('Tags:').' '. $cats; + } + + // Edit and delete links + $edit = ''; + if ($bookmarkservice->editAllowed($row)) { + $edit = ' - <a href="'. createURL('edit', $row['bId']) .'">'. T_('Edit') .'</a><script type="text/javascript">document.write(" - <a href=\"#\" onclick=\"deleteBookmark(this, '. $row['bId'] .'); return false;\">'. T_('Delete') .'<\/a>");</script>'; + } + + // Last update + $update = ' <small title="'. T_('Last update') .'">('. date($GLOBALS['shortdate'], strtotime($row['bModified'])). ') </small>'; + + // User attribution + $copy = ' '. T_('by'). ' '; + if($userservice->isLoggedOn() && $currentUser->getUsername() == $row['username']) { + $copy.= T_('you'); + } else { + $copy.= '<a href="'. createURL('bookmarks', $row['username']) .'">'. $row['username'] .'</a>'; + } + + // Udders! + if (!isset($hash)) { + $others = $bookmarkservice->countOthers($row['bAddress']); + $ostart = '<a href="'. createURL('history', $row['bHash']) .'">'; + $oend = '</a>'; + 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']) + && !$bookmarkservice->bookmarkExists($row['bAddress'], $currentUser->getId())) { + $copy .= ' - <a href="'. createURL('bookmarks', $currentUser->getUsername() .'?action=add&copyOf='. $row['bId']) .'" title="'.T_('Copy this bookmark to YOUR bookmarks.').'">'. T_('Copy') .'</a>'; + } + + // Nofollow option + $rel = ''; + if ($GLOBALS['nofollow']) { + $rel = ' rel="nofollow"'; + } + + $address = filter($row['bAddress']); + + // Redirection option + if ($GLOBALS['useredir']) { + $address = $GLOBALS['url_redir'] . $address; + } + + // Admin specific design + if($userservice->isAdmin($row['uId'])) { + $adminBgClass = 'class="adminBackground"'; + $adminStar = ' <img src="'. ROOT .'images/logo_24.gif" width="12px" title="'. T_('This bookmark is certified by an admin user.') .'" />'; + } else { + $adminBgClass = ''; + $adminStar = ''; + } + + // Private Note (just visible by the owner and his/her contacts) + if($userservice->isLoggedOn() && ($currentUser->getId() == $row['uId'] || in_array($row['username'], $userservice->getWatchNames($currentUser->getId(), true)))) { + $privateNoteField = $row['bPrivateNote']; + } else { + $privateNoteField = ''; + } + + // Output + echo '<li class="xfolkentry'. $access .'" >'."\n"; + if ($GLOBALS['enableWebsiteThumbnails']) { + $thumbnailHash = md5($address.$GLOBALS['thumbnailsUserId'].$GLOBALS['thumbnailsKey']); + //echo '<a href="'. $address .'"'. $rel .' ><img class="thumbnail" src="http://www.artviper.net/screenshots/screener.php?url='.$address.'&w=120&sdx=1280&userID='.$GLOBALS['thumbnailsUserId'].'&hash='.$thumbnailHash.'" />'; + echo '<img class="thumbnail" onclick="window.location.href=\''.$address.'\'" src="http://www.artviper.net/screenshots/screener.php?url='.$address.'&w=120&sdx=1280&userID='.$GLOBALS['thumbnailsUserId'].'&hash='.$thumbnailHash.'" />'; + } + + echo '<div '.$adminBgClass.' >';; + + echo '<div class="link"><a href="'. $address .'"'. $rel .' class="taggedlink" target="_blank">'. filter($row['bTitle']) ."</a>" . $adminStar . "</div>\n"; + if ($row['bDescription'] == '') { + $bkDescription = '-'; + } else { + // Improve description display (anchors, links, ...) + $bkDescription = preg_replace('|\[\/.*?\]|', '', filter($row['bDescription'])); // remove final anchor + $bkDescription = preg_replace('|\[(.*?)\]|', ' <span class="anchorBookmark">$1</span> ยป ', $bkDescription); // highlight starting anchor + $bkDescription = preg_replace('@((http|https|ftp)://.*?)( |\r|$)@', '<a href="$1" rel="nofollow">$1</a>$3', $bkDescription); // make url clickable + + } + echo '<div class="description">'. nl2br($bkDescription) ."</div>\n"; + //if(!isset($hash)) { + echo '<div class="address">'.shortenString($address).'</div>'; + //} + + echo '<div class="meta">'. $cats . $copy . $edit . $update ."</div>\n"; + echo $privateNoteField!=''?'<div class="privateNote" title="'. T_('Private Note on this bookmark') .'">'.$privateNoteField."</div>\n":''; + echo '</div>'; + + echo "</li>\n"; + } + ?> + +</ol> + + <?php + if(getPerPageCount($currentUser)>7) { + echo '<p class="backToTop"><a href="#header" title="'.T_('Come back to the top of this page.').'">'.T_('Top of the page').'</a></p>'; + } + echo $pagesBanner; // display previous and next links pages + RSS link + + +} else { + echo '<p class="error">'.T_('No bookmarks available').'</p>'; +} +$this->includeTemplate('sidebar.tpl'); +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/bottom.inc.php b/data/templates/bottom.inc.php new file mode 100644 index 0000000..a1b65bf --- /dev/null +++ b/data/templates/bottom.inc.php @@ -0,0 +1,34 @@ +<!--following code is generated by templates/bottom.inc.php--> +<div id="bottom"> +<?php echo $GLOBALS['footerMessage'].' ';?> +<?php +echo '<a href="'.createURL('about').'">'.T_('About').'</a>'; +echo ' - '; +echo T_("Propulsed by "); +echo "<a href=\"https://sourceforge.net/projects/semanticscuttle/\">SemanticScuttle</a>"; + +if($GLOBALS['enableWebsiteThumbnails']) { + // Licence to the thumbnails provider (OBLIGATORY IF YOU USE ARTVIPER SERVICE) + echo " (<a href=\"http://www.artviper.net\" title=\"artViper designstudio\">thumbnails by artViper designstudio</a>)"; +} +?> + +</div> + + +<?php if(isset($GLOBALS['googleAnalyticsCode']) && $GLOBALS['googleAnalyticsCode']!= ''):?> + +<script type="text/javascript"> +var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); +document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); +</script> +<script type="text/javascript"> +try { +var pageTracker = _gat._getTracker("<?php echo $GLOBALS['googleAnalyticsCode']?>"); +pageTracker._trackPageview(); +} catch(err) {}</script> + +<?php endif;?> + +</body> +</html> diff --git a/data/templates/dojo.inc.php b/data/templates/dojo.inc.php new file mode 100644 index 0000000..16b22c6 --- /dev/null +++ b/data/templates/dojo.inc.php @@ -0,0 +1,35 @@ +<?php +/*************************************************************************** + Copyright (C) 2005 - 2006 Scuttle project + http://sourceforge.net/projects/scuttle/ + http://scuttle.org/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + ***************************************************************************/ + +?> + +<?php if (isset($loadjs)) :?> +<script type="text/javascript" + src="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dojo/dojo.xd.js" + djConfig="parseOnLoad:true, isDebug:<?php echo DEBUG_MODE?'true':'false' ?>, usePlainJson:true, baseUrl: '<?php echo ROOT ?>', modulePaths: {'js': 'includes/js'}"></script> + +<script type="text/javascript"> +dojo.require("dojo.parser"); +dojo.require("dojo.data.ItemFileReadStore"); +dojo.require("js.MultiComboBox"); // DOJO module adapted for SemanticScuttle +dojo.require("dijit.Tree"); +</script> +<?php endif ?>
\ No newline at end of file diff --git a/data/templates/dynamictags.inc.php b/data/templates/dynamictags.inc.php new file mode 100644 index 0000000..c6b0d16 --- /dev/null +++ b/data/templates/dynamictags.inc.php @@ -0,0 +1,141 @@ +<?php +/*************************************************************************** + Copyright (C) 2005 - 2006 Scuttle project + http://sourceforge.net/projects/scuttle/ + http://scuttle.org/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + ***************************************************************************/ + +/* Service creation: only useful services are created */ +$b2tservice = & ServiceFactory :: getServiceInstance('Bookmark2TagService'); + +$logged_on_userid = $userservice->getCurrentUserId(); + +//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) { + echo 'document.write(\'<div class="collapsible">\');'; + echo 'document.write(\'<h3>'. $title .'<\/h3>\');'; + echo 'document.write(\'<p id="popularTags" class="tags">\');'; + + $taglist = ''; + foreach(array_keys($tagsCloud) as $key) { + $row =& $tagsCloud[$key]; + $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']); + $taglist .= '<span title="'. $row['bCount'] .' '. $entries .'" style="font-size:'. $row['size'] .'" onclick="addTag(this)">'. filter($row['tag']) .'<\/span> '; + } + + echo 'document.write(\''. $taglist .'\');'; + echo 'document.write(\'<\/p>\');'; + echo 'document.write(\'<\/div>\');'; + +} + + +if ($allPopularTagsCount > 0 || $userPopularTagsCount > 0 ) { ?> + +<script type="text/javascript"> +Array.prototype.contains = function (ele) { + for (var i = 0; i < this.length; i++) { + if (this[i] == ele) { + return true; + } + } + return false; +}; + +Array.prototype.remove = function (ele) { + var arr = new Array(); + var count = 0; + for (var i = 0; i < this.length; i++) { + if (this[i] != ele) { + arr[count] = this[i]; + count++; + } + } + return arr; +}; + +function addonload(addition) { + //var existing = window.onload; + window.onload = function () { + //existing(); + addition(); + } +} + +addonload( + function () { + var taglist = document.getElementById('tags'); + var tags = taglist.value.split(', '); + + var populartags = document.getElementById('popularTags').getElementsByTagName('span'); + + for (var i = 0; i < populartags.length; i++) { + if (tags.contains(populartags[i].innerHTML)) { + populartags[i].className = 'selected'; + } + } + } +); + +function addTag(ele) { + var thisTag = ele.innerHTML; + var taglist = document.getElementById('tags'); + var tags = taglist.value.split(', '); + + // If tag is already listed, remove it + if (tags.contains(thisTag)) { + tags = tags.remove(thisTag); + ele.className = 'unselected'; + + // Otherwise add it + } else { + tags.splice(0, 0, thisTag); + ele.className = 'selected'; + } + + taglist.value = tags.join(', '); + + document.getElementById('tags').focus(); +} + +<?php +if( $userPopularTagsCount > 0) { + writeTagsProposition($userPopularTagsCloud, T_('Popular Tags')); +} +if( $allPopularTagsCount > 0) { + writeTagsProposition($allPopularTagsCloud, T_('Popular Tags From All Users')); +} + + +?> + +</script> + +<?php +} +?> diff --git a/data/templates/editbookmark.tpl.php b/data/templates/editbookmark.tpl.php new file mode 100644 index 0000000..8a08717 --- /dev/null +++ b/data/templates/editbookmark.tpl.php @@ -0,0 +1,177 @@ +<?php +$this->includeTemplate($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; +} + +$this->includeTemplate("dojo.inc"); +?> + + + +<script type="text/javascript"> +//window.onload = function() { +// document.getElementById("address").focus(); +//} +</script> + +<form action="<?php echo $formaction; ?>" method="post"> +<table> +<tr> + <th align="left"><?php echo T_('Address'); ?></th> + <td><input type="text" id="address" name="address" size="75" maxlength="65535" value="<?php echo filter($row['bAddress'], 'xml'); ?>" onblur="useAddress(this)" /></td> + <td>← <?php echo T_('Required'); ?></td> +</tr> +<tr> + <th align="left"><?php echo T_('Title'); ?></th> + <td><input type="text" id="titleField" name="title" size="75" maxlength="255" value="<?php echo filter($row['bTitle'], 'xml'); ?>" onkeypress="this.style.backgroundImage = 'none';" /></td> + <td>← <?php echo T_('Required'); ?></td> +</tr> +<tr> + <th align="left"> + <?php echo T_('Description'); ?> + <a onclick="var nz = document.getElementById('privateNoteZone'); nz.style.display='';this.style.display='none';"><?php echo T_("Add Note"); ?></a> + </th> + <td><textarea name="description" id="description" rows="5" cols="63" ><?php echo filter($row['bDescription'], 'xml'); ?></textarea></td> + <td>← <?php echo T_('You can use anchors to delimite attributes. for example: [publisher]blah[/publisher] '); ?> + <?php if(count($GLOBALS['descriptionAnchors'])>0): ?> + <br /><br /> + <?php echo T_('Suggested anchors: '); ?> + <?php foreach($GLOBALS['descriptionAnchors'] as $anchorName => $anchorValue): ?> + <?php if(is_numeric($anchorName)) { + $anchorName = $anchorValue; + $anchorValue = '['.$anchorValue.']'.'[/'.$anchorValue.']'; + } ?> + <span class="anchor" title="<?php echo $anchorValue ?>" onclick="addAnchor('<?php echo $anchorValue ?>', 'description')"><?php echo $anchorName ?></span> + <?php endforeach; ?> + <?php endif; ?> + </td> +</tr> +<tr id="privateNoteZone" <?php if(strlen($row['bPrivateNote'])==0):?>style="display:none"<?php endif; ?>> + <th align="left"><?php echo T_('Private Note'); ?></th> + <td><textarea name="privateNote" id="privateNote" rows="1" cols="63" ><?php echo filter($row['bPrivateNote'], 'xml'); ?></textarea></td> + <td>← <?php echo T_('Just visible by you and your contacts.'); ?> + </td> +</tr> +<tr> + <th align="left"><?php echo T_('Tags'); ?></th> + <td class="scuttletheme"> + <span dojoType="dojo.data.ItemFileReadStore" jsId="memberTagStore" url="<?php echo ROOT?>ajax/<?php echo ($GLOBALS['adminsAreAdvisedTagsFromOtherAdmins'] && $currentUser->isAdmin())?'getadmintags':'getcontacttags'?>.php"></span> + <input type="text" dojoType="js.MultiComboBox" id="tags" name="tags" size="75" value="<?php echo filter(implode(', ', $row['tags']), 'xml'); ?>" store="memberTagStore" delimiter="," searchAttr="tag" hasDownArrow="false" queryExpr="*${0}*" autoComplete="false" highlightMatch="all"/></td> + <td>← <?php echo T_('Comma-separated'); ?></td> +</tr> +<tr> + <th></th> + <td align="right"><small><?php echo T_('Note: use ">" to include one tag in another. e.g.: europe>france>paris')?><small></td> +</tr> +<tr> + <th></th> + <td align="right"><small><?php echo T_('Note: use "=" to make synonym two tags. e.g.: france=frenchcountry')?><small></td> +</tr> +<tr> + <th align="left"><?php echo T_('Privacy'); ?></th> + <td> + <select name="status"> + <option value="0"<?php echo $accessPublic ?>><?php echo T_('Public'); ?></option> + <option value="1"<?php echo $accessShared ?>><?php echo T_('Shared with Watch List'); ?></option> + <option value="2"<?php echo $accessPrivate ?>><?php echo T_('Private'); ?></option> + </select> + </td> + <td></td> +</tr> +<tr> + <td></td> + <td> + <input type="submit" name="submitted" value="<?php echo $btnsubmit; ?>" /> + <input type="button" name="cancel" value="<?php echo T_('Cancel') ?>" onclick="<?php echo $popup?'window.close();':'javascript: history.go(-1)'; ?>" /> + <?php + if (isset($showdelete) && $showdelete) { + ?> + <input type="submit" name="delete" value="<?php echo T_('Delete Bookmark'); ?>" /> + <?php + } + if (isset($showdelete) && $showdelete) { + echo ' (<a href="'.createURL('bookmarkcommondescriptionedit', $row['bHash']).'">'; + echo T_('edit common description').'</a>)'; + } + + if ($popup) { + ?> + <input type="hidden" name="popup" value="1" /> + <?php + } elseif (isset($referrer)) { + ?> + <input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /> + <?php + } + ?> + </td> + <td></td> +</tr> +</table> +</form> + +<?php +// Dynamic tag selection +$this->includeTemplate('dynamictags.inc'); + +// Bookmarklets and import links +if (empty($_REQUEST['popup']) && (!isset($showdelete) || !$showdelete)) { +?> + +<h3><?php echo T_('Bookmarklet'); ?></h3> +<p> +<script type="text/javascript"> +var browser=navigator.appName; +if (browser == "Opera") + { + document.write("<?php echo sprintf(T_("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"), $GLOBALS['sitename']); ?>:</p>"); + } +else + { + document.write("<?php echo sprintf(T_("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"), $GLOBALS['sitename']); ?>:</p>"); + } +var selection = ''; +if (window.getSelection) { + selection = 'window.getSelection()'; +} else if (document.getSelection) { + selection = 'document.getSelection()'; +} else if (document.selection) { + selection = 'document.selection.createRange().text'; +} +document.write('<ul>'); +if (browser == "Opera") + { + document.write('<li><a class="bookmarklet" href="opera:/button/Go%20to%20page,%20%22javascript:x=document;a=encodeURIComponent(x.location.href);t=encodeURIComponent(x.title);d=encodeURIComponent('+selection+');location.href=\'<?php echo createURL('bookmarks', $GLOBALS['user']); ?>?action=add&address=\'+a+\'&title=\'+t+\'&description=\'+d;void 0%22;,,%22Post%20to%20<?php echo $GLOBALS['sitename']; ?>%22,%22Scuttle%22"><?php echo sprintf(T_('Post to %s'), $GLOBALS['sitename']); ?><\/a><\/li>'); + document.write('<li><a class="bookmarklet" href="opera:/button/Go%20to%20page,%20%22javascript:x=document;a=encodeURIComponent(x.location.href);t=encodeURIComponent(x.title);d=encodeURIComponent('+selection+');open(\'<?php echo createURL('bookmarks', $GLOBALS['user']); ?>?action=add&popup=1&address=\'+a+\'&title=\'+t+\'&description=\'+d,\'<?php echo $GLOBALS['sitename']; ?>\',\'modal=1,status=0,scrollbars=1,toolbar=0,resizable=1,width=790,height=465,left=\'+(screen.width-790)/2+\',top=\'+(screen.height-425)/2);void 0;%22,,%22Post%20to%20<?php echo $GLOBALS['sitename']; ?>%20(Pop-up)%22,%22Scuttle%22"><?php echo sprintf(T_('Post to %s (Pop-up)'), $GLOBALS['sitename']); ?><\/a><\/li>'); + } +else + { + document.write('<li><a class="bookmarklet" href="javascript:x=document;a=encodeURIComponent(x.location.href);t=encodeURIComponent(x.title);d=encodeURIComponent('+selection+');location.href=\'<?php echo createURL('bookmarks', $GLOBALS['user']); ?>?action=add&address=\'+a+\'&title=\'+t+\'&description=\'+d;void 0;"><?php echo sprintf(T_('Post to %s'), $GLOBALS['sitename']); ?><\/a><\/li>'); + document.write('<li><a class="bookmarklet" href="javascript:x=document;a=encodeURIComponent(x.location.href);t=encodeURIComponent(x.title);d=encodeURIComponent('+selection+');open(\'<?php echo createURL('bookmarks', $GLOBALS['user']); ?>?action=add&popup=1&address=\'+a+\'&title=\'+t+\'&description=\'+d,\'<?php echo $GLOBALS['sitename']; ?>\',\'modal=1,status=0,scrollbars=1,toolbar=0,resizable=1,width=790,height=465,left=\'+(screen.width-790)/2+\',top=\'+(screen.height-425)/2);void 0;"><?php echo sprintf(T_('Post to %s (Pop-up)'), $GLOBALS['sitename']); ?><\/a><\/li>'); + } +document.write('<\/ul>'); +</script> + +<h3><?php echo T_('Import'); ?></h3> +<ul> + <li><a href="<?php echo createURL('importNetscape'); ?>"><?php echo T_('Import bookmarks from bookmark file'); ?></a> (<?php echo T_('Internet Explorer, Mozilla Firefox and Netscape'); ?>)</li> + <li><a href="<?php echo createURL('import'); ?>"><?php echo T_('Import bookmarks from del.icio.us'); ?></a></li> +</ul> + +<?php +} +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/editprofile.tpl.php b/data/templates/editprofile.tpl.php new file mode 100644 index 0000000..b55d250 --- /dev/null +++ b/data/templates/editprofile.tpl.php @@ -0,0 +1,73 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form action="<?php echo $formaction; ?>" method="post"> +<input type="hidden" name="token" value="<?php echo $token; ?>"> + +</table> + +<h3><?php echo T_('Account Details'); ?></h3> + +<table class="profile"> +<tr> + <th align="left"><?php echo T_('Username'); ?></th> + <td><?php echo $user; ?></td> + <td></td> +</tr> +<tr> + <th align="left"><?php echo T_('New Password'); ?></th> + <td><input type="password" name="pPass" size="20" /></td> + <td></td> +</tr> +<tr> + <th align="left"><?php echo T_('Confirm Password'); ?></th> + <td><input type="password" name="pPassConf" size="20" /></td> + <td></td> +</tr> +<tr> + <th align="left"><?php echo T_('E-mail'); ?></th> + <td><input type="text" name="pMail" size="75" value="<?php echo filter($objectUser->getEmail(), 'xml'); ?>" /></td> + <td>← <?php echo T_('Required'); ?></td> +</tr> +</table> + +<h3><?php echo T_('Personal Details'); ?></h3> + +<table class="profile"> +<tr> + <th align="left"><?php echo T_('Name'); ?></th> + <td><input type="text" name="pName" size="75" value="<?php echo filter($objectUser->getName(), 'xml'); ?>" /></td> +</tr> +<tr> + <th align="left"><?php echo T_('Homepage'); ?></th> + <td><input type="text" name="pPage" size="75" value="<?php echo filter($objectUser->getHomepage()); ?>" /></td> +</tr> +<tr> + <th align="left"><?php echo T_('Description'); ?></th> + <td><textarea name="pDesc" cols="75" rows="10"><?php echo $objectUser->getContent(); ?></textarea></td> +</tr> +<tr> + <th></th> + <td><input type="submit" name="submitted" value="<?php echo T_('Save Changes'); ?>" /></td> +</tr> +</table> +<h3><?php echo T_('Actions'); ?></h3> +<table class="profile"> +<tr> + <th align="left"><?php echo T_('Export bookmarks'); ?></th> + <td> + <a href="../api/export_html.php"><?php echo T_('HTML file (for browsers)')?></a> / + <a href="../api/posts/all"><?php echo T_('XML file (like del.icio.us)')?></a> / + <a href="../api/export_csv.php"><?php echo T_('CSV file (for spreadsheet tools)')?></a> + </td> +</tr> +<tr><th> </th><td> </td></tr> +<tr><th> </th><td> </td></tr> +</table> + +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/error.404.tpl.php b/data/templates/error.404.tpl.php new file mode 100644 index 0000000..fe9401d --- /dev/null +++ b/data/templates/error.404.tpl.php @@ -0,0 +1,9 @@ +<?php +header('HTTP/1.x 404 Not Found'); +$this->includeTemplate($GLOBALS['top_include']); +if (!$error) { + echo '<h1>'. T_('Not Found') .'</h1>'; + echo '<p>'. T_('The requested URL was not found on this server') .'</p>'; +} +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/error.500.tpl.php b/data/templates/error.500.tpl.php new file mode 100644 index 0000000..1d7f7ae --- /dev/null +++ b/data/templates/error.500.tpl.php @@ -0,0 +1,9 @@ +<?php +header('HTTP/1.x 500 Server error'); +$this->includeTemplate($GLOBALS['top_include']); +if (!$error) { + echo '<h1>'. T_('General server error') .'</h1>'; + echo '<p>'. T_('The requested URL could not be processed') .'</p>'; +} +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/importDelicious.tpl.php b/data/templates/importDelicious.tpl.php new file mode 100644 index 0000000..bc4d892 --- /dev/null +++ b/data/templates/importDelicious.tpl.php @@ -0,0 +1,42 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form id="import" enctype="multipart/form-data" action="<?php echo $formaction; ?>" method="post"> +<table> +<tr valign="top"> + <th align="left"><?php echo T_('File'); ?></th> + <td> + <input type="hidden" name="MAX_FILE_SIZE" value="1024000" /> + <input type="file" name="userfile" size="50" /> + </td> +</tr> +<tr valign="top"> + <th align="left"><?php echo T_('Privacy'); ?></th> + <td> + <select name="status"> + <option value="0"><?php echo T_('Public'); ?></option> + <option value="1"><?php echo T_('Shared with Watchlist'); ?></option> + <option value="2"><?php echo T_('Private'); ?></option> + </select> + </td> +</tr> +<tr> + <td /> + <td><input type="submit" value="<?php echo T_('Import'); ?>" /></td> +</tr> +</table> +</form> + +<h3><?php echo T_('Instructions'); ?></h3> +<ol> + <li><?php echo T_('Log in to the <a href="http://del.icio.us/api/posts/all">export page at del.icio.us</a>'); ?>.</li> + <li><?php echo T_('Save the resulting <abbr title="Extensible Markup Language">XML</abbr> file to your computer'); ?>.</li> + <li><?php echo T_('Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB'); ?>.</li> + <li><?php echo T_('Select the default privacy setting for your imported bookmarks'); ?>.</li> + <li><?php echo T_('Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute'); ?>.</li> +</ol> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/importNetscape.tpl.php b/data/templates/importNetscape.tpl.php new file mode 100644 index 0000000..627a5af --- /dev/null +++ b/data/templates/importNetscape.tpl.php @@ -0,0 +1,50 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<div id="bookmarks"> + <form id="import" enctype="multipart/form-data" action="<?php echo $formaction; ?>" method="post"> + <table> + <tr valign="top"> + <th align="left"><?php echo T_('File'); ?></th> + <td> + <input type="hidden" name="MAX_FILE_SIZE" value="1024000" /> + <input type="file" name="userfile" size="50" /> + </td> + </tr> + <tr valign="top"> + <th align="left"><?php echo T_('Privacy'); ?></th> + <td> + <select name="status"> + <option value="0"><?php echo T_('Public'); ?></option> + <option value="1"><?php echo T_('Shared with Watchlist'); ?></option> + <option value="2"><?php echo T_('Private'); ?></option> + </select> + </td> + </tr> + <tr> + <td /> + <td><input type="submit" value="<?php echo T_('Import'); ?>" /></td> + </tr> + </table> + </form> + + <h3><?php echo T_('Instructions'); ?></h3> + <ol> + <li> + <p><?php echo T_('Export your bookmarks from your browser to a file'); ?>:</p> + <ul> + <li><?php echo T_('Internet Explorer: <kbd>File > Import and Export... > Export Favorites'); ?></kbd></li> + <li><?php echo T_('Mozilla Firefox: <kbd>Bookmarks > Manage Bookmarks... > File > Export...'); ?></kbd></li> + <li><?php echo T_('Netscape: <kbd>Bookmarks > Manage Bookmarks... > Tools > Export...'); ?></kbd></li> + </ul> + </li> + <li><?php echo T_('Click <kbd>Browse...</kbd> to find the saved bookmark file on your computer. The maximum size the file can be is 1MB'); ?>.</li> + <li><?php echo T_('Select the default privacy setting for your imported bookmarks'); ?>.</li> + <li><?php echo T_('Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute'); ?>.</li> + </ol> +</div> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/importStructure.tpl.php b/data/templates/importStructure.tpl.php new file mode 100644 index 0000000..9c54612 --- /dev/null +++ b/data/templates/importStructure.tpl.php @@ -0,0 +1,42 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<div id="bookmarks"> +<form id="import" enctype="multipart/form-data" + action="<?php echo $formaction; ?>" method="post"> +<table> + <tr valign="top"> + <th align="left"><?php echo T_('File'); ?></th> + <td><input type="hidden" name="MAX_FILE_SIZE" value="1024000" /> <input + type="file" name="userfile" size="50" /></td> + </tr> + <tr> + <td /> + <td><input type="submit" value="<?php echo T_('Import'); ?>" /></td> + </tr> +</table> +</form> + +<h3><?php echo T_('Instructions'); ?></h3> +<ol> + <li> + <p><?php echo T_('Create your structure into a simple text file and following this model:');?></p> + <ul> + <li>firstTagOfLevel1</li> + <li> firstTagOfLevel2 <i>(the line starts with two spaces)</i></li> + <li> secondTagOfLevel2</li> + <li> thirdTagOfLevel2</li> + <li>secondTagOfLevel1</li> + <li> fourthTagOfLevel2 <i>(included into secondTagOfLevel1)</i></li> + </ul> + </li> + <li> + <p><?php echo T_('Then import the file. The tags and their relations will be added to your profile.'); ?></p> + </li> +</ol> +</div> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/login.tpl.php b/data/templates/login.tpl.php new file mode 100644 index 0000000..e68ab54 --- /dev/null +++ b/data/templates/login.tpl.php @@ -0,0 +1,41 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<script type="text/javascript"> +window.onload = function() { + document.getElementById("username").focus(); +} +</script> + +<?php +if (!$userservice->isSessionStable()) { + echo '<p class="error">'.T_('Please activate cookies').'</p>'; +} +?> + +<form action="<?php echo $formaction; ?>" method="post"> + <div><input type="hidden" name="query" value="<?php echo $querystring; ?>" /></div> + <table> + <tr> + <th align="left"><label for="username"><?php echo T_('Username'); ?></label></th> + <td><input type="text" id="username" name="username" size="20" /></td> + <td></td> + </tr> + <tr> + <th align="left"><label for="password"><?php echo T_('Password'); ?></label></th> + <td><input type="password" id="password" name="password" size="20" /></td> + <td><input type="checkbox" name="keeppass" value="yes" /> <?php echo T_("Don't ask for my password for 2 weeks"); ?>.</td> + </tr> + <tr> + <td></td> + <td><input type="submit" name="submitted" value="<?php echo T_('Log In'); ?>" /></td> + <td></td> + </tr> + </table> + <p>» <a href="<?php echo ROOT ?>password.php"><?php echo T_('Forgotten your password?') ?></a></p> +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/password.tpl.php b/data/templates/password.tpl.php new file mode 100644 index 0000000..55dbed6 --- /dev/null +++ b/data/templates/password.tpl.php @@ -0,0 +1,26 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<p><?php echo sprintf(T_('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.'), $GLOBALS['sitename']); ?></p> + +<form action="<?php echo $formaction; ?>" method="post"> + <table> + <tr> + <th align="left"><label for="username"><?php echo T_('Username'); ?></label></th> + <td><input type="text" id="username" name="username" size="20" class="required" /></td> + </tr> + <tr> + <th align="left"><label for="email"><?php echo T_('E-mail'); ?></label></th> + <td><input type="text" id="email" name="email" size="40" class="required" /></td> + </tr> + <tr> + <td></td> + <td><input type="submit" name="submitted" value="<?php echo T_('Generate Password'); ?>" /></td> + </tr> + </table> +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/profile.tpl.php b/data/templates/profile.tpl.php new file mode 100644 index 0000000..1e2003a --- /dev/null +++ b/data/templates/profile.tpl.php @@ -0,0 +1,74 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<dl id="profile"> +<dt><?php echo T_('Username'); ?></dt> + <dd><?php echo $user; ?></dd> +<?php +if ($userservice->isLoggedOn() && $currentUser->isAdmin()) { +?> +<dt><?php echo T_('Email'); ?></dt> + <dd><?php echo filter($objectUser->getEmail()) ?></dd> +<?php +} +if ($objectUser->getName() != "") { +?> +<dt><?php echo T_('Name'); ?></dt> + <dd><?php echo filter($objectUser->getName()); ?></dd> +<?php +} +if ($objectUser->getHomepage() != "") { +?> +<dt><?php echo T_('Homepage'); ?></dt> + <dd><a href="<?php echo filter($objectUser->getHomepage()); ?>"><?php echo filter($objectUser->getHomepage()); ?></a></dd> +<?php +} +?> +<dt><?php echo T_('Member Since'); ?></dt> + <dd><?php echo date($GLOBALS['longdate'], strtotime($objectUser->getDatetime())); ?></dd> +<?php +if ($objectUser->getContent() != "") { +?> +<dt><?php echo T_('Description'); ?></dt> + <dd><?php echo $objectUser->getContent(); ?></dd> +<?php +} +$watching = $userservice->getWatchNames($userid); +if ($watching) { +?> + <dt><?php echo T_('Watching'); ?></dt> + <dd> + <?php + $list = ''; + foreach($watching as $watchuser) { + $list .= '<a href="'. createURL('bookmarks', $watchuser) .'">'. $watchuser .'</a>, '; + } + echo substr($list, 0, -2); + ?> + </dd> +<?php +} +$watchnames = $userservice->getWatchNames($userid, true); +if ($watchnames) { +?> + <dt><?php echo T_('Watched By'); ?></dt> + <dd> + <?php + $list = ''; + foreach($watchnames as $watchuser) { + $list .= '<a href="'. createURL('bookmarks', $watchuser) .'">'. $watchuser .'</a>, '; + } + echo substr($list, 0, -2); + ?> + </dd> +<?php +} +?> +<dt><?php echo T_('Bookmarks'); ?></dt> + <dd><a href="<?php echo createURL('bookmarks', $user) ?>"><?php echo T_('Go to bookmarks')?> >></a></dd> +</dl> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/register.tpl.php b/data/templates/register.tpl.php new file mode 100644 index 0000000..da3deec --- /dev/null +++ b/data/templates/register.tpl.php @@ -0,0 +1,49 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<script type="text/javascript"> +window.onload = function() { + document.getElementById("username").focus(); +} +</script> + +<p><?php echo sprintf(T_('Sign up here to create a free %s account. All the information requested below is required'), $GLOBALS['sitename']); ?>.</p> + +<form action="<?php echo $formaction; ?>" method="post"> +<table> +<tr> + <th align="left"><label for="username"><?php echo T_('Username'); ?></label></th> + <td><input type="text" id="username" name="username" size="20" class="required" onkeyup="isAvailable(this, '')" /> </td> + <td id="availability"><?php echo 'โ'.T_(' at least 5 characters, alphanumeric (no spaces, no dots or other special ones)') ?></td> +</tr> +<tr> + <th align="left"><label for="password"><?php echo T_('Password'); ?></label></th> + <td><input type="password" id="password" name="password" size="20" class="required" /></td> + <td></td> +</tr> +<tr> + <th align="left"><label for="email"><?php echo T_('E-mail'); ?></label></th> + <td><input type="text" id="email" name="email" size="40" class="required" /></td> + <td><?php echo 'โ'.T_(' to send you your password if you forget it')?></td> +</tr> + +<?php if(strlen($antispamQuestion)>0) {?> +<tr> + <th align="left"><label for="antispamAnswer"><?php echo T_('Antispam question'); ?></label></th> + <td><input type="text" id="antispamAnswer" name="antispamAnswer" size="40" class="required" value="<?php echo $antispamQuestion; ?>" onfocus="if (this.value == '<?php echo $antispamQuestion; ?>') this.value = '';" onblur="if (this.value == '') this.value = '<?php echo $antispamQuestion; ?>';"/></td> + <td></td> +</tr> +<?php } ?> + +<tr> + <td></td> + <td><input type="submit" name="submitted" value="<?php echo T_('Register'); ?>" /></td> + <td></td> +</tr> +</table> +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/rss.tpl.php b/data/templates/rss.tpl.php new file mode 100644 index 0000000..0f03c06 --- /dev/null +++ b/data/templates/rss.tpl.php @@ -0,0 +1,28 @@ +<?php +echo '<?xml version="1.0" encoding="UTF-8" ?'.">\n"; +?> + +<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"> +<channel> + <title><?php echo $feedtitle; ?></title> + <link><?php echo $feedlink; ?></link> + <description><?php echo $feeddescription; ?></description> + <ttl>60</ttl> + +<?php foreach($bookmarks as $bookmark): ?> + <item> + <title><?php echo $bookmark['title']; ?></title> + <link><?php echo $bookmark['link']; ?></link> + <description><?php echo $bookmark['description']; ?></description> + <dc:creator><?php echo $bookmark['creator']; ?></dc:creator> + <pubDate><?php echo $bookmark['pubdate']; ?></pubDate> + + <?php foreach($bookmark['tags'] as $tag): ?> + <category><?php echo $tag; ?></category> + <?php endforeach; ?> + + </item> +<?php endforeach; ?> + +</channel> +</rss>
\ No newline at end of file diff --git a/data/templates/sidebar.block.common.php b/data/templates/sidebar.block.common.php new file mode 100644 index 0000000..6f1e9f7 --- /dev/null +++ b/data/templates/sidebar.block.common.php @@ -0,0 +1,28 @@ +<?php +$b2tservice =& ServiceFactory::getServiceInstance('Bookmark2TagService'); +$commonTags =& $b2tservice->getRelatedTagsByHash($hash); +$commonTags =& $b2tservice->tagCloud($commonTags, 5, 90, 225, 'alphabet_asc'); + +if ($commonTags && count($commonTags) > 0) { + ?> + +<h2><?php echo T_('Popular Tags'); ?></h2> +<div id="common"> +<p class="tags"><?php +$contents = ''; + +if(strlen($user)==0) { + $cat_url = createURL('tags', '%2$s'); +} + +foreach ($commonTags as $row) { + $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']); + $contents .= '<a href="'. sprintf($cat_url, $user, filter($row['tag'], 'url')) .'" title="'. $row['bCount'] .' '. $entries .'" rel="tag" style="font-size:'. $row['size'] .'">'. filter($row['tag']) .'</a> '; +} +echo $contents ."\n"; +?></p> +</div> + +<?php +} +?> diff --git a/data/templates/sidebar.block.linked.php b/data/templates/sidebar.block.linked.php new file mode 100644 index 0000000..0fa36c9 --- /dev/null +++ b/data/templates/sidebar.block.linked.php @@ -0,0 +1,105 @@ +<?php +/* Service creation: only useful services are created */ +$tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService'); + +require_once('sidebar.linkedtags.inc.php'); + +/* Manage input */ +$user = isset($user)?$user:''; +$userid = isset($userid)?$userid:0; +$currenttag = isset($currenttag)?$currenttag:''; +$summarizeLinkedTags = isset($summarizeLinkedTags)?$summarizeLinkedTags:false; + + +$logged_on_userid = $userservice->getCurrentUserId(); +if ($logged_on_userid === false) { + $logged_on_userid = NULL; +} + +$explodedTags = array(); +if (strlen($currenttag)>0) { + $explodedTags = explode('+', $currenttag); +} else { + if($summarizeLinkedTags == true) { + $orphewTags = $tag2tagservice->getOrphewTags('>', $userid, 4, "nb"); + } else { + $orphewTags = $tag2tagservice->getOrphewTags('>', $userid); + } + + foreach($orphewTags as $orphewTag) { + $explodedTags[] = $orphewTag['tag']; + } +} + +?> + +<?php +if(($logged_on_userid != null) && ($userid === $logged_on_userid)) { + $editingMode = true; +} else { + $editingMode = false; +} + +$this->includeTemplate("dojo.inc"); +?> + +<?php if(count($explodedTags)>0 || $editingMode):?> + +<h2><?php + + +echo T_('Linked Tags').' '; +//if($userid != null) { +$cUser = $userservice->getUser($userid); +//echo '<small><a href="'.createURL('alltags', $cUser['username']).'">('.T_('all tags').')</a></small>'; +//} +?></h2> +<?php //endif?> + +<div id="related"> <?php +if($editingMode) { + echo '<p style="margin-bottom: 13px;text-align:center;">'; + echo ' (<a href="'. createURL('tag2tagadd','') .'" rel="tag">'.T_('Add new link').'</a>) '; + echo ' (<a href="'. createURL('tag2tagdelete','') .'" rel="tag">'.T_('Delete link').'</a>)'; + echo '</p>'; +} + +if(strlen($user)==0) { + $cat_url = createURL('tags', '%2$s'); +} + +$stopList = array(); +foreach($explodedTags as $explodedTag) { + if(!in_array($explodedTag, $stopList)) { + + + + // fathers tag + $fatherTags = $tag2tagservice->getLinkedTags($explodedTag, '>', $userid, true); + if(count($fatherTags)>0) { + foreach($fatherTags as $fatherTag) { + echo '<a href="'. sprintf($cat_url, filter($user, 'url'), filter($fatherTag, 'url')) .'" rel="tag">('. filter($fatherTag) .')</a> '; + } + } + /* + $displayLinkedTags = displayLinkedTags($explodedTag, '>', $userid, $cat_url, $user, $editingMode, null, 1); + echo $displayLinkedTags['output']; + if(is_array($displayLinkedTags['stopList'])) { + $stopList = array_merge($stopList, $displayLinkedTags['stopList']); + }*/ + echo '<div dojoType="dojo.data.ItemFileReadStore" url="'.ROOT.'ajax/getlinkedtags.php?tag='.filter($explodedTag, 'url').'&uId='.$userid.'" jsid="linkedTagStore" ></div>'; + echo '<div dojoType="dijit.Tree" store="linkedTagStore" labelAttr="name" >'; + echo '<script type="dojo/method" event="onClick" args="item">'; + $returnUrl = sprintf($cat_url, filter($user, 'url'), filter('', 'url')); + echo 'window.location = "'.$returnUrl.'"+item.name'; + echo '</script>'; + echo '<script type="dojo/method" event="getLabelClass" args="item">'; + echo 'return \'treeTag\';'; + echo '</script>'; + echo '</div>'; + } + +} +?> </div> + +<?php endif?> diff --git a/data/templates/sidebar.block.menu.php b/data/templates/sidebar.block.menu.php new file mode 100644 index 0000000..ed1069a --- /dev/null +++ b/data/templates/sidebar.block.menu.php @@ -0,0 +1,80 @@ +<?php +/* Service creation: only useful services are created */ +$tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService'); + + +require_once('sidebar.linkedtags.inc.php'); + +/* Manage input */ +$userid = isset($userid)?$userid:0; +$user = isset($user)?$user:null; + + +$logged_on_userid = $userservice->getCurrentUserId(); +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)) { +?> + +<h2> +<?php + echo '<span title="'.sprintf(T_('Tags included into the tag \'%s\''), $GLOBALS['menuTag']).'">'.T_('Menu Tags').'</span> '; + //} +?> +</h2> + + +<div id="related"> +<table> +<?php + if($editingMode) { + echo '<tr><td></td><td>'; + echo ' (<a href="'. createURL('tag2tagadd','menu') .'" rel="tag">'.T_('Add new link').'</a>) '; + echo ' (<a href="'. createURL('tag2tagdelete','menu') .'" rel="tag">'.T_('Delete link').'</a>)'; + echo '</td></tr>'; + } + + $stopList = array(); + foreach($menuTags as $menuTag) { + $tag = $menuTag['tag']; + if(!in_array($tag, $stopList)) { + $displayLinkedTags = displayLinkedTags($tag, '>', $userid, $cat_url, $user, $editingMode, null, 1); + echo $displayLinkedTags['output']; + if(is_array($displayLinkedTags['stopList'])) { + $stopList = array_merge($stopList, $displayLinkedTags['stopList']); + } + } + } +?> +</table> + +<?php $cUser = $userservice->getUser($userid); ?> +<?php if($userid>0): ?> +<?php if($userid==$logged_on_userid): ?> +<p style="text-align:right"><a href="<?php echo createURL('alltags', $cUser['username']); ?>" title="<?php echo T_('See all your tags')?>"><?php echo T_('all your tags'); ?></a> →</p> +<?php else: ?> +<p style="text-align:right"><a href="<?php echo createURL('alltags', $cUser['username']); ?>" title="<?php echo T_('See all tags from this user')?>"><?php echo T_('all tags from this user'); ?></a> →</p> +<?php endif; ?> + +<?php else : ?> +<p style="text-align:right"><a href="<?php echo createURL('populartags', $cUser['username']); ?>" title="<?php echo T_('See popular tags')?>"><?php echo T_('Popular Tags'); ?></a> →</p> +<?php endif; ?> +</div> + +<?php +} +?> diff --git a/data/templates/sidebar.block.menu2.php b/data/templates/sidebar.block.menu2.php new file mode 100644 index 0000000..8329ef3 --- /dev/null +++ b/data/templates/sidebar.block.menu2.php @@ -0,0 +1,58 @@ +<?php +/* Service creation: only useful services are created */ +$tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService'); + +require_once('sidebar.linkedtags.inc.php'); + +/* Manage input */ +$userid = isset($userid)?$userid:0; +$user = isset($user)?$user:null; + + +$logged_on_userid = $userservice->getCurrentUserId(); +if ($logged_on_userid === false) { + $logged_on_userid = NULL; +} + + +$cat_url = createURL('tags', '%2$s'); +$menu2Tags = $GLOBALS['menu2Tags']; + +if (sizeOf($menu2Tags) > 0) { + $this->includeTemplate("dojo.inc"); + ?> + +<h2><?php echo T_('Featured Menu Tags');?></h2> + + +<div id="maintagsmenu" +<?php echo 'title="'.T_('This menu is composed of keywords (tags) organized by admins.').'"'?>> + +<?php +foreach($menu2Tags as $menu2Tag) { + + echo '<div dojoType="dojo.data.ItemFileReadStore" url="'.ROOT.'ajax/getadminlinkedtags.php?tag='.filter($menu2Tag, 'url').'" jsid="linkedTagStore" ></div>'; + echo '<div dojoType="dijit.Tree" store="linkedTagStore" labelAttr="name" >'; + echo '<script type="dojo/method" event="onClick" args="item">'; + $returnUrl = sprintf($cat_url, filter($user, 'url'), filter('', 'url')); + echo 'window.location = "'.$returnUrl.'"+item.name'; + echo '</script>'; + //echo '<script type="dojo/method" event="getLabel" args="item">'; + //echo 'return item.name + "...";'; + //echo '</script>'; + //echo '<script type="dojo/method" event="onMouseOver" args="item">'; + //echo 'i = item.relatedTarget;'; + //echo 'if(i.innerHTML.charAt(i.innerHTML)=="a") alert(i.innerHTML)'; + //echo '</script>'; + //echo '<script type="dojo/method" event="getLabelClass" args="item">'; + //echo 'return \'treeTag\';'; + //echo '</script>'; + echo '</div>'; +} +?> +</div> + + +<?php +} +?> diff --git a/data/templates/sidebar.block.popular.php b/data/templates/sidebar.block.popular.php new file mode 100644 index 0000000..4279620 --- /dev/null +++ b/data/templates/sidebar.block.popular.php @@ -0,0 +1,44 @@ +<?php +/* Service creation: only useful services are created */ +$b2tservice =& ServiceFactory::getServiceInstance('Bookmark2TagService'); + + +if(!isset($user)) { + $user = ''; +} +if(!isset($userid)) { + $userid = NULL; +} + +$logged_on_userid = $userservice->getCurrentUserId(); +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) { +?> + +<h2><?php echo T_('Popular Tags'); ?></h2> +<div id="popular"> + <p class="tags"> + <?php + $contents = ''; + + if(strlen($user)==0) { + $cat_url = createURL('tags', '%2$s'); + } + + foreach ($popularTags as $row) { + $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']); + $contents .= '<a href="'. sprintf($cat_url, $user, filter($row['tag'], 'url')) .'" title="'. $row['bCount'] .' '. $entries .'" rel="tag" style="font-size:'. $row['size'] .'">'. filter($row['tag']) .'</a> '; + } + echo $contents ."\n"; + ?> + </p> +</div> + +<?php +} +?> diff --git a/data/templates/sidebar.block.recent.php b/data/templates/sidebar.block.recent.php new file mode 100644 index 0000000..71f9aa9 --- /dev/null +++ b/data/templates/sidebar.block.recent.php @@ -0,0 +1,39 @@ +<?php +/* Service creation: only useful services are created */ +$b2tservice =& ServiceFactory::getServiceInstance('Bookmark2TagService'); + +/* Manage input */ +$userid = isset($userid)?$userid:NULL; + +$logged_on_userid = $userservice->getCurrentUserId(); +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) { +?> + +<h2><?php echo T_('Recent Tags'); ?></h2> +<div id="recent"> + <?php + $contents = '<p class="tags">'; + + if(!isset($user) || $user == '') { + $user = ''; + $cat_url = createURL('tags', '%2$s'); + } + + foreach ($recentTags as $row) { + $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']); + $contents .= '<a href="'. sprintf($cat_url, $user, filter($row['tag'], 'url')) .'" title="'. $row['bCount'] .' '. $entries .'" rel="tag" style="font-size:'. $row['size'] .'">'. filter($row['tag']) .'</a> '; + } + echo $contents ."</p>\n"; + ?> + <p style="text-align:right"><a href="<?php echo createURL('populartags'); ?>"><?php echo T_('Popular Tags'); ?></a> →</p> +</div> + +<?php +} +?> diff --git a/data/templates/sidebar.block.related.php b/data/templates/sidebar.block.related.php new file mode 100644 index 0000000..182ea83 --- /dev/null +++ b/data/templates/sidebar.block.related.php @@ -0,0 +1,40 @@ +<?php +/* Service creation: only useful services are created */ +$b2tservice =& ServiceFactory::getServiceInstance('Bookmark2TagService'); + + +if(!isset($user)) $user=""; + + +$logged_on_userid = $userservice->getCurrentUserId(); +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) { +?> + +<h2><?php echo T_('Related Tags'); ?></h2> +<div id="related"> + <table> + <?php foreach($relatedTags as $row): ?> + <tr> + <td><a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($row['tag'], 'url')); ?>" rel="tag"><?php echo filter($row['tag']); ?></a> <a href="<?php echo sprintf($cat_url, filter($user, 'url'), filter($currenttag, 'url') .'+'. filter($row['tag'], 'url')); ?>" title="<?php echo $currenttag . '+' . filter($row['tag']); ?>" class="crossTags">+</a></td> + </tr> + <?php endforeach; ?> + </table> +</div> + +<?php + } +} +?> diff --git a/data/templates/sidebar.block.search.php b/data/templates/sidebar.block.search.php new file mode 100644 index 0000000..4e3c801 --- /dev/null +++ b/data/templates/sidebar.block.search.php @@ -0,0 +1,34 @@ +<?php +/* Service creation: only useful services are created */ +$searchhistoryservice =& ServiceFactory::getServiceInstance('SearchHistoryService'); + +$logged_on_userid = $userservice->getCurrentUserId(); +if ($logged_on_userid === false) { + $logged_on_userid = NULL; +} + +$lastSearches = $searchhistoryservice->getAllSearches('all', NULL, 3, NULL, true, false); + +if ($lastSearches && count($lastSearches) > 0) { +?> + +<h2><?php echo T_('Last Searches'); ?></h2> +<div id="searches"> +<table> +<?php +foreach ($lastSearches as $row) { + echo '<tr><td>'; + echo '<a href="'.createURL('search', $range.'/'.$row['shTerms']).'">'; + echo $row['shTerms']; + echo '</a>'; + echo ' <span title="'.T_('Number of bookmarks for this query').'">('.$row['shNbResults'].')</span>'; + echo '</td></tr>'; +} +//echo '<tr><td><a href="'.createURL('users').'">...</a></td></tr>'; +?> + +</table> +</div> +<?php +} +?> diff --git a/data/templates/sidebar.block.tagactions.php b/data/templates/sidebar.block.tagactions.php new file mode 100644 index 0000000..3351866 --- /dev/null +++ b/data/templates/sidebar.block.tagactions.php @@ -0,0 +1,35 @@ +<?php +/* Service creation: only useful services are created */ +//No specific services + +if ($userservice->isLoggedOn()) { + + 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); +?> + +<h2><?php echo T_('Actions'); ?></h2> +<div id="tagactions"> + <ul> + <li><a href="<?php echo $renamelink; ?>"><?php echo $renametext ?></a></li> + <?php if (count($tags) == 1): ?> + <li><a href="<?php echo $deletelink; ?>"><?php echo T_('Delete Tag') ?></a></li> + <?php endif; ?> + <li><a href="<?php echo $tagdesclink; ?>"><?php echo T_('Edit Tag Description') ?></a></li> + <?php if ($GLOBALS['enableCommonTagDescription'] && ($GLOBALS['enableCommonTagDescriptionEditedByAll'] || $currentUser->isAdmin() )): ?> + <li><a href="<?php echo $commondesclink; ?>"><?php echo T_('Edit Tag Common Description') ?></a></li> + <?php endif; ?> + <li><a href="<?php echo $addtag2taglinklink; ?>"><?php echo T_('Create a link to another tag') ?></a></li> + </ul> +</div> + +<?php + } +} +?> diff --git a/data/templates/sidebar.block.users.php b/data/templates/sidebar.block.users.php new file mode 100644 index 0000000..3ad18bc --- /dev/null +++ b/data/templates/sidebar.block.users.php @@ -0,0 +1,34 @@ +<?php +/* Service creation: only useful services are created */ +//No specific services + +$logged_on_userid = $userservice->getCurrentUserId(); +if ($logged_on_userid === false) { + $logged_on_userid = NULL; +} +$lastUsers = $userservice->getUsers(3); + +if ($lastUsers && count($lastUsers) > 0) { +?> + +<h2><?php echo T_('New Users'); ?></h2> +<div id="users"> +<table> +<?php +foreach ($lastUsers as $row) { + echo '<tr><td>'; + echo '<a href="'.createURL('profile', $row['username']).'">'; + echo $row['username']; + echo '</a>'; + echo ' (<a href="'.createURL('bookmarks', $row['username']).'">'.T_('bookmarks').'</a>)'; + echo '</td></tr>'; +} +//echo '<tr><td><a href="'.createURL('users').'">...</a></td></tr>'; +?> + +</table> +<p style="text-align:right"><a href="<?php echo createURL('users'); ?>" title="<?php echo T_('See all users')?>"><?php echo T_('All users'); ?></a> →</p> +</div> +<?php +} +?> diff --git a/data/templates/sidebar.block.watchlist.php b/data/templates/sidebar.block.watchlist.php new file mode 100644 index 0000000..8f4984e --- /dev/null +++ b/data/templates/sidebar.block.watchlist.php @@ -0,0 +1,60 @@ +<?php +/* Service creation: only useful services are created */ +//No specific services + +$watching = $userservice->getWatchNames($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; + } +} + +?> + +<?php if(count($closeContacts)>0):?> +<h2 title="<?php echo T_('Close contacts are mutual contacts');?>"><?php echo ' &harr '. T_('Close contacts'); ?></h2> +<div id="watching"> + <ul> + <?php foreach($closeContacts as $watchuser): ?> + <li><a href="<?php echo createURL('bookmarks', $watchuser); ?>"><?php echo $watchuser; ?></a> </li> + <?php endforeach; ?> + </ul> +</div> +<?php endif; ?> + + +<h2><?php echo ' → '. T_('Watching'); ?></h2> +<div id="watching"> + <ul> + <?php if($userservice->isLoggedOn() && $currentUser->getUsername() == $user): ?> + <li> + <form action="<?php echo createURL('watch', '');?>" method="post"> + <input type="text" name="contact" value="<?php echo T_('Add a contact...');?>" onfocus="if (this.value == '<?php echo T_('Add a contact...');?>') this.value = '';" onblur="if (this.value == '') this.value = '<?php echo T_('Add a contact...');?>';" title="<?php echo T_('Type a username to add it to your contacts.') ?>" /> + </form> + </li> + <?php endif; ?> + + <?php foreach($watching as $watchuser): ?> + <li><a href="<?php echo createURL('bookmarks', $watchuser); ?>"><?php echo $watchuser; ?></a> + <?php if($userservice->isLoggedOn() && $currentUser->getUsername() == $user): ?> + - <a href="<?php echo createUrl('watch','?contact='.$watchuser); ?>" title="<?php echo T_('Remove this contact'); ?>">x<a/> + </li> + <?php endif; ?> + <?php endforeach; ?> + + </ul> +</div> + +<h2><?php echo ' ← '. T_('Watched By'); ?></h2> +<div id="watching"> + <ul> + <?php foreach($watchedBy as $watchuser): ?> + <li><a href="<?php echo createURL('bookmarks', $watchuser); ?>"><?php echo $watchuser; ?></a> </li> + <?php endforeach; ?> + </ul> + +</div> diff --git a/data/templates/sidebar.block.watchstatus.php b/data/templates/sidebar.block.watchstatus.php new file mode 100644 index 0000000..99574aa --- /dev/null +++ b/data/templates/sidebar.block.watchstatus.php @@ -0,0 +1,28 @@ +<?php +/* Service creation: only useful services are created */ +//No specific services + + +if ($userservice->isLoggedOn()) { + + 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); +?> + +<h2><?php echo T_('Actions'); ?></h2> +<div id="watchlist"> + <ul> + <li><a href="<?php echo $linkAddress ?>"><?php echo $linkText ?></a></li> + </ul> +</div> + +<?php + } +} +?>
\ No newline at end of file diff --git a/data/templates/sidebar.linkedtags.inc.php b/data/templates/sidebar.linkedtags.inc.php new file mode 100644 index 0000000..555eafc --- /dev/null +++ b/data/templates/sidebar.linkedtags.inc.php @@ -0,0 +1,84 @@ +<?php +/* +To be inserted into blocks where structured tags must be displayed in a tree format. +*/ + +function displayLinkedTags($tag, $linkType, $uId, $cat_url, $user, $editingMode =false, $precedentTag =null, $level=0, $stopList=array()) { + + if(in_array($tag, $stopList)) { + return array('output' => '', 'stoplist' => $stopList); + } + + $tag2tagservice =& ServiceFactory::getServiceInstance('Tag2TagService'); + $tagstatservice =& ServiceFactory::getServiceInstance('TagStatService'); + + // link '>' + if($level>1) { + if($editingMode) { + $link = '<small><a href="'.createURL('tag2tagedit', $precedentTag.'/'.$tag).'" title="'._('Edit link').'">></a> </small>'; + } else { + $link = '> '; + } + } else { + $link = ''; + } + + $output = ''; + $output.= '<tr>'; + $output.= '<td></td>'; + $output.= '<td>'; + $output.= $level == 1?'<b>':''; + $output.= str_repeat(' ', $level*2) .$link.'<a href="'. sprintf($cat_url, filter($user, 'url'), filter($tag, 'url')) .'" rel="tag">'. filter($tag) .'</a>'; + $output.= $level == 1?'</b>':''; + //$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.= '<span title="'.T_('Synonyms:').' '.$synonymList.'">, etc</span>'; + } + + /*if($editingMode) { + $output.= ' ('; + $output.= '<a href="'.createURL('tag2tagadd', $tag).'" title="'._('Add a subtag').'">+</a>'; + if(1) { + $output.= ' - '; + $output.= '<a href="'.createURL('tag2tagdelete', $tag).'">-</a>'; + } + $output.= ')'; + }*/ + $output.= '</td>'; + $output.= '</tr>'; + + $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); +} + +?> diff --git a/data/templates/sidebar.tpl.php b/data/templates/sidebar.tpl.php new file mode 100644 index 0000000..e823af5 --- /dev/null +++ b/data/templates/sidebar.tpl.php @@ -0,0 +1,19 @@ +<?php if($GLOBALS['enableAdminColors']!=false && isset($userid) && $userservice->isAdmin($userid)): ?> +<div id="sidebar" class="adminBackground"> +<?php else: ?> +<div id="sidebar"> +<?php endif ?> + + +<?php +echo $GLOBALS['sidebarTopMessage'].' '; + +$size = count($sidebar_blocks); +for ($i = 0; $i < $size; $i++) { + $this->includeTemplate('sidebar.block.'. $sidebar_blocks[$i]); +} + +echo $GLOBALS['sidebarBottomMessage']; +?> + +</div> diff --git a/data/templates/tag2tagadd.tpl.php b/data/templates/tag2tagadd.tpl.php new file mode 100644 index 0000000..5c82223 --- /dev/null +++ b/data/templates/tag2tagadd.tpl.php @@ -0,0 +1,57 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form action="<?= $formaction ?>" method="post"> + +<p align=right" style="float:right"> +<small style="text-align:right"><?php echo T_('Note: use "=" to make synonym two tags. e.g.: france=frenchcountry')?></small><br/> +<small style="text-align:right"><?php echo T_('Note: use ">" to include one tag in another. e.g.: europe>france>paris')?></small><br/> +</p> + +<p><?php echo T_('Create new link:')?></p> +<p> +<input type="text" name="tag1" value="<?php echo $tag1 ?>"/> +<input type="text" name="linkType" value=">" size="1" maxlength="1"/> +<input type="text" name="tag2" /> +</p> +<p> +<small style="text-align:right"><?php echo sprintf(T_('Note: include a tag into \'%s\' tag (e.g. %s>countries) display the tag into the menu box'), $GLOBALS['menuTag'], $GLOBALS['menuTag'])?></small> +</p> +<!--p><?php echo T_('Are you sure?'); ?></p--> +<p> + <input type="submit" name="confirm" value="<?php echo T_('Create'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<?php +if(count($links)>0) { +echo T_("Existing links:"); +foreach($links as $link) { + echo '<span style="white-space:nowrap;margin-left:25px;">'; + if($link['tag1'] == $tag1 || $link['tag1'] == $tag2) { + $textTag1 = '<b>'.$tag1.'</b>'; + } else { + $textTag1 = $link['tag1']; + } + if($link['tag2'] == $tag1 || $link['tag2'] == $tag2) { + $textTag2 = '<b>'.$tag2.'</b>'; + } else { + $textTag2 = $link['tag2']; + } + + echo $textTag1.' '.$link['relationType'].' '.$textTag2; + echo "</span> "; +} +} else { + echo T_('No links'); +} + +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/tag2tagdelete.tpl.php b/data/templates/tag2tagdelete.tpl.php new file mode 100644 index 0000000..2f0715b --- /dev/null +++ b/data/templates/tag2tagdelete.tpl.php @@ -0,0 +1,49 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form action="<?= $formaction ?>" method="post"> +<!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" /> +<input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /--> +<p> +<input type="text" name="tag1" value="<?php echo $tag1 ?>"/> +<input type="text" name="linkType" value=">" size="1" maxlength="1"/> +<input type="text" name="tag2" value="<?php echo $tag2 ?>"/> +</p> +<p><?php echo T_('Are you sure?'); ?></p> +<p> + <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('No'); ?>" /> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<?php +if(count($links)>0) { +echo T_("Existing links:"); +foreach($links as $link) { + echo '<span style="white-space:nowrap;margin-left:25px;">'; + if($link['tag1'] == $tag1 || $link['tag1'] == $tag2) { + $textTag1 = '<b>'.$tag1.'</b>'; + } else { + $textTag1 = $link['tag1']; + } + if($link['tag2'] == $tag1 || $link['tag2'] == $tag2) { + $textTag2 = '<b>'.$tag2.'</b>'; + } else { + $textTag2 = $link['tag2']; + } + + echo $textTag1.' '.$link['relationType'].' '.$textTag2; + echo "</span> "; +} +} else { + echo T_('No links'); +} + +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/tag2tagedit.tpl.php b/data/templates/tag2tagedit.tpl.php new file mode 100644 index 0000000..740a654 --- /dev/null +++ b/data/templates/tag2tagedit.tpl.php @@ -0,0 +1,73 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form action="<?= $formdeleteaction ?>" method="post"> +<p><?php echo T_('Delete the link')?></p> +<!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" /> +<input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /--> +<p> +<input type="text" name="tag1" value="<?php echo $tag1 ?>"/> +<input type="text" name="linkType" value=">" size="1" maxlength="1"/> +<input type="text" name="tag2" value="<?php echo $tag2 ?>"/> +</p> +<p><?php echo T_('Are you sure?'); ?></p> +<p> + <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('No'); ?>" /> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<hr /> + +<form action="<?= $formaddaction ?>" method="post"> +<p><?php echo T_('Create new link')?></p> +<p> +<input type="text" name="tag1" value="<?php echo $tag1 ?>"/> +<input type="text" name="linkType" value=">" size="1" maxlength="1"/> +<input type="text" name="tag2" /> +</p> +<!--p><?php echo T_('Are you sure?'); ?></p--> +<p> + <input type="submit" name="confirm" value="<?php echo T_('Create'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<hr /> + +<?php +if(count($links)>0) { +echo T_("Existing links:"); +foreach($links as $link) { + echo '<span style="white-space:nowrap;margin-left:25px;">'; + if($link['tag1'] == $tag1 || $link['tag1'] == $tag2) { + $textTag1 = '<b>'.$tag1.'</b>'; + } else { + $textTag1 = $link['tag1']; + } + if($link['tag2'] == $tag1 || $link['tag2'] == $tag2) { + $textTag2 = '<b>'.$tag2.'</b>'; + } else { + $textTag2 = $link['tag2']; + } + + echo $textTag1.' '.$link['relationType'].' '.$textTag2; + echo "</span> "; +} +} else { + echo T_('No links'); +} + +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/tagcommondescriptionedit.tpl.php b/data/templates/tagcommondescriptionedit.tpl.php new file mode 100644 index 0000000..d3a006a --- /dev/null +++ b/data/templates/tagcommondescriptionedit.tpl.php @@ -0,0 +1,48 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); + +?> +<script type="text/javascript"> +window.onload = function() { + document.getElementById("description").focus(); +} +</script> +<form action="<?php echo $formaction; ?>" method="post"> +<table> +<tr> + <th align="left"><?php echo T_('Description'); ?></th> + <td><textarea name="description" cols="75" rows="10"><?php echo $description['cdDescription']; ?></textarea></td> +</tr> +<tr> + <td></td> + <td> + <?php + if(strlen($description['cdDatetime'])>0) { + echo T_('Last modification:').' '.$description['cdDatetime'].', '; + $lastUser = $userservice->getUser($description['uId']); + echo '<a href="'.createURL('profile', $lastUser['username']).'">'.$lastUser['username'].'</a>'; + } + ?> + </td> + <td></td> +</tr> +<tr> + <td></td> + <td> + <input type="submit" name="confirm" value="<?php echo T_('Update'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> + </td> + <td></td> +</tr> +</table> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> +<div><input type="hidden" name="tag" value="<?php echo $tag; ?>" /></div> +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/tagdelete.tpl.php b/data/templates/tagdelete.tpl.php new file mode 100644 index 0000000..3e9744a --- /dev/null +++ b/data/templates/tagdelete.tpl.php @@ -0,0 +1,20 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<form action="<?= $formaction ?>" method="post"> +<p><?php echo T_('Are you sure?'); ?></p> +<p> + <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('No'); ?>" /> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/tagedit.tpl.php b/data/templates/tagedit.tpl.php new file mode 100644 index 0000000..5edfbc7 --- /dev/null +++ b/data/templates/tagedit.tpl.php @@ -0,0 +1,34 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> +<script type="text/javascript"> +window.onload = function() { + document.getElementById("description").focus(); +} +</script> +<form action="<?php echo $formaction; ?>" method="post"> +<table> +<tr> + <th align="left"><?php echo T_('Description'); ?></th> + <td><textarea name="description" cols="75" rows="10"><?php echo $description['tDescription']; ?></textarea></td> +</tr> +<tr> + <td></td> + <td> + <input type="submit" name="confirm" value="<?php echo T_('Update'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> + </td> + <td></td> +</tr> +</table> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> +<div><input type="hidden" name="tag" value="<?php echo $tag; ?>" /></div> +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/tagrename.tpl.php b/data/templates/tagrename.tpl.php new file mode 100644 index 0000000..ea8b516 --- /dev/null +++ b/data/templates/tagrename.tpl.php @@ -0,0 +1,41 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> +<script type="text/javascript"> +window.onload = function() { + document.getElementById("new").focus(); +} +</script> +<form action="<?php echo $formaction; ?>" method="post"> +<table> +<tr> + <th align="left"><?php echo T_('Old'); ?></th> + <td><input type="text" name="old" id="old" value="<?php echo $old; ?>" /></td> + <td>← <?php echo T_('Required'); ?></td> +</tr> +<tr> + <th align="left"><?php echo T_('New'); ?></th> + <td><input type="text" name="new" id="new" value="" /></td> + <td>← <?php echo T_('Required'); ?></td> +</tr> +<tr> + <td></td> + <td> + <input type="submit" name="confirm" value="<?php echo T_('Rename'); ?>" /> + <input type="submit" name="cancel" value="<?php echo T_('Cancel'); ?>" /> + </td> + <td></td> +</tr> + +</table> +</p> + +<?php if (isset($referrer)): ?> +<div><input type="hidden" name="referrer" value="<?php echo $referrer; ?>" /></div> +<?php endif; ?> + +</form> + +<?php +$this->includeTemplate($GLOBALS['bottom_include']); +?>
\ No newline at end of file diff --git a/data/templates/tags.tpl.php b/data/templates/tags.tpl.php new file mode 100644 index 0000000..d6259cc --- /dev/null +++ b/data/templates/tags.tpl.php @@ -0,0 +1,31 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); +?> + +<?php +if ($tags && count($tags) > 0) { +?> + +<p id="sort"> + <?php echo T_("Sort by:"); ?> + <a href="?sort=alphabet_asc"><?php echo T_("Alphabet"); ?></a><span> / </span> + <a href="?sort=popularity_asc"><?php echo T_("Popularity"); ?></a> +</p> +<p class="tags"> + +<?php +$contents = ''; +foreach ($tags as $row) { + $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']); + $contents .= '<a href="'. sprintf($cat_url, $user, filter($row['tag'], 'url')) .'" title="'. $row['bCount'] .' '. $entries .'" rel="tag" style="font-size:'. $row['size'] .'">'. filter($row['tag']) .'</a> '; +} +echo $contents ."\n"; +?> + +</p> + +<?php +} +$this->includeTemplate('sidebar.tpl'); +$this->includeTemplate($GLOBALS['bottom_include']); +?> diff --git a/data/templates/toolbar.inc.php b/data/templates/toolbar.inc.php new file mode 100644 index 0000000..fa7170a --- /dev/null +++ b/data/templates/toolbar.inc.php @@ -0,0 +1,35 @@ +<?php +if ($userservice->isLoggedOn()) { + $cUserId = $userservice->getCurrentUserId(); + $cUsername = $currentUser->getUsername(); +?> + + <ul id="navigation"> + <li><a href="<?php echo createURL(''); ?>"><?php echo T_('Home'); ?></a></li> + <li><a href="<?php echo createURL('bookmarks', $cUsername); ?>"><?php echo T_('Bookmarks'); ?></a></li> + <li><a href="<?php echo createURL('alltags', $cUsername); ?>"><?php echo T_('Tags'); ?></a></li> + <li><a href="<?php echo createURL('watchlist', $cUsername); ?>"><?php echo T_('Watchlist'); ?></a></li> + <li><a href="<?php echo $userservice->getProfileUrl($cUserId, $cUsername); ?>"><?php echo T_('Profile'); ?></a></li> + <li><a href="<?php echo createURL('bookmarks', $cUsername . '?action=add'); ?>"><?php echo T_('Add a Bookmark'); ?></a></li> + <li class="access"><?php echo $cUsername?><a href="<?php echo ROOT ?>?action=logout">(<?php echo T_('Log Out'); ?>)</a></li> + <li><a href="<?php echo createURL('about'); ?>"><?php echo T_('About'); ?></a></li> + <?php if($currentUser->isAdmin()): ?>
+ <li><a href="<?php echo createURL('admin', ''); ?>"><?php echo '['.T_('Admin').']'; ?></a></li>
+ <?php endif; ?> + + </ul> + +<?php +} else { +?> + <ul id="navigation"> + <li><a href="<?php echo createURL(''); ?>"><?php echo T_('Home'); ?></a></li> + <li><a href="<?php echo createURL('populartags'); ?>"><?php echo T_('Popular Tags'); ?></a></li> + <li><a href="<?php echo createURL('about'); ?>"><?php echo T_('About'); ?></a></li> + <li class="access"><a href="<?php echo createURL('login'); ?>"><?php echo T_('Log In'); ?></a></li> + <li class="access"><a href="<?php echo createURL('register'); ?>"><?php echo T_('Register'); ?></a></li> + </ul> + +<?php +} +?> diff --git a/data/templates/top.inc.php b/data/templates/top.inc.php new file mode 100644 index 0000000..13b0347 --- /dev/null +++ b/data/templates/top.inc.php @@ -0,0 +1,61 @@ +<?php header('Content-Type: text/html; charset=utf-8'); ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title><?php echo filter($GLOBALS['sitename'] .(isset($pagetitle) ? ' ยป ' . $pagetitle : '')); ?></title> + <link rel="icon" type="image/png" href="<?php echo ROOT ?>icon.png" /> + <link rel="stylesheet" type="text/css" href="<?php echo ROOT ?>scuttle.css" /> + <link rel="search" type="application/opensearchdescription+xml" href="<?php echo ROOT ?>api/opensearch.php" title="<?php echo $GLOBALS['sitename'] ?>"/> +<?php +if(isset($rsschannels)) { + $size = count($rsschannels); + for ($i = 0; $i < $size; $i++) { + echo ' <link rel="alternate" type="application/rss+xml" title="'. $rsschannels[$i][0] .'" href="'. $rsschannels[$i][1] .'" />'; + } +} +?> + <link rel="stylesheet" type="text/css" + href="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dijit/themes/nihilo/nihilo.css" /> + +<?php if (isset($loadjs)) :?> + <script type="text/javascript" src="<?php echo ROOT ?>jsScuttle.php"></script> +<?php endif ?> + + </head> + + <body class="nihilo"> +<!-- the class is used by Dojo widgets --> + +<?php +$headerstyle = ''; +if(isset($_GET['popup'])) { + $headerstyle = ' class="popup"'; +} +?> + +<div id="header" <?php echo $headerstyle; ?>> +<h1><a href="<?php echo ROOT ?>"><?php echo $GLOBALS['sitename']; ?></a></h1> +<?php +if(!isset($_GET['popup'])) { + $this->includeTemplate('toolbar.inc'); +} +?></div> + +<?php +if (isset($subtitle)) { + echo '<h2>'. $subtitle ."</h2>\n"; +} +if(DEBUG_MODE) { + echo '<p class="error">'. T_('Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.inc.php.') ."</p>\n"; +} +if (isset($error) && $error!='') { + echo '<p class="error">'. $error ."</p>\n"; +} +if (isset($msg) && $msg!='') { + echo '<p class="success">'. $msg ."</p>\n"; +} +if (isset($tipMsg) && $tipMsg!='') { + echo '<p class="tipMsg">'. $tipMsg ."</p>\n"; +} +?> diff --git a/data/templates/users.tpl.php b/data/templates/users.tpl.php new file mode 100644 index 0000000..c209f94 --- /dev/null +++ b/data/templates/users.tpl.php @@ -0,0 +1,26 @@ +<?php +$this->includeTemplate($GLOBALS['top_include']); + +if ($users && count($users) > 0) { +?> + +<!--p id="sort"> + <?php echo T_("Sort by:"); ?> + <a href="?sort=alphabet_asc"><?php echo T_("Alphabet"); ?></a><span> / </span> + <a href="?sort=popularity_asc"><?php echo T_("Popularity"); ?></a> +</p--> +<p class="users"> +<ul> +<?php +$contents = '<'; +foreach ($users as $row) { + echo '<li><strong>'.$row['username'].'</strong> (<a href="'.createURL('profile', $row['username']).'">'.T_('profile').'</a> '.T_('created in').' '.date('M Y',strtotime($row['uDatetime'])).') : <a href="'.createURL('bookmarks', $row['username']).'">'.T_('bookmarks').'</a></li>'; +} +?> +</ul> +</p> + +<?php +} +$this->includeTemplate($GLOBALS['bottom_include']); +?> |