' . $sql : '') . ' ';
+
+ if ($this->transaction)
+ {
+ $this->sql_transaction('rollback');
+ }
+
+ trigger_error($message, E_USER_ERROR);
+ }
+
+ $result = array(
+ 'message' => @sqlite_error_string(@sqlite_last_error($this->db_connect_id)),
+ 'code' => @sqlite_last_error($this->db_connect_id)
+ );
+
+ return $result;
+ }
+
+} // class sql_db
+
+} // if ... define
+
+?>
\ No newline at end of file
diff --git a/includes/php-gettext/AUTHORS b/includes/php-gettext/AUTHORS
new file mode 100644
index 0000000..da6ade7
--- /dev/null
+++ b/includes/php-gettext/AUTHORS
@@ -0,0 +1,3 @@
+Danilo Segan
+Nico Kaiser (contributed most changes between 1.0.2 and 1.0.3, bugfix for 1.0.5)
+Steven Armstrong (gettext.inc, leading to 1.0.6)
diff --git a/includes/php-gettext/COPYING b/includes/php-gettext/COPYING
new file mode 100644
index 0000000..5b6e7c6
--- /dev/null
+++ b/includes/php-gettext/COPYING
@@ -0,0 +1,340 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ 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
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ , 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
diff --git a/includes/php-gettext/ChangeLog b/includes/php-gettext/ChangeLog
new file mode 100644
index 0000000..5e0949d
--- /dev/null
+++ b/includes/php-gettext/ChangeLog
@@ -0,0 +1,144 @@
+2006-02-07 Danilo Å egan
+
+ * examples/pigs_dropin.php: comment-out bind_textdomain_codeset
+
+ * gettext.inc (T_bind_textdomain_codeset): bind_textdomain_codeset
+ is available only in PHP 4.2.0+ (thanks to Jens A. Tkotz).
+
+ * Makefile: Include gettext.inc in DIST_FILES, VERSION up to
+ 1.0.7.
+
+2006-02-03 Danilo Å egan
+
+ Added setlocale() emulation as well.
+
+ * examples/pigs_dropin.php: Use T_setlocale() and locale_emulation().
+ * examples/pigs_fallback.php: Use T_setlocale() and locale_emulation().
+
+ * gettext.inc: Added globals $EMULATEGETTEXT and $CURRENTLOCALE.
+ (locale_emulation): Whether emulation is active.
+ (_check_locale): Rewrite.
+ (_setlocale): Added emulated setlocale function.
+ (T_setlocale): Wrapper around _setlocale.
+ (_get_reader): Use variables and _setlocale.
+
+2006-02-02 Danilo Å egan
+
+ Fix bug #12192.
+
+ * examples/locale/sr_CS/LC_MESSAGES/messages.po: Correct grammar.
+ * examples/locale/sr_CS/LC_MESSAGES/messages.mo: Rebuild.
+
+2006-02-02 Danilo Å egan
+
+ Fix bug #15419.
+
+ * streams.php: Support for PHP 5.1.1 fread() which reads most 8kb.
+ (Fix by Piotr Szotkowski )
+
+2006-02-02 Danilo Å egan
+
+ Merge Steven Armstrong's changes, supporting standard gettext
+ interfaces:
+
+ * examples/*: Restructured examples.
+ * gettext.inc: Added.
+ * AUTHORS: Added Steven.
+ * Makefile (VERSION): Up to 1.0.6.
+
+2006-01-28 Nico Kaiser
+
+ * gettext.php (select_string): Fix "true" <-> 1 difference of PHP
+
+2005-07-29 Danilo Å egan
+
+ * Makefile (VERSION): Up to 1.0.5.
+
+2005-07-29 Danilo Å egan
+
+ Fixes bug #13850.
+
+ * gettext.php (gettext_reader): check $Reader->error as well.
+
+2005-07-29 Danilo Å egan
+
+ * Makefile (VERSION): Up to 1.0.4.
+
+2005-07-29 Danilo Å egan
+
+ Fixes bug #13771.
+
+ * gettext.php (gettext_reader->get_plural_forms): Plural forms
+ header extraction regex change. Reported by Edgar Gonzales.
+
+2005-02-28 Danilo Å egan
+
+ * AUTHORS: Added Nico to the list.
+
+ * Makefile (VERSION): Up to 1.0.3.
+
+ * README: Updated.
+
+2005-02-28 Danilo Å egan
+
+ * gettext.php: Added pre-loading, code documentation, and many
+ code clean-ups by Nico Kaiser .
+
+2005-02-28 Danilo Å egan
+
+ * streams.php (FileReader.read): Handle read($bytes = 0).
+
+ * examples/pigs.php: Prefix gettext function names with T or T_.
+
+ * examples/update: Use the same keywords T_ and T_ngettext.
+
+ * streams.php: Added CachedFileReader.
+
+2003-11-11 Danilo Å egan
+
+ * gettext.php: Added hashing to find_string.
+
+2003-11-01 Danilo Å egan
+
+ * Makefile (DIST_FILES): Replaced LICENSE with COPYING.
+ (VERSION): Up to 1.0.2.
+
+ * AUTHORS: Minor edits.
+
+ * README: Minor edits.
+
+ * COPYING: Removed LICENSE, added this file.
+
+ * gettext.php: Added copyright notice and disclaimer.
+ * streams.php: Same.
+ * examples/pigs.php: Same.
+
+2003-10-23 Danilo Å egan
+
+ * Makefile: Upped version to 1.0.1.
+
+ * gettext.php (gettext_reader): Remove a call to set_total_plurals.
+ (set_total_plurals): Removed unused function for some better days.
+
+2003-10-23 Danilo Å egan
+
+ * Makefile: Added, version 1.0.0.
+
+ * examples/*: Added an example of usage.
+
+ * README: Described all the crap.
+
+2003-10-22 Danilo Å egan
+
+ * gettext.php: Plural forms implemented too.
+
+ * streams.php: Added FileReader for direct access to files (no
+ need to keep file in memory).
+
+ * gettext.php: It works, except for plural forms.
+
+ * streams.php: Created abstract class StreamReader.
+ Added StringReader class.
+
+ * gettext.php: Started writing gettext_reader.
+
diff --git a/includes/php-gettext/Makefile b/includes/php-gettext/Makefile
new file mode 100644
index 0000000..2dba911
--- /dev/null
+++ b/includes/php-gettext/Makefile
@@ -0,0 +1,32 @@
+PACKAGE = php-gettext-$(VERSION)
+VERSION = 1.0.7
+
+DIST_FILES = \
+ gettext.php \
+ gettext.inc \
+ streams.php \
+ AUTHORS \
+ ChangeLog \
+ README \
+ COPYING \
+ Makefile \
+ examples/index.php \
+ examples/pigs_dropin.php \
+ examples/pigs_fallback.php \
+ examples/locale/sr_CS/LC_MESSAGES/messages.po \
+ examples/locale/sr_CS/LC_MESSAGES/messages.mo \
+ examples/locale/de_CH/LC_MESSAGES/messages.po \
+ examples/locale/de_CH/LC_MESSAGES/messages.mo \
+ examples/update
+
+dist:
+ if [ -d $(PACKAGE) ]; then \
+ rm -rf $(PACKAGE); \
+ fi; \
+ mkdir $(PACKAGE); \
+ if [ -d $(PACKAGE) ]; then \
+ cp -rp --parents $(DIST_FILES) $(PACKAGE); \
+ tar cvzf $(PACKAGE).tar.gz $(PACKAGE); \
+ rm -rf $(PACKAGE); \
+ fi;
+
diff --git a/includes/php-gettext/README b/includes/php-gettext/README
new file mode 100644
index 0000000..c7525e2
--- /dev/null
+++ b/includes/php-gettext/README
@@ -0,0 +1,189 @@
+PHP-gettext 1.0
+
+Copyright 2003, 2006 -- Danilo "angry with PHP[1]" Segan
+Licensed under GPLv2 (or any later version, see COPYING)
+
+[1] PHP is actually cyrillic, and translates roughly to
+ "works-doesn't-work" (UTF-8: Ради-Ðе-Ради)
+
+
+Introduction
+
+ How many times did you look for a good translation tool, and
+ found out that gettext is best for the job? Many times.
+
+ How many times did you try to use gettext in PHP, but failed
+ miserably, because either your hosting provider didn't support
+ it, or the server didn't have adequate locale? Many times.
+
+ Well, this is a solution to your needs. It allows using gettext
+ tools for managing translations, yet it doesn't require gettext
+ library at all. It parses generated MO files directly, and thus
+ might be a bit slower than the (maybe provided) gettext library.
+
+ PHP-gettext is a simple reader for GNU gettext MO files. Those
+ are binary containers for translations, produced by GNU msgfmt.
+
+Why?
+
+ I got used to having gettext work even without gettext
+ library. It's there in my favourite language Python, so I was
+ surprised that I couldn't find it in PHP. I even Googled for it,
+ but to no avail.
+
+ So, I said, what the heck, I'm going to write it for this
+ disguisting language of PHP, because I'm often constrained to it.
+
+Features
+
+ o Support for simple translations
+ Just define a simple alias for translate() function (suggested
+ use of _() or gettext(); see provided example).
+
+ o Support for ngettext calls (plural forms, see a note under bugs)
+ You may also use plural forms. Translations in MO files need to
+ provide this, and they must also provide "plural-forms" header.
+ Please see 'info gettext' for more details.
+
+ o Support for reading straight files, or strings (!!!)
+ Since I can imagine many different backends for reading in the MO
+ file data, I used imaginary abstract class StreamReader to do all
+ the input (check streams.php). For your convenience, I've already
+ provided two classes for reading files: FileReader and
+ StringReader (CachedFileReader is a combination of the two: it
+ loads entire file contents into a string, and then works on that).
+ See example below for usage. You can for instance use StringReader
+ when you read in data from a database, or you can create your own
+ derivative of StreamReader for anything you like.
+
+
+Bugs
+
+ Plural-forms field in MO header (translation for empty string,
+ i.e. "") is treated according to PHP syntactic rules (it's
+ eval()ed). Since these should actually follow C syntax, there are
+ some problems.
+
+ For instance, I'm used to using this:
+ Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : \
+ n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;
+ but it fails with PHP (it sets $plural=2 instead of 0 for $n==1).
+
+ The fix is usually simple, but I'm lazy to go into the details of
+ PHP operator precedence, and maybe try to fix it. In here, I had
+ to put everything after the first ':' in parenthesis:
+ Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : \
+ (n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);
+ That works, and I'm satisfied.
+
+ Besides this one, there are probably a bunch of other bugs, since
+ I hate PHP (did I mention it already? no? strange), and don't
+ know it very well. So, feel free to fix any of those and report
+ them back to me at .
+
+Usage
+
+ Put files streams.php and gettext.php somewhere you can load them
+ from, and require 'em in where you want to use them.
+
+ Then, create one 'stream reader' (a class that provides functions
+ like read(), seekto(), currentpos() and length()) which will
+ provide data for the 'gettext_reader', with eg.
+ $streamer = new FileStream('data.mo');
+
+ Then, use that as a parameter to gettext_reader constructor:
+ $wohoo = new gettext_reader($streamer);
+
+ If you want to disable pre-loading of entire message catalog in
+ memory (if, for example, you have a multi-thousand message catalog
+ which you'll use only occasionally), use "false" for second
+ parameter to gettext_reader constructor:
+ $wohoo = new gettext_reader($streamer, false);
+
+ From now on, you have all the benefits of gettext data at your
+ disposal, so may run:
+ print $wohoo->translate("This is a test");
+ print $wohoo->ngettext("%d bird", "%d birds", $birds);
+
+ You might need to pass parameter "-k" to xgettext to make it
+ extract all the strings. In above example, try with
+ xgettext -ktranslate -kngettext:1,2 file.php
+ what should create messages.po which contains two messages for
+ translation.
+
+ I suggest creating simple aliases for these functions (see
+ example/pigs.php for how do I do it, which means it's probably a
+ bad way).
+
+
+Usage with gettext.inc (standard gettext interfaces emulation)
+
+ Check example in examples/pig_dropin.php, basically you include
+ gettext.inc and use all the standard gettext interfaces as
+ documented on:
+
+ http://www.php.net/gettext
+
+ The only catch is that you can check return value of setlocale()
+ to see if your locale is system supported or not.
+
+
+Example
+
+ See in examples/ subdirectory. There are a couple of files.
+ pigs.php is an example, serbian.po is a translation to Serbian
+ language, and serbian.mo is generated with
+ msgfmt -o serbian.mo serbian.po
+ There is also simple "update" script that can be used to generate
+ POT file and to update the translation using msgmerge.
+
+Interesting TODO:
+
+ o Try to parse "plural-forms" header field, and to follow C syntax
+ rules. This won't be easy.
+
+Boring TODO:
+
+ o Learn PHP and fix bugs, slowness and other stuff resulting from
+ my lack of knowledge (but *maybe*, it's not my knowledge that is
+ bad, but PHP itself ;-).
+
+ (This is mostly done thanks to Nico Kaiser.)
+
+ o Try to use hash tables in MO files: with pre-loading, would it
+ be useful at all?
+
+Never-asked-questions:
+
+ o Why did you mark this as version 1.0 when this is the first code
+ release?
+
+ Well, it's quite simple. I consider that the first released thing
+ should be labeled "version 1" (first, right?). Zero is there to
+ indicate that there's zero improvement and/or change compared to
+ "version 1".
+
+ I plan to use version numbers 1.0.* for small bugfixes, and to
+ release 1.1 as "first stable release of version 1".
+
+ This may trick someone that this is actually useful software, but
+ as with any other free software, I take NO RESPONSIBILITY for
+ creating such a masterpiece that will smoke crack, trash your
+ hard disk, and make lasers in your CD device dance to the tune of
+ Mozart's 40th Symphony (there is one like that, right?).
+
+ o Can I...?
+
+ Yes, you can. This is free software (as in freedom, free speech),
+ and you might do whatever you wish with it, provided you do not
+ limit freedom of others (GPL).
+
+ I'm considering licensing this under LGPL, but I *do* want
+ *every* PHP-gettext user to contribute and respect ideas of free
+ software, so don't count on it happening anytime soon.
+
+ I'm sorry that I'm taking away your freedom of taking others'
+ freedom away, but I believe that's neglible as compared to what
+ freedoms you could take away. ;-)
+
+ Uhm, whatever.
diff --git a/includes/php-gettext/bin/gettexts.bat b/includes/php-gettext/bin/gettexts.bat
new file mode 100644
index 0000000..212ffce
--- /dev/null
+++ b/includes/php-gettext/bin/gettexts.bat
@@ -0,0 +1,20 @@
+@echo off
+xgettext -kT_ngettext:1,2 -kT_ -L PHP -o ..\..\..\locales\messages.po ..\..\..\*.php ..\..\..\services\*.php ..\..\..\templates\*.php
+if /i "%1" == "-p" goto stats
+if exist "..\..\..\locales\%1.po" goto merge
+echo "Usage: $0 [-p|]"
+goto end
+
+:stats
+msgfmt --statistics ..\..\..\locales\messages.po
+goto end
+
+:merge
+msgmerge -o ..\..\..\locales\tmp%1.po ..\..\..\locales\%1.po ..\..\..\locales\messages.po
+if exist "..\..\..\locales\%1.po" rename ..\..\..\locales\%1.po %1.po.bak
+rename ..\..\..\locales\tmp%1.po %1.po
+if exist "..\..\..\locales\%1.po.bak" del ..\..\..\locales\%1.po.bak
+msgfmt --statistics "..\..\..\locales\%1.po"
+
+:end
+echo Finished
\ No newline at end of file
diff --git a/includes/php-gettext/examples/index.php b/includes/php-gettext/examples/index.php
new file mode 100644
index 0000000..263cd3d
--- /dev/null
+++ b/includes/php-gettext/examples/index.php
@@ -0,0 +1,27 @@
+
+
+PHP-gettext examples
+
+
+
PHP-gettext
+
+
Introduction
+
PHP-gettext provides a simple gettext replacement that works independently from the system's gettext abilities.
+It can read MO files and use them for translating strings.
+
This version has the ability to cache all strings and translations to speed up the string lookup.
+While the cache is enabled by default, it can be switched off with the second parameter in the constructor (e.g. when using very large MO files
+that you don't want to keep in memory)
+
+
+
diff --git a/includes/php-gettext/examples/locale/de_CH/LC_MESSAGES/messages.mo b/includes/php-gettext/examples/locale/de_CH/LC_MESSAGES/messages.mo
new file mode 100644
index 0000000000000000000000000000000000000000..91930376c54ef58d1650467fc5b15d9d1b03116d
GIT binary patch
literal 585
zcmZvZ+e!m55Qf*&&0cz~FgJoCsk?2JvK|oYfkKO7w_cm>j@f9Nlw@kv_Yiy%AIFFA
z37lPpDmdgLv-AH+W|NQA<=22?iCJTs%nH+G%D83r7|E)9>)VS#
zz-bknR#EO5Y~(P}3T9{s$O07zW9c4{!XL^1tEGkZz@xCUYKoV~}4
zL?;(F=)ATjDNpg?HBPJ}(ep~@;$*74NNob))nzK$4kfWuoJzt3>QU4XaU|*uh?>c6
zv>kDUjp7;~b-CjoUo4^+>W!qyzL~llS&Q0&O{ThGZ{&3_8}{z
z^GJt-^jx&&zOuPHbmGipHrGZa&>HIRTkmJZ47CBpWq6s6p~o-sN5V=&^IIL59J~dE
S1wpP6F3@L%&I-cvNxlF~0Hja=
literal 0
HcmV?d00001
diff --git a/includes/php-gettext/examples/locale/de_CH/LC_MESSAGES/messages.po b/includes/php-gettext/examples/locale/de_CH/LC_MESSAGES/messages.po
new file mode 100644
index 0000000..6e4886b
--- /dev/null
+++ b/includes/php-gettext/examples/locale/de_CH/LC_MESSAGES/messages.po
@@ -0,0 +1,30 @@
+# Sample translation for PHP-gettext 1.0
+# Copyright (c) 2003 Danilo Segan
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pigs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2003-10-23 04:50+0200\n"
+"PO-Revision-Date: 2003-11-01 23:40+0100\n"
+"Last-Translator: Danilo Segan \n"
+"Language-Team: Serbian (sr) \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"
+
+#: pigs.php:19
+msgid ""
+"This is how the story goes.\n"
+"\n"
+msgstr ""
+"Und so geht die Geschichte.\n"
+"\n"
+
+#: pigs.php:21
+#, php-format
+msgid "%d pig went to the market\n"
+msgid_plural "%d pigs went to the market\n"
+msgstr[0] "%d Schwein ging zum Markt\n"
+msgstr[1] "%d Schweine gingen zum Markt\n"
diff --git a/includes/php-gettext/examples/locale/sr_CS/LC_MESSAGES/messages.mo b/includes/php-gettext/examples/locale/sr_CS/LC_MESSAGES/messages.mo
new file mode 100644
index 0000000000000000000000000000000000000000..6ffccfd52d91a1db0870a94d12472e104f9c6b2b
GIT binary patch
literal 834
zcmah{%We}f6dhihS#}NLg4C)}<=~lwsG4L7q7SK3Bcd{}#!bv*+Qg1*r=?OC6vX2P
zkRl=R4H3_XNBITM5AZEqPpHyG5m!EA-+Rxo&v@qd+~v0(#wEm6L=|xbv4wE)7*Rto
z#5KeS@$rJ^eZl!FV)vrwUB~$*Zh++?uvCQG)0^+WAWPwZ3j;=i>2l~Zwa1PBx24bR
zCEZK|j;=f?G}=gY2&v?{?E79z$z9$yWV1saaiudUB6o`RxA{OSLz+6xI^^Ck)g+M-
z_^ta1Syh}FWRf*zcmyG(6%tSqR)AKc+jNOy1&L&v?`Lku8LviYhy%hPqO~O&Aa9Fl
zLlVV=?lE*0!5R};Pr?J9G69WFk=@5!$IB%Jjl939arjrG0kEzAJ8}sU||8=lHQ1e0PX;V2o_yoB@Rz}jkxNT
zMVU4N3P(p%4RUA+MFEP!QoZ=v_Jr%F_eAwSMvoK+*?-|9*Ja;Bf;@0|Ysr`z}T1KR%PY)|Yb=hk_c=G
literal 0
HcmV?d00001
diff --git a/includes/php-gettext/examples/locale/sr_CS/LC_MESSAGES/messages.po b/includes/php-gettext/examples/locale/sr_CS/LC_MESSAGES/messages.po
new file mode 100644
index 0000000..7e620cc
--- /dev/null
+++ b/includes/php-gettext/examples/locale/sr_CS/LC_MESSAGES/messages.po
@@ -0,0 +1,29 @@
+# Sample translation for PHP-gettext 1.0
+# Copyright (c) 2003,2006 Danilo Segan
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: pigs\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2003-10-23 04:50+0200\n"
+"PO-Revision-Date: 2006-02-02 21:06+0100\n"
+"Last-Translator: Danilo Segan \n"
+"Language-Team: Serbian (sr) \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: pigs.php:19
+msgid ""
+"This is how the story goes.\n"
+"\n"
+msgstr "Ðвако иде пÑиÑа.\n\n"
+
+#: pigs.php:21
+#, php-format
+msgid "%d pig went to the market\n"
+msgid_plural "%d pigs went to the market\n"
+msgstr[0] "%d мало пÑаÑе Ñе оÑиÑло на пиÑаÑ\n"
+msgstr[1] "%d мала пÑаÑеÑа ÑÑ Ð¾ÑиÑла на пиÑаÑ\n"
+msgstr[2] "%d Ð¼Ð°Ð»Ð¸Ñ Ð¿ÑаÑиÑа Ñе оÑиÑло на пиÑаÑ\n"
diff --git a/includes/php-gettext/examples/pigs_dropin.php b/includes/php-gettext/examples/pigs_dropin.php
new file mode 100644
index 0000000..edd2b0d
--- /dev/null
+++ b/includes/php-gettext/examples/pigs_dropin.php
@@ -0,0 +1,87 @@
+.
+ Copyright (c) 2005,2006 Steven Armstrong
+
+ This file is part of PHP-gettext.
+
+ PHP-gettext 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.
+
+ PHP-gettext 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 PHP-gettext; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+*/
+
+// define constants
+define(PROJECT_DIR, realpath('./'));
+define(LOCALE_DIR, PROJECT_DIR .'/locale');
+define(DEFAULT_LOCALE, 'en_US');
+
+require_once('../gettext.inc');
+
+$supported_locales = array('en_US', 'sr_CS', 'de_CH');
+$encoding = 'UTF-8';
+
+$locale = (isset($_GET['lang']))? $_GET['lang'] : DEFAULT_LOCALE;
+
+// gettext setup
+T_setlocale(LC_MESSAGES, $locale);
+// Set the text domain as 'messages'
+$domain = 'messages';
+bindtextdomain($domain, LOCALE_DIR);
+// bind_textdomain_codeset is supported only in PHP 4.2.0+
+if (function_exists('bind_textdomain_codeset'))
+ bind_textdomain_codeset($domain, $encoding);
+textdomain($domain);
+
+header("Content-type: text/html; charset=$encoding");
+?>
+
+
+PHP-gettext dropin example
+
+
+
PHP-gettext as a dropin replacement
+
Example showing how to use PHP-gettext as a dropin replacement for the native gettext library.
locale '$locale' is supported by your system, using native gettext implementation.
\n";
+}
+else {
+ print "
locale '$locale' is _not_ supported on your system, using the default locale '". DEFAULT_LOCALE ."'.
\n";
+}
+?>
+
+
+
+";
+print _("This is how the story goes.\n\n");
+for ($number=6; $number>=0; $number--) {
+ print sprintf(T_ngettext("%d pig went to the market\n",
+ "%d pigs went to the market\n", $number),
+ $number );
+}
+print "\n";
+?>
+
+
+
+
+
diff --git a/includes/php-gettext/examples/pigs_fallback.php b/includes/php-gettext/examples/pigs_fallback.php
new file mode 100644
index 0000000..b50f752
--- /dev/null
+++ b/includes/php-gettext/examples/pigs_fallback.php
@@ -0,0 +1,86 @@
+.
+ Copyright (c) 2005,2006 Steven Armstrong
+
+ This file is part of PHP-gettext.
+
+ PHP-gettext 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.
+
+ PHP-gettext 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 PHP-gettext; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+*/
+
+// define constants
+define(PROJECT_DIR, realpath('./'));
+define(LOCALE_DIR, PROJECT_DIR .'/locale');
+define(DEFAULT_LOCALE, 'en_US');
+
+require_once('../gettext.inc');
+
+$supported_locales = array('en_US', 'sr_CS', 'de_CH');
+$encoding = 'UTF-8';
+
+$locale = (isset($_GET['lang']))? $_GET['lang'] : DEFAULT_LOCALE;
+
+// gettext setup
+T_setlocale(LC_MESSAGES, $locale);
+// Set the text domain as 'messages'
+$domain = 'messages';
+T_bindtextdomain($domain, LOCALE_DIR);
+T_bind_textdomain_codeset($domain, $encoding);
+T_textdomain($domain);
+
+header("Content-type: text/html; charset=$encoding");
+?>
+
+
+PHP-gettext fallback example
+
+
+
PHP-gettext as a fallback solution
+
Example showing how to use PHP-gettext as a fallback solution if the native gettext library is not available or the system does not support the requested locale.
locale '$locale' is supported by your system, using native gettext implementation.
\n";
+}
+else {
+ print "
locale '$locale' is not supported on your system, using custom gettext implementation.
\n";
+}
+?>
+
+
+
+";
+print T_("This is how the story goes.\n\n");
+for ($number=6; $number>=0; $number--) {
+ print sprintf( T_ngettext("%d pig went to the market\n",
+ "%d pigs went to the market\n", $number),
+ $number );
+}
+print "\n";
+?>
+
+
+
Q;92^ShpuR>Z;;p{xI@RGefV+V6Mq
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
literal 0
HcmV?d00001
diff --git a/locales/de_DE/LC_MESSAGES/messages.po b/locales/de_DE/LC_MESSAGES/messages.po
new file mode 100644
index 0000000..208f26f
--- /dev/null
+++ b/locales/de_DE/LC_MESSAGES/messages.po
@@ -0,0 +1,808 @@
+# Scuttle de-DE Translation
+# Copyright (C) 2005 - 2006 Scuttle project
+# This file is distributed under the same license as the Scuttle package.
+# Ogee
+#
+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-27 01:41-0800\n"
+"Last-Translator: Marcus Campbell \n"
+"Language-Team: de-DE \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: Germany\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ..\..\..\about.php:25
+#: ..\..\..\templates\toolbar.inc.php:24
+msgid "About"
+msgstr "Ãber"
+
+#: ..\..\..\ajaxDelete.php:29
+msgid "You are not allowed to delete this bookmark"
+msgstr "Du hast keine Rechte diesen Favoriten zu löschen"
+
+#: ..\..\..\ajaxDelete.php:33
+msgid "Failed to delete bookmark"
+msgstr "Favorit löschen ist fehlgeschlagen"
+
+#: ..\..\..\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 "Mitglied %s wurde nicht gefunden"
+
+#: ..\..\..\bookmarks.php:71
+#, php-format
+msgid "User with username %s was not found"
+msgstr "Mitglied %s wurde nicht gefunden"
+
+#: ..\..\..\bookmarks.php:94
+#: ..\..\..\edit.php:44
+msgid "Your bookmark must have a title and an address"
+msgstr "Favoriten Titel und Adresse fehlt"
+
+#: ..\..\..\bookmarks.php:114
+#: ..\..\..\edit.php:58
+msgid "Bookmark saved"
+msgstr "Favorit gespeichert"
+
+#: ..\..\..\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 "Favorit konnte nicht gespeichert werden. Bitte versuche es erneut oder kontaktiere den Administrator"
+
+#: ..\..\..\bookmarks.php:160
+#: ..\..\..\templates\toolbar.inc.php:13
+msgid "Add a Bookmark"
+msgstr "Favorit hinzufügen"
+
+#: ..\..\..\bookmarks.php:163
+msgid "Add Bookmark"
+msgstr "Favorit hinzufügen"
+
+#: ..\..\..\bookmarks.php:166
+msgid "You must be logged in before you can add bookmarks."
+msgstr "Um Favoriten hinzuzufügen must Du Dich zuerst einloggen"
+
+#: ..\..\..\bookmarks.php:213
+msgid "My Bookmarks"
+msgstr "Meine Favoriten"
+
+#: ..\..\..\edit.php:29
+msgid "Edit Bookmark"
+msgstr "Favorit bearbeiten"
+
+#: ..\..\..\edit.php:34
+#, php-format
+msgid "Bookmark with id %s not was not found"
+msgstr "Favorit mit der id %s wurde nicht gefunden"
+
+#: ..\..\..\edit.php:39
+msgid "You are not allowed to edit this bookmark"
+msgstr "Du hast keine Rechte diesen Favoriten zu bearbeiten"
+
+#: ..\..\..\edit.php:55
+msgid "Error while saving your bookmark"
+msgstr "Fehler beim Speichern Deines Favoriten"
+
+#: ..\..\..\edit.php:78
+msgid "Failed to delete the bookmark"
+msgstr "Fehler beim Löschen dieses Favoriten"
+
+#: ..\..\..\edit.php:88
+#: ..\..\..\templates\editprofile.tpl.php:52
+msgid "Save Changes"
+msgstr "Ãnderungen speichern"
+
+#: ..\..\..\functions.inc.php:92
+msgid "message_die() was called multiple times."
+msgstr "message_die() wurde öfters aufgerufen."
+
+#: ..\..\..\functions.inc.php:104
+msgid "SQL Error"
+msgstr "SQL Fehler"
+
+#: ..\..\..\functions.inc.php:110
+msgid "Line"
+msgstr "Linie"
+
+#: ..\..\..\functions.inc.php:110
+#: ..\..\..\templates\importDelicious.tpl.php:8
+#: ..\..\..\templates\importNetscape.tpl.php:9
+msgid "File"
+msgstr "Verzeichnis"
+
+#: ..\..\..\functions.inc.php:116
+msgid "Information"
+msgstr "Information"
+
+#: ..\..\..\functions.inc.php:121
+msgid "Critical Information"
+msgstr "Kritische Information"
+
+#: ..\..\..\functions.inc.php:126
+msgid "An error occured"
+msgstr "Ein Fehler ist aufgetreten"
+
+#: ..\..\..\functions.inc.php:129
+msgid "General Error"
+msgstr "Genereller Fehler"
+
+#: ..\..\..\functions.inc.php:137
+msgid "An critical error occured"
+msgstr "Ein kritischer Fehler ist aufgetreten"
+
+#: ..\..\..\functions.inc.php:140
+msgid "Critical Error"
+msgstr "Kritischer Fehler"
+
+#: ..\..\..\functions.inc.php:149
+msgid "DEBUG MODE"
+msgstr "Prüfungs Modus"
+
+#: ..\..\..\history.php:65
+msgid "History"
+msgstr "Verlauf"
+
+#: ..\..\..\history.php:66
+#, php-format
+msgid "History for %s"
+msgstr "Verlauf von %s"
+
+#: ..\..\..\history.php:81
+msgid "Address was not found"
+msgstr "Addresse wurde nicht gefunden"
+
+#: ..\..\..\import.php:41
+msgid "Could not open XML input"
+msgstr "Kann XML Input nicht öffnen"
+
+#: ..\..\..\import.php:45
+#, php-format
+msgid "XML error: %s at line %d"
+msgstr "XML Fehler: %s in Linie %d"
+
+#: ..\..\..\import.php:54
+msgid "Import Bookmarks from del.icio.us"
+msgstr "Importiere Favoriten von del.icio.us"
+
+#: ..\..\..\import.php:86
+#: ..\..\..\importNetscape.php:64
+msgid "You have already submitted this bookmark."
+msgstr "Du hast diesen Favoriten schon eingetragen"
+
+#: ..\..\..\import.php:97
+#: ..\..\..\importNetscape.php:72
+msgid "Bookmark imported."
+msgstr "Favorit importiert"
+
+#: ..\..\..\importNetscape.php:81
+msgid "Import Bookmarks from Browser File"
+msgstr "Importiere Favoriten eines Browsers"
+
+#: ..\..\..\index.php:32
+msgid "You have now logged out"
+msgstr "Du bist jetzt ausgeloggt"
+
+#: ..\..\..\index.php:39
+#, php-format
+msgid "%s: Recent bookmarks"
+msgstr "%s: neue Favoriten"
+
+#: ..\..\..\index.php:72
+msgid "Store, share and tag your favourite links"
+msgstr "Speicher, Teile und Tagge Deine Favoriten"
+
+#: ..\..\..\index.php:73
+msgid "Recent Bookmarks"
+msgstr "Neue Favoriten"
+
+#: ..\..\..\jsScuttle.php:22
+msgid "Are you sure?"
+msgstr "Bist Du sicher?"
+
+#: ..\..\..\jsScuttle.php:22
+msgid "Yes"
+msgstr "Ja"
+
+#: ..\..\..\jsScuttle.php:22
+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 Details die Du eingetragen hast sind nicht korrekt. Bitte versuche es erneut."
+
+#: ..\..\..\login.php:48
+#: ..\..\..\templates\login.tpl.php:26
+#: ..\..\..\templates\toolbar.inc.php:28
+msgid "Log In"
+msgstr "Login"
+
+#: ..\..\..\password.php:31
+msgid "You must enter your username."
+msgstr "Du must Deinen Mitgliedsnamen eingeben"
+
+#: ..\..\..\password.php:35
+msgid "You must enter your e-mail address."
+msgstr "Du musst Deine E-Mail Addresse angeben."
+
+#: ..\..\..\password.php:42
+msgid "No matches found for that username."
+msgstr "Keine Resultate zu diesem Mitgliedsnamen gefunden"
+
+#: ..\..\..\password.php:45
+msgid "No matches found for that combination of username and e-mail address."
+msgstr "Keine Resultate gefunden für den Mitgliedsnamen und diese e-mail Addresse."
+
+#: ..\..\..\password.php:53
+msgid "There was an error while generating your new password. Please try again."
+msgstr "Fehler beim generieren des Passwortes. Bitte versuche es erneut."
+
+#: ..\..\..\password.php:57
+msgid "Your new password is:"
+msgstr "Dein neues Passwort:"
+
+#: ..\..\..\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 Deine Favoriten sicher zu bewahren, solltest Du Dein Passwort beim nächsten Login in Deinem Profil ändern."
+
+#: ..\..\..\password.php:60
+#, php-format
+msgid "%s Account Information"
+msgstr "%s Account Information"
+
+#: ..\..\..\password.php:62
+#, php-format
+msgid "New password generated and sent to %s"
+msgstr "Neues Passwort wurde generiert und an %s gesendet"
+
+#: ..\..\..\password.php:69
+msgid "Forgotten Password"
+msgstr "Vergessenes Passwort"
+
+#: ..\..\..\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 Tags"
+
+#: ..\..\..\profile.php:54
+#: ..\..\..\watched.php:114
+msgid "Username was not specified"
+msgstr "Mitgliedsname wurde nicht spezifiziert"
+
+#: ..\..\..\profile.php:60
+msgid "My Profile"
+msgstr "Mein 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 "Passwort und Bestätigung passen nicht zusammen."
+
+#: ..\..\..\profile.php:84
+msgid "Password must be at least 6 characters long."
+msgstr "Passwort muss mindestens 6 Zeichen lang sein."
+
+#: ..\..\..\profile.php:88
+msgid "E-mail address is not valid."
+msgstr "E-Mail Adresse ist unzulässig."
+
+#: ..\..\..\profile.php:92
+msgid "An error occurred while saving your changes."
+msgstr "Eine Fehler trat beim Speichern Deiner Ãnderungen auf."
+
+#: ..\..\..\profile.php:94
+msgid "Changes saved."
+msgstr "Ãnderungen gespeichert."
+
+#: ..\..\..\register.php:33
+msgid "You must enter a username, password and e-mail address."
+msgstr "Du musst einen Mitgliedsnamen, Passwort und eine E-Mail Addresse angeben."
+
+#: ..\..\..\register.php:37
+msgid "This username already exists, please make another choice."
+msgstr "Dieser Mitgliedsname existiert schon. Bitte versuche einen anderen."
+
+#: ..\..\..\register.php:41
+msgid "E-mail address is not valid. Please try again."
+msgstr "E-Mail Adresse ist unzulässig. Bitte versuche es erneut."
+
+#: ..\..\..\register.php:50
+msgid "You have successfully registered. Enjoy!"
+msgstr "Du hast Dich erfolgreich registriert. Viel Spass!"
+
+#: ..\..\..\register.php:52
+msgid "Registration failed. Please try again."
+msgstr "Registrierung fehlgeschlagen. Bitte versuche es erneut."
+
+#: ..\..\..\register.php:57
+#: ..\..\..\templates\register.tpl.php:32
+#: ..\..\..\templates\toolbar.inc.php:27
+msgid "Register"
+msgstr "Registrieren"
+
+#: ..\..\..\search.inc.php:29
+#: ..\..\..\search.inc.php:57
+msgid "Search"
+msgstr "Suche in"
+
+#: ..\..\..\search.inc.php:35
+msgid "this user's bookmarks"
+msgstr "Favoriten dieses Benutzers"
+
+#: ..\..\..\search.inc.php:40
+msgid "my bookmarks"
+msgstr "Meine Favoriten"
+
+#: ..\..\..\search.inc.php:41
+msgid "my watchlist"
+msgstr "Meine Beobachtungsliste"
+
+#: ..\..\..\search.inc.php:45
+msgid "all bookmarks"
+msgstr "Alle Favoriten"
+
+#: ..\..\..\search.inc.php:48
+msgid "for"
+msgstr "nach"
+
+#: ..\..\..\search.php:91
+#: ..\..\..\search.php:128
+msgid "Search Bookmarks"
+msgstr "Suche Favoriten"
+
+#: ..\..\..\search.php:97
+msgid "Search Results"
+msgstr "Suche Resultate"
+
+#: ..\..\..\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 Favoriten"
+
+#: ..\..\..\watch.php:84
+msgid "User removed from your watchlist"
+msgstr "Mitglied wurde von Deiner Beobachtungsliste entfernt"
+
+#: ..\..\..\watch.php:86
+msgid "User added to your watchlist"
+msgstr "Mitglied wurde zu Deiner Favoritenliste hinzugefügt"
+
+#: ..\..\..\watched.php:105
+msgid "My Watchlist"
+msgstr "Meine Beobachtungsliste"
+
+#: ..\..\..\watched.php:107
+#: ..\..\..\templates\sidebar.block.profile.php:14
+#: ..\..\..\templates\toolbar.inc.php:12
+msgid "Watchlist"
+msgstr "Beobachtungsliste"
+
+#: ..\..\..\templates\about.tpl.php:6
+msgid "Store all your favourite links in one place, accessible from anywhere."
+msgstr "Speicher alle Deine Webseiten-Favoriten an einem Ort, von überall erreichbar."
+
+#: ..\..\..\templates\about.tpl.php:7
+msgid "Share your bookmarks with everyone, with friends on your watchlist or just keep them private."
+msgstr "Teile Deine Webseiten-Favoriten mit Anderen, Deinen Freunden oder speichere sie für Dich privat."
+
+#: ..\..\..\templates\about.tpl.php:8
+msgid "Tag your bookmarks with as many labels as you want, instead of wrestling with folders."
+msgstr "Tagge Deine Webseiten-Favoriten mit so vielen Schlagwörtern wie Du möchtest, ansatt sie in unübersichtlichen Verzeichnissen zu speichern."
+
+#: ..\..\..\templates\about.tpl.php:9
+#, php-format
+msgid "Register now to start using %s!"
+msgstr "Registriere Dich jetzt und verwende %s!"
+
+#: ..\..\..\templates\about.tpl.php:12
+msgid "Geek Stuff"
+msgstr "Geek Stuff"
+
+#: ..\..\..\templates\about.tpl.php:14
+#, php-format
+msgid "%s is based on an open-source project licensed under the GNU General Public License. This means you can host it on your own web server for free, whether it is on the Internet, a private network or just your own computer."
+msgstr "%s basiert auf einem Open-Source Projekt lizensiert unter der GNU General Public Lizenz. Das bedeutet, Du kannst es kostenlos auf Deinem Server im Internet verwenden, einem privaten Netzwerk oder auf Deinem eigenen Computer."
+
+#: ..\..\..\templates\about.tpl.php:15
+#, php-format
+msgid "%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it."
+msgstr "%1$s unterstützt die del.icio.us API. Fast alle del.icio.us Tools können so modifiziert werden das %1$s sie verwenden kann. Findest Du ein inkompatibles Tool, so Frage beim entsprechenden Service nach. Du weisst nie - vielleicht wird Dir geholfen."
+
+#: ..\..\..\templates\bookmarks.tpl.php:17
+#: ..\..\..\templates\tags.tpl.php:7
+msgid "Sort by:"
+msgstr "Sortieren nach:"
+
+#: ..\..\..\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 "URL"
+
+#: ..\..\..\templates\bookmarks.tpl.php:60
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: ..\..\..\templates\bookmarks.tpl.php:60
+msgid "Delete"
+msgstr "Löschen"
+
+#: ..\..\..\templates\bookmarks.tpl.php:66
+msgid "by"
+msgstr "von"
+
+#: ..\..\..\templates\bookmarks.tpl.php:78
+#, php-format
+msgid " and %s1 other%s"
+msgstr "und %s1 andere%s"
+
+#: ..\..\..\templates\bookmarks.tpl.php:81
+#, php-format
+msgid " and %2$s%1$s others%3$s"
+msgstr "und %2$s%1$s andere%3$s"
+
+#: ..\..\..\templates\bookmarks.tpl.php:90
+msgid "Copy"
+msgstr "Kopieren"
+
+#: ..\..\..\templates\bookmarks.tpl.php:136
+#: ..\..\..\templates\bookmarks.tpl.php:142
+msgid "First"
+msgstr "Erste"
+
+#: ..\..\..\templates\bookmarks.tpl.php:137
+#: ..\..\..\templates\bookmarks.tpl.php:143
+msgid "Previous"
+msgstr "Neuer"
+
+#: ..\..\..\templates\bookmarks.tpl.php:150
+#: ..\..\..\templates\bookmarks.tpl.php:153
+msgid "Next"
+msgstr "Ãlter"
+
+#: ..\..\..\templates\bookmarks.tpl.php:151
+#: ..\..\..\templates\bookmarks.tpl.php:154
+msgid "Last"
+msgstr "Letzte"
+
+#: ..\..\..\templates\bookmarks.tpl.php:156
+#, php-format
+msgid "Page %d of %d"
+msgstr "Seite %d von %d"
+
+#: ..\..\..\templates\bookmarks.tpl.php:160
+msgid "No bookmarks available"
+msgstr "Keine Favoriten verfügbar"
+
+#: ..\..\..\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] "Favorit"
+msgstr[1] "Favoriten"
+
+#: ..\..\..\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 "Erforderlich"
+
+#: ..\..\..\templates\editbookmark.tpl.php:39
+#: ..\..\..\templates\editprofile.tpl.php:47
+#: ..\..\..\templates\profile.tpl.php:28
+msgid "Description"
+msgstr "Beschreibung"
+
+#: ..\..\..\templates\editbookmark.tpl.php:46
+msgid "Comma-separated"
+msgstr "Mit Komma trennen"
+
+#: ..\..\..\templates\editbookmark.tpl.php:49
+#: ..\..\..\templates\importDelicious.tpl.php:15
+#: ..\..\..\templates\importNetscape.tpl.php:16
+msgid "Privacy"
+msgstr "Status"
+
+#: ..\..\..\templates\editbookmark.tpl.php:52
+#: ..\..\..\templates\importDelicious.tpl.php:18
+#: ..\..\..\templates\importNetscape.tpl.php:19
+msgid "Public"
+msgstr "Ãffentlich"
+
+#: ..\..\..\templates\editbookmark.tpl.php:53
+#: ..\..\..\templates\importDelicious.tpl.php:19
+#: ..\..\..\templates\importNetscape.tpl.php:20
+msgid "Shared with Watch List"
+msgstr "Zur Beobachtungsliste hinzufügen"
+
+#: ..\..\..\templates\editbookmark.tpl.php:54
+#: ..\..\..\templates\importDelicious.tpl.php:20
+#: ..\..\..\templates\importNetscape.tpl.php:21
+msgid "Private"
+msgstr "Privat"
+
+#: ..\..\..\templates\editbookmark.tpl.php:66
+msgid "Delete Bookmark"
+msgstr "Favorit löschen"
+
+#: ..\..\..\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 "Ziehe einen der folgenden Bookmarklets in Deine Browser Favoriten und klicke es an wann immer Du eine Seite zu %s hinzufügen möchtest"
+
+#: ..\..\..\templates\editbookmark.tpl.php:106
+#, php-format
+msgid "Post to %s"
+msgstr "Hinzufügen zu %s"
+
+#: ..\..\..\templates\editbookmark.tpl.php:107
+#, php-format
+msgid "Post to %s (Pop-up)"
+msgstr "Hinzufügen zu %s (Pop-up)"
+
+#: ..\..\..\templates\editbookmark.tpl.php:111
+#: ..\..\..\templates\importDelicious.tpl.php:26
+#: ..\..\..\templates\importNetscape.tpl.php:27
+msgid "Import"
+msgstr "Importieren"
+
+#: ..\..\..\templates\editbookmark.tpl.php:113
+msgid "Import bookmarks from bookmark file"
+msgstr "Importiere Favoriten aus einer Datei"
+
+#: ..\..\..\templates\editbookmark.tpl.php:113
+msgid "Internet Explorer, Mozilla Firefox and Netscape"
+msgstr "Internet Explorer, Mozilla Firefox und Netscape"
+
+#: ..\..\..\templates\editbookmark.tpl.php:114
+msgid "Import bookmarks from del.icio.us"
+msgstr "Importiere Favoriten aus 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:7
+#: ..\..\..\templates\register.tpl.php:16
+msgid "Username"
+msgstr "Mitgliedsname"
+
+#: ..\..\..\templates\editprofile.tpl.php:19
+msgid "New Password"
+msgstr "Neues Passwort"
+
+#: ..\..\..\templates\editprofile.tpl.php:24
+msgid "Confirm Password"
+msgstr "Passwort bestätigen"
+
+#: ..\..\..\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 "Persönliche Details"
+
+#: ..\..\..\templates\editprofile.tpl.php:39
+#: ..\..\..\templates\profile.tpl.php:12
+msgid "Name"
+msgstr "Name"
+
+#: ..\..\..\templates\editprofile.tpl.php:43
+#: ..\..\..\templates\profile.tpl.php:18
+msgid "Homepage"
+msgstr "Homepage"
+
+#: ..\..\..\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 URL konnte auf diesem Server nicht gefunden werden"
+
+#: ..\..\..\templates\error.500.tpl.php:5
+msgid "General server error"
+msgstr "Genereller Server Fehler"
+
+#: ..\..\..\templates\error.500.tpl.php:6
+msgid "The requested URL could not be processed"
+msgstr "Die URL konnte nicht fortgeführt werden"
+
+#: ..\..\..\templates\importDelicious.tpl.php:33
+msgid "Log in to the export page at del.icio.us"
+msgstr "Logge Dich ein auf die del.icio.us Export Seite"
+
+#: ..\..\..\templates\importDelicious.tpl.php:34
+msgid "Save the resulting XML file to your computer"
+msgstr "Speicher die resultierende XML Datei auf Deinem Computer"
+
+#: ..\..\..\templates\importDelicious.tpl.php:35
+msgid "Click Browse... to find this file on your computer. The maximum size the file can be is 1MB"
+msgstr "Klicke Browse... um die Datei auf Deinem Computer zu finden. DateigröÃe darf nicht gröÃer sein als 1MB"
+
+#: ..\..\..\templates\importDelicious.tpl.php:36
+#: ..\..\..\templates\importNetscape.tpl.php:43
+msgid "Select the default privacy setting for your imported bookmarks"
+msgstr "Wähle den Status für Deine importierten Favoriten"
+
+#: ..\..\..\templates\importDelicious.tpl.php:37
+#: ..\..\..\templates\importNetscape.tpl.php:44
+msgid "Click Import to start importing the bookmarks; it may take a minute"
+msgstr "Klicke Importieren um Deine Favoriten zu importieren; das kann eine Weile dauern"
+
+#: ..\..\..\templates\importNetscape.tpl.php:32
+msgid "Instructions"
+msgstr "Anleitung"
+
+#: ..\..\..\templates\importNetscape.tpl.php:35
+msgid "Export your bookmarks from your browser to a file"
+msgstr "Exportiere Deine Browser Bookmarks in eine Datei"
+
+#: ..\..\..\templates\importNetscape.tpl.php:37
+msgid "Internet Explorer: File > Import and Export... > Export Favorites"
+msgstr "Internet Explorer: Datei > Importieren und Exportieren... > Exportiere Favoriten"
+
+#: ..\..\..\templates\importNetscape.tpl.php:38
+msgid "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export..."
+msgstr "Mozilla Firefox: Favoriten > Manage Favoriten... > Datei > Exportieren..."
+
+#: ..\..\..\templates\importNetscape.tpl.php:39
+msgid "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..."
+msgstr "Netscape: Favoriten > Manage Favoriten... > Tools > Exportieren..."
+
+#: ..\..\..\templates\importNetscape.tpl.php:42
+msgid "Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MB"
+msgstr "Klicke Browse... um die gespeicherte Favoriten Datei auf Deinem Computer zu finden. DateigröÃe darf nicht gröÃer sein als 1MB"
+
+#: ..\..\..\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 " 2 Wochen lang nicht nach meinem Passwort fragen"
+
+#: ..\..\..\templates\login.tpl.php:30
+msgid "Forgotten your password?"
+msgstr "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 "Du hast Dein Passwort vergessen? Kein Problem - %s kann ein Neues für Dich generieren. Gebe Deine Email Adresse und Mitgliedsnamen ein und Dir wird ein neues Passwort zugesendet."
+
+#: ..\..\..\templates\password.tpl.php:14
+msgid "E-mail"
+msgstr "E-mail"
+
+#: ..\..\..\templates\password.tpl.php:19
+msgid "Generate Password"
+msgstr "Neues Passwort erstellen"
+
+#: ..\..\..\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\register.tpl.php:11
+#, php-format
+msgid "Sign up here to create a free %s account. All the information requested below is required"
+msgstr "Hier kannst Du Dich kostenlos für einen %s Account registrieren. Fülle dafür die folgenden Formularfelder vollständig aus."
+
+#: ..\..\..\templates\rss.tpl.php:9
+#, php-format
+msgid "Recent bookmarks posted to %s"
+msgstr "Neue Favoriten in %s hinzugefügt"
+
+#: ..\..\..\templates\rss.tpl.php:17
+#: ..\..\..\templates\rss.tpl.php:19
+msgid "No bookmarks found"
+msgstr "Keine Favoriten gefunden"
+
+#: ..\..\..\templates\sidebar.block.recent.php:15
+msgid "Recent Tags"
+msgstr "Neueste Tags"
+
+#: ..\..\..\templates\sidebar.block.related.php:15
+msgid "Related Tags"
+msgstr "Verwandte Tags"
+
+#: ..\..\..\templates\sidebar.block.watchstatus.php:10
+msgid "Remove from Watchlist"
+msgstr "Aus Beobachtungsliste entfernen"
+
+#: ..\..\..\templates\sidebar.block.watchstatus.php:12
+msgid "Add to Watchlist"
+msgstr "Zur Beobachtungsliste hinzufügen"
+
+#: ..\..\..\templates\sidebar.block.watchstatus.php:17
+msgid "Actions"
+msgstr "Aktionen"
+
+#: ..\..\..\templates\tags.tpl.php:8
+msgid "Alphabet"
+msgstr "Alphabet"
+
+#: ..\..\..\templates\tags.tpl.php:9
+msgid "Popularity"
+msgstr "Popularität"
+
+#: ..\..\..\templates\toolbar.inc.php:11
+msgid "Bookmarks"
+msgstr "Favoriten"
+
+#: ..\..\..\templates\toolbar.inc.php:16
+msgid "Log Out"
+msgstr "Logout"
+
diff --git a/locales/dk_DK/LC_MESSAGES/messages.mo b/locales/dk_DK/LC_MESSAGES/messages.mo
new file mode 100644
index 0000000000000000000000000000000000000000..a46c7152148ef5f8e417eed18cebb09c6e62b49a
GIT binary patch
literal 16304
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
Co)s
+#
+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 \n"
+"Language-Team: dk-DK \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 e-mail address."
+msgstr "Du skal indtaste din E-mail 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 e-mail address."
+msgstr "Søgning gav igen resultat på den kombination af brugernavn og e-mail 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 must enter a username, password and e-mail address."
+msgstr "Du skal 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 "Store all your favourite links in one place, accessible from anywhere."
+msgstr "Gem alle dine favorit links et sted, tilgængelig fra hvor som helst"
+
+#: ..\..\..\templates\about.tpl.php:7
+msgid "Share your bookmarks with everyone, with friends on your watchlist or just keep them private."
+msgstr "Del dine bogmærker med alle, med vennerne på din overvågningsliste eller behold dem private."
+
+#: ..\..\..\templates\about.tpl.php:8
+msgid "Tag your bookmarks with as many labels as you want, instead of wrestling with folders."
+msgstr "Marker dine bogmærker med så mange mærkater som du ønsker, i stedet for at kæmpe med mapper."
+
+#: ..\..\..\templates\about.tpl.php:9
+#, php-format
+msgid "Register now to start using %s!"
+msgstr "Register nu 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 an open-source project licensed under the GNU General Public License. This means you can host it on your own web server for free, whether it is on the Internet, a private network or just your own computer."
+msgstr "%s er baseret på et åbent-kode projekt licenseret under GNU General Public License. Dette betyder at du kan hoste systemet på din egen server gratis, lige meget om det er på Internet, et privat netværk eller bare på din egen computer."
+
+#: ..\..\..\templates\about.tpl.php:15
+#, php-format
+msgid "%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it."
+msgstr "%1$s understøtter de fleste del.icio.us API. Næsten alle de værktøjer udviklet til det system kan modificeres til at fungere med %1$s i stedet for. Hvis du finder et værktøj som ikke tillader at du fortager ændringer i API adresse, kunne du jo spørge udviklerne. Man ved aldrig det kunne jo være de ville."
+
+#: ..\..\..\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 export page at del.icio.us"
+msgstr "Log ind på del.icio.us' eksport side"
+
+#: ..\..\..\templates\importDelicious.tpl.php:34
+msgid "Save the resulting XML file to your computer"
+msgstr "Gem XML fillen på din computer"
+
+#: ..\..\..\templates\importDelicious.tpl.php:35
+msgid "Click Browse... to find this file on your computer. The maximum size the file can be is 1MB"
+msgstr "Tryk Gennemse... for at finde denne fil på din computer. Filstørrelsen må maksimum være på 1MB"
+
+#: ..\..\..\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 Import to start importing the bookmarks; it may take a minute"
+msgstr "Tryk Import for at starte med at importere dine bogmærker; dette kan tage et par minutter."
+
+#: ..\..\..\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: File > Import and Export... > Export Favorites"
+msgstr "Internet Explorer: Filer > Importer og eksporter... > Eksporter foretrukne emner"
+
+#: ..\..\..\templates\importNetscape.tpl.php:38
+msgid "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export..."
+msgstr "Mozilla Firefox: Bogmærker > Arranger bogmærker... > Filer > Eksporter..."
+
+#: ..\..\..\templates\importNetscape.tpl.php:39
+msgid "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..."
+msgstr "Netscape: Bogmærker > Arranger bogmærker... > Værktøjer > Eksporter..."
+
+#: ..\..\..\templates\importNetscape.tpl.php:42
+msgid "Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MB"
+msgstr "Tryk Gennemse... for at finde den gemte bogmærke fil på din computer. Filstørrelsen må maksimum være på 1MB"
+
+#: ..\..\..\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 "E-mail"
+msgstr "E-mail"
+
+#: ..\..\..\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/locales/en_GB/LC_MESSAGES/messages.mo b/locales/en_GB/LC_MESSAGES/messages.mo
new file mode 100644
index 0000000000000000000000000000000000000000..117308896ebc5e33468dda80f764918e2311716d
GIT binary patch
literal 493
zcmaKnO-{ow5QU3il_hHygTw*^Q<733btyvqp^6}FR03k_rfzEF*pclZdJs;+eK-ql
z`RR_4o@~GQ#(ML)yYpUiwdJ(ubl|k@bmFwC(CNc9Tkc#jf0bzU!ZM4|44;@bTuA~C
zS!JzY-h`D(TZ~Q4XV|TBgQ+6mCF2x(no;Xu>{H7KG<^RY{U$bA5CkN+JocUAK%B5w
zzWQ{-U7&x4K?se2Gz0WQ$K6w7G1XKWL9NmRVyd&sK#vyXlnDV>#oDN6KgLa7P%i43
zDz4qI%qyBROc^Z*Fp0zNzXNd;4>r37b>HhLX_<5pmZjUpvNwBL3d&_0vIW(K*-mBW
z7;d;#)H%~QkeQlsnG*=7+
+#
+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:41-0800\n"
+"Last-Translator: Marcus Campbell \n"
+"Language-Team: en-GB \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: English\n"
+"X-Poedit-Country: UNITED KINGDOM\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 ""
+
+#: ..\..\..\bookmarks.php:71
+#, php-format
+msgid "User with username %s was not found"
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\import.php:54
+msgid "Import Bookmarks from del.icio.us"
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 e-mail address."
+msgstr ""
+
+#: ..\..\..\password.php:42
+msgid "No matches found for that username."
+msgstr ""
+
+#: ..\..\..\password.php:45
+msgid "No matches found for that combination of username and e-mail address."
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\password.php:62
+#, php-format
+msgid "New password generated and sent to %s"
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 must enter a username, password and e-mail address."
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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
+msgid "Watchlist"
+msgstr ""
+
+#: ..\..\..\templates\about.tpl.php:6
+msgid "Store all your favourite links in one place, accessible from anywhere."
+msgstr ""
+
+#: ..\..\..\templates\about.tpl.php:7
+msgid "Share your bookmarks with everyone, with friends on your watchlist or just keep them private."
+msgstr ""
+
+#: ..\..\..\templates\about.tpl.php:8
+msgid "Tag your bookmarks with as many labels as you want, instead of wrestling with folders."
+msgstr ""
+
+#: ..\..\..\templates\about.tpl.php:9
+#, php-format
+msgid "Register now 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 an open-source project licensed under the GNU General Public License. This means you can host it on your own web server for free, whether it is on the Internet, a private network or just your own computer."
+msgstr ""
+
+#: ..\..\..\templates\about.tpl.php:15
+#, php-format
+msgid "%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it."
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\templates\editbookmark.tpl.php:106
+#, php-format
+msgid "Post to %s"
+msgstr ""
+
+#: ..\..\..\templates\editbookmark.tpl.php:107
+#, php-format
+msgid "Post to %s (Pop-up)"
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\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
+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 export page at del.icio.us"
+msgstr ""
+
+#: ..\..\..\templates\importDelicious.tpl.php:34
+msgid "Save the resulting XML file to your computer"
+msgstr ""
+
+#: ..\..\..\templates\importDelicious.tpl.php:35
+msgid "Click Browse... 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 Import to start importing the bookmarks; it may take a minute"
+msgstr ""
+
+#: ..\..\..\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: File > Import and Export... > Export Favorites"
+msgstr ""
+
+#: ..\..\..\templates\importNetscape.tpl.php:38
+msgid "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export..."
+msgstr ""
+
+#: ..\..\..\templates\importNetscape.tpl.php:39
+msgid "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..."
+msgstr ""
+
+#: ..\..\..\templates\importNetscape.tpl.php:42
+msgid "Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MB"
+msgstr ""
+
+#: ..\..\..\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:14
+msgid "E-mail"
+msgstr ""
+
+#: ..\..\..\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 ""
+
+#: ..\..\..\templates\rss.tpl.php:9
+#, php-format
+msgid "Recent bookmarks posted to %s"
+msgstr ""
+
+#: ..\..\..\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
+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/locales/es_ES/LC_MESSAGES/messages.mo b/locales/es_ES/LC_MESSAGES/messages.mo
new file mode 100644
index 0000000000000000000000000000000000000000..7812d2223935864bec1777830d418a1db0ded4cc
GIT binary patch
literal 14307
zcmchddyHIHeaBB}LcoM)!lMl>#}0PlvO8-#!8L1p6MMaW5U;&>*CeKC!=0Hsv)8_J
z@8sS)yB<@ZOd$__tzS8?@t)>
z36Otg?~{z_bA1%Np6d@j*_h{np9b#$zXxXE;injLC-^Yf1)um-W3C1VAXCiCK&^K_
z$WrEQAXCkI!E3+|fKLZM20jk_T);1bKgIReLCt^6(~Ow{uLGY5-VTcN6CnT0UHqr@
z&w*RP3*ZyLcZK^8ffd&u0z2T2>v$J@D=0c20TGG$4)`qazd@~cJis>S_}C9x@D6Y%n1bT_o#4-a9{@G~
zbD-qxn9Dm3o}MekpMvV$*ylEc?Q@%tU{Ch!N~6nN85
zdplYIwNDI6eg%lC&C5Z(_W&sR-yZPY0Urd#-(P^T#}9&%&p&|9ZozF_e;L&JkG;X$
z^>v`0ZwE!^E>O?+fp>$)K&|^8Q0x9ND7}3IoC7}vitlSNo-^Q$pw@dixE*{IC^`KZ
zxF38Nyczr!*Z`l65lIhsfG+@lACw(^5nKho3jQQ`{Aay=E`gTo9w_;}9@KvC2Vu>8
z6qMY)0HQ+k@1WlQKKMNFG0*XIH3HrRVk+i7P;|W=yaoI?$kyh&py+(M_4+#mO5dkI
zt$P~OduKq&?LKfoTzUg|n2A?o#JYd{xyF>-KLg?t=2IAv==m!6Lh#8bX8^tgyc_&1
zSb@_pDZRWKlpQ<-O8y@MuK_;;YQ4{c($6(_yj+q*#R^GBfe`6!48%%{WiZ-RRNzrg#!Yf*9mz734PC$OmK?SZnJbx`lW0+ju~
z6BHc}fr?9i2a3+mgPQ+EQ1ku`)IR?SVq)fMg!M{rGpKpL2kQCz!u5whz4zDP6!=+C
zdix(x?@w_PS2IV!Yrtl}v!LWwfR6)z4b(cX1x4rELGkl2D0)8%N}itq9|FGu>b=)b
zd%JuqD1JWxVshr6!5hKvf}-~Zhir`GJH2-rd;<7~pycu}coO_@xPR>qAGe1>XQ_y}tqF
z*PjKo|JOjp|8Ib(#5{)!$>D|I_2Av0=)M<}J-z~zT;3G$9iaGm4=DQo1bh24qR|bx{1=@O)!_5!?D2`ST!Q$?^CLpyui$naMu%ImnoG-+at^
z72jXR*u%Ik+!u&n#O3(wfIUY2$@o$*EaNa^jUhYI=P8W0FwQZCjFRy?41Io+@pShM
z-wgO$;IA^Izsb+^uum~FkZ=s7%yd9%V;u|82Vhrcr)X*j2AQN&-3|mU%2>f
za1-MVj9VEwL!YyZz3!W@8K1%Tgc0lB)}7BSZ8_-o^P(zkFE1;bcWkv9+kKH;E#l7p
zEvr@4pPiX$$7v&JC3#~|&b0H^Ow>=d%uU?ng=Vv`RZ^w#{w)Xk{WNJsRg!0RsmQxU
z)axZ#*B;BNxadT!c+1>@rDOYM^v)bG*RTgtw|$hRH3?Z9Rkq6W6w0D@Y&$vYuX3*(
zmQ~!dtthk27^>SzCyCokwd;9t&aNlbs&$+t855&+!yfC{VLq^(Bx~Eqt?5@<&$F8<
zo5q!U+**yYZtU2HIvcgyMO>CsHY(4#o2>$hL`1G<+)5B$Tvc$^uxD65i`U}9p3Cy}
zDZMbXy`;NZ*|P)W+RklKHO$u19?bJ|y{I@>>VhSjQ3>@(>SCFf`JiaUu-%OtSzOKZ
zi~MZds>+$NHK>sD%$7MskoV(k+E2A%h9qiHK%8miLDq(<%PDnzeZA4m1`T$YY32Q4
z8h5IhZa;0TR=sq~+`gz)Im&L|)m`S#o~M9M|mR=giq7aTXU*YL^C0
zwzkLp_FlOw5>+pbveFA0vR7qn3HFxhR$=q?%&x~x1X@UlQg)|^<0-qo8bf=bxh%qT
zapDXKnV=k)PS&C-M*5Z0KW{pTkCtuaz5W2hlk{ipsTjFbwmH(m2FqPYkuY4tK`%-W
z!osu=He{-1U#W*(L=)Vjh`R|!Ry6vn{Vj8+!j;7Y#QDCNFkd!PR#8#eK`BSrT5cY#
zwY(Y?@pz^qdqkbLX4%y+&m;{Qcc)0=tnGy1X0Jz8Yc+)qTl0P{j{6c+ua-_@yd5Sy
zv7H>wEz*hB&_jYC(WI9&w^-N0*}V!ma=9BAf)${c95@&W2Q6j!LFGzW0R
z+M(P1t=6E3
znVUW84W?kX3BoF)HL>C(?Bk1ADPqTa$y&FW18Z;+Az4#1Vw0XCa@=l=Z?O>jj%GMJ
zNZJ^Z<6t8v^(+FLnRh{rK&AH^W**->XZM|Jw&xBO`Fa^Q8jXE3x|E5!04e`+vqwI{
zeOReIb>vQVg_*tRe9{~AY?)l}q0`L`u^ETmxp?r(Hf8RQZ<}LIfMdqI?|HFGAL6lD
zM}WPGExl-HtLR)zKp|BTF3f!1>qXOL+>Z*vOPlNdkpBj0+lgFp*WR^w9NQ(jnEBdJ
z7Gx;n%VQa#tmjgpIka%_^bxyw^3Z}g#FFMvjD~6$+wGya#O(UYp5~CtP|84xh`pih
zM`cNvYrE@Rgv^*ka;S*9&RawF?&N8juZz)|Nj55_VP}XdG3b?#KemV>QDX@c=Bw3EvHH|Etz>oUGl6J{39
z%M}9MwZ?o5n&ib1=nTjl#+~p#n58~Jz9S|teKKhV<}k1EUr|=(Fc~qgDirMYsAYbe
zIfA(Day965`0DeW*LQst(wB=C<|rXKFNQTbl_9F5c@LxN#wL^{tGK3~U2e-MdAPi(
z>$ZcNh(xz8WjE}C$|+~d1NP0L9#2tY>{8Z92iSz;f)MUPXObZraW2E8g2GbVYwIx)
zmlzmcckgJcn)_fr4db0Fz(|$2uM&fgDus2@^fND>GEp|xi`424i`181p<$K!W|*^K
zl?f+1M$uOcTJoOK)OCWzj8gJmF=ZF?3vd}hAoXp2-m!iH?`TDRG$M&oNQ~ys`dBG$
z?6z*T*9KxFXK$JWQ2!)Y>S6Mz(r9UpN0`#_B#X`QT(z%*lf(*Ll3s%vMzzFcN^Q#Q
znLd?LIYXY_G8cPia2`k@JRt&A8)h-?H8F_gBx}XyB0d8n2S+aCxLJ%cdGqM*h?z0N
zBQDM2a6HkRz}ieLw;yrw6<5?d0>-PKz|@vPaAV;KyQ@u~+8wEvs@@PCj&veEUzrm*
z|3*GeARDFA4Yz%c=N7TJwHjkYO8U+v-JzoPpa!c|_OPo6mL!|4)aD)jHzVTeFOHm6
zo^_HC;8o-++_^0pqZe#X2LO&Ls4R^!3cK4<3lvccV=HY+LCIvk<{5=XUD+(<{XrTP
zz9d;vwd|Q5f3-I=XL``zZkCF8Ey)KZU#Nv!Lyx2u4qqLGHD8pQQ2UP5UEgqJPhGrn
zQ#CC~Psg{8i>3{`B+AL~#n49GD9IX3OO+Qrfv4hLt|+DuFfO=G#rFBi&Z9GRVoF@kRs&kPO)1YsUb3_}UmMwFn-cXhMx&i69kX4r_
zW;u?E)@pzW%k}r|DYs?GbCvuqAhzR91R1_&ZVl_hoih@*b`t8cvAG#ny;JR}E_aM`
z^1#@TDQ}#5R}gdCSIwGbUDm;uAP~o538F?`6v*Oo%GTRss!pFe
zZb>Gg62h`Mc@VyEra^j2H
zlx^N@b545h#98~ajZ%*8?V*j&GlLU--y3t!)q8lX&X=v#oFgl5s)b=za_i1ePM$Rt
zI_|6fpK<~$SDgfWRSyj)sb3doM0fWla*_Wz3NxY=M`@C@#Gkqx&@hP7oF;oKU89KF
zibqE}|FCfGMYxiGxs@-P;OuY2FZQK4v_bN2A=L<@FQeyWKW@1mig6YU83%_(rL9xQ
ztTR_a7nw|P@Jw8qGok#`E@Y;B-IE>)E+>mxXg_RjOfl%Cwqd3-%UWOMpxH~P!$PyA
zp4f0}x|tlbCCV;SbUYMY?tVFN2iDFYO@|n+KcsU2qGmdq4>!AsbyyDXqqC;EEnYvW
zxzy#U_vF~7#oas3YrGn2k-MkGXttl{dGYNN=b?U0cLqgjquHft4h=h-9zH~HyQiJR
zH*a_9;pnMiwx{Tb)jIou6b=F-!W87y7n(lSo_;Y|gs44hmwk(9)2UeH^YmibP1@53
z2i#WJDxwibJz6F-FC|vg2o#~Z=4i8BoFJ>+Ax-}^6eAMd`!&1ACmKQe~t#IS^
zuKFqsqV*gv`=CC(5=XsR8<*1y%XVMKoq>z|cD$pRWKlu)(M?}Gwzx3nbZ2A7rg;JZ
zN||06_Ti+$(PrpdB-vh2YdzwkLX(=7h!kRuz
zVN9ne>$}Tx|E|463_aO@b7nX1w>!7*-Q;_x1nEc(yok)tX@Rox(W<#o<8(vI=|^ss
z62`A=n~C~xV_yA{w``DjbwtjKZApY_#d{-BkrKCwowRppNL5@6sw7P=L~Xw6*sKVx
zYCI`WDrc9H@Ei9c!l>;J;x-cV-P;y*j+;-_(TvV=#fz?o+n}1IXQmJkXRQIdu<9VA
z{Wjh5Q)bk5Ztcy&(+^>F$yPhzfL)NS&$6&TSG(nS|G|(q;k~PQTF7
zNxJC2m2AsB_gTZ97-TKSNlCAW<;0H_4MTT#H3I!IvW?Qo;?iZzLZ$|r2&14SZeL_k
z7n{=+^n?eQ((#appc62XY$shh*3Bd?s$Ay;-x_WuGFqgaUt&!EZ++nf&d10M$|Qjn
zW+DN4b$fxTF&I$>r_R61fmrJ&bo$4wVrMvmGKa0Eax+#X15sJyTEp$gZg^RmP(v8@
zi^%tcy%JPpwPeU7xD6h9NmF=Ug_2}>zl`lg3Uy
zgAxXl+#KlQ`_S#xUSHNokv>n@3c@poeDD}~KF9hxpp5P*?zq}gg(Ja_7IG(Q)&i%2
zoSUPBEPN1`!#{nY>wC+Wdvv+kgeguwMH{-MJ{MZhp23HRh%Q2wM6@Em4U)?~KVhh)
zTwAt3xyTxL!-t$QO4qny7HIkSJCbAFQ??!A8zD0?%H;ADykcHqk!NS+?Il$~)m2lQ4v(SDza_k$Vfpq8w;aD}na-HbEsNVUe22n<>g
z(1$wxJfxW^X$cv-E_9B}Q3}gM`qn2WsoUZ5CoT{*3t}c2&gDfMkfPlzxL+!KKRTzQ
zr8eJW>aw9#ZD>TFw1*a!PM3KfzkskLEfi8aFIe8jyUD6R0eu$Qj|jU8LxJAhcH6Nqof~6%t_)N33?(O
zC;-54@LX7?35Kz`87^n8={GU*obsrT&jH2<+uXOH;ZB`sNcZ+g3jp6#W@!&v8$1-B
zb6z4#t0${trBY@hDw6Og`A~sU+gH#A3pJfwCnZ8Znxm8IkMIn$3=|#k)~P;Dk6%^I
z$#hMGv5gZoKN?Zn5iW6Xr|r;w4p+WmmLg#2=l4`zEkYAIiPG^mX#i<0ZHs(nZ~`T>
z(!H?x#vNTB+S{pG83jiXCE08cuSNX6PFaTVE~p?H)X@>UWqsFEAUe9=RYw7nh#1t5
z19L)#Z>Ffx!bwLl8Vl%B7pOi{ABMgeQ`RtlU;Vj#y(~ft8Ku?^7=-9Uer8Y926ovA
z6E(7)7x~yO>IFim7{5Mg)v&l>iA&rK4|EM_1ye%kB^~BVJJLg2_f;>Q9XhSSJ|T=a09)H~O&UG(is~wNe0YZe!cS;-Ph^_CD1L%{kVx~P2!HKB*@j{2@!
zjZ`Cpre>+gDS|M?DPM3Xt%QTd##}x+;fz(t?{(OyqYG8nRRTqd%4OWq**%5z|6vli
zh5F{4-S|T~+4aU+cI4Pm@b++{&Y9wG7PS
za$G-)+59Sp3^#KGKv5$BxQe*e&(IkXC4an)>HNJG-9hKU{ak-~=xM8~ZC3)-Mnl~3
z`AC`x%bDf6*5>9YflyLcleUHbssIhGz1m4KLnt8jW1((rY^c{E!3Cf-m6;qiTalXE
LN=AgRkuLrhX8BWY
literal 0
HcmV?d00001
diff --git a/locales/es_ES/LC_MESSAGES/messages.po b/locales/es_ES/LC_MESSAGES/messages.po
new file mode 100644
index 0000000..73567fb
--- /dev/null
+++ b/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
+#
+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 \n"
+"Language-Team: es-ES \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ..\..\..\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 e-mail address."
+msgstr "Debe especificar usuario, clave, nombre y correo electrónico."
+
+#: ..\..\..\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 e-mail address."
+msgstr "Debe especificar usuario, clave, nombre y correolectrónico."
+
+#: ..\..\..\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 must enter a username, password and e-mail address."
+msgstr "Debe especificar usuario, clave, nombre y correo electrónico."
+
+#: ..\..\..\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 "Store all your favourite links in one place, accessible from anywhere."
+msgstr "Guarde todos sus enlaces favoritos en un lugar y acceda desde donde quiera."
+
+#: ..\..\..\templates\about.tpl.php:7
+msgid "Share your bookmarks with everyone, with friends on your watchlist or just keep them private."
+msgstr "Comparte tus enlaces, solo con los amigos de la lista de consultados o manténgalos privados.."
+
+#: ..\..\..\templates\about.tpl.php:8
+msgid "Tag your bookmarks with as many labels as you want, instead of wrestling with folders."
+msgstr "Etiquete sus enlaces con tantas etiquetas como usted desea, en lugar de pellearse con las carpetas."
+
+#: ..\..\..\templates\about.tpl.php:9
+#, php-format
+msgid "Register now to start using %s!"
+msgstr "Registrese ahora 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 an open-source project licensed under the GNU General Public License. This means you can host it on your own web server for free, whether it is on the Internet, a private network or just your own computer."
+msgstr "%s esta basado en un proyecto de codigo abierto licenciado bajo GNU General Public License. Esto quiere decir que usted puede instalarlo en su propio web server para uso libre, en una red privada o en su propia computadora."
+
+#: ..\..\..\templates\about.tpl.php:15
+#, php-format
+msgid "%1$s supports most of the del.icio.us API. Almost all of the neat tools made for that system can be modified to work with %1$s instead. If you find a tool that won't let you change the API address, ask the creator to add this setting. You never know, they might just do it."
+msgstr "%1$s esta basado en la API de del.icio.us API. La mayoría de las herramientas utilizadas para construir este sistema se pueden modificar para trabajar con %1$s. Si usted encuentra una herramienta en la que no puede modificar la direccion de la API, pregunte al creador si puede cambiar esta configuración. Nunca se sabe, puede que ya se haya cambiado esa configuración."
+
+#: ..\..\..\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 export page at del.icio.us"
+msgstr "Registrese para exportar la pagina a del.icio.us"
+
+#: ..\..\..\templates\importDelicious.tpl.php:34
+msgid "Save the resulting XML file to your computer"
+msgstr "Guardar los resultados en un archivo XML de su ordenador"
+
+#: ..\..\..\templates\importDelicious.tpl.php:35
+msgid "Click Browse... to find this file on your computer. The maximum size the file can be is 1MB"
+msgstr "Pulse Examinar... para buscar el archivo en su ordenador. El tamaño maximo no puede ser superior a 1MB"
+
+#: ..\..\..\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 Import to start importing the bookmarks; it may take a minute"
+msgstr "Pulse Importar para comenzar a importar los enlaces, esto puede tartar algunos minutos"
+
+#: ..\..\..\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: File > Import and Export... > Export Favorites"
+msgstr "Internet Explorer: Archivo > Importar y Exportar... > Exportar Favoritos"
+
+#: ..\..\..\templates\importNetscape.tpl.php:38
+msgid "Mozilla Firefox: Bookmarks > Manage Bookmarks... > File > Export..."
+msgstr "Mozilla Firefox: Enlaces > Manejar Enlaces... > Archivo > Exportar..."
+
+#: ..\..\..\templates\importNetscape.tpl.php:39
+msgid "Netscape: Bookmarks > Manage Bookmarks... > Tools > Export..."
+msgstr "Netscape: Enlaces > Manejar Enlaces... > Utilidades > Exportar..."
+
+#: ..\..\..\templates\importNetscape.tpl.php:42
+msgid "Click Browse... to find the saved bookmark file on your computer. The maximum size the file can be is 1MB"
+msgstr "Pulse Examinar... para buscar los enlaces guardados en un archivo de us ordenador. El tamaño maximo no puede ser superior a 1MB"
+
+#: ..\..\..\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 "E-mail"
+msgstr "Correo"
+
+#: ..\..\..\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/locales/fr_FR/LC_MESSAGES/messages.mo b/locales/fr_FR/LC_MESSAGES/messages.mo
new file mode 100644
index 0000000000000000000000000000000000000000..d91e8451f450508cd57a7684c95acc36aa87e73b
GIT binary patch
literal 13738
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
?yW9L#j+k2!j0GYSvf=|O~1c(h1i}wd}
z(-#NF2kmt*z?QXE#iDkmS-XHcz!Xo~C11SQw-_pFt<7bvs98Hvw6fZAGHLfMoLjD)
zRQ-j{HDwHw_RztDx6~#kY7+rHsFh37%rGx74-e
zFz8I82(?p-_9(Tgc&nbR-iGhJloUZn<(a8{b7$se`{$gfAKZ5mn}bl)mbbc`BS#g-
zDFsCFt(HEEBmMESnEYYT~lxK{0F(w<7gxUtrM
zLy{JgNAO~Cdj90>zJ+!{HKuloD3_u~+;z9vu|v0FhVz`}Y_q^}ce6lNwE=LA|{I)c5P>y*tmtc
zDfP*nej~{-Q<(oQ;F2*&LQys^h~PU&;+Va^7>(K-42zhC?Fh2%JVG$<^MoLca?6cod_bJm|VmFQ#&ARAH-F#2hNMWoF12PCH{4+MVsH
z)JCB2bal4VLD~#2^-E&8=&+GcjxEK2Ep~Q3k9P~>X3C+4ifoc$jC$P;*4J8t^9@b4
z5jJd4MU1w?ZmM~mwf7hSnd$IV8iQ%F%$VneXd@AIr*ArmpO
zgexBn!?dglIw~|V9ZurfqdpaI(o`xGo{1kisBv|7
zw#($nofU(Ef`yomuuX%1u3(5g-q}XY5JJQ)bu(>5X{%_5nTm&y*wsPGs&{h~2EZ4`
zfp&3GwM2M7EPs?(`VOEcm31lrh>rf)f6^jesr!oJ5WI-SQ@rnhcdkCoxQzVPA;oxg|{_pw)#}hQ7rq%|y>G$Q`hM
zsX0l#XS<7hfFV}8&|4?oIgNcdm$`HF)qnbD0AkXE6kcnJjh@B4F=gKuzYS;|B1+>~tTI!lkwFy4MPPFrQs@l;2
zhZFriwX@An2jL}eampv$uJzHVZS
zD(Q_29Ln{FvmPMoD3BL~WVdv%i@xqck76oF^#HZ0lL=J6~!guR$G#3#q)+kyS5ABa8}lSudPtWv3|M$e+g~OAzT!{H}2D
zp~5tj{h5OCUDZ`*7n-AGkrn<9P^4F1g{_{fPg7teSwe6tOXjMarxE?~G(&c-ci>V1
z2g}Hg94x`F46ZgoU9z*g;QGTXMfsT@FfU(e-fO{-6tbpMjiHB?@(?7!J0v;T@*#0w
zKlbC~yoG0mSVd4s)(b$Jy*Py^X4kti?8?ky#P2H%Dj#^$-Pl7jRj`fiK4Z7>+k5HtqcT${?ZCgxJj-&hLMozrh0uG&sOBWb
zM+S&Ow}3Vvm1fb64t$=RRz1oxF%^?oo&jNTmK;0;oMpPM2
zCg!FmlS1Gs%jg+JDxN5RP7wA;N2b
ziz4?HDrLnOZB>;yt@oY-m1XDre^l$7+{2jo!ZUKQvwh#rBV(3uL^%!Q=YKP(J7?%S
z&J?ceUr?w(6DlnzsB9_g9uB^gl~KZW{=OL!!!wPqL6bP{GDI#=^W-3jM4>6L^0N?X
z)_cfMm3Ud2U)}Sby($aS1CdG~i&9!-)nP7Aei<{+Ka@_>zqi<4LlCaPXlOrm>%G!t
z8RK1%lT7F3;neWxjMPbmZKbKD;ULX%rETxS+mb1n^K(UHE+~THmS|ofANCnpEfbmn
z0WABC?tGp^+4X{UiX=R3FsBN=FB{;yE0LiNDUn7N$~Z&YbBn`H7N#e$K%XH_x7`T8
zH|HEm^R5)A%ooc!j)oonNsxJtj&p?{DuqiWvjN*zRVRiLkX^N(pbE+f3U
zYS(@*)LVLP46&vt&MPd96uexx8n9Q8szTzVaRsJ+Y?>KtmQkkltc&E-E~uwh^f8^i
RrPd6rAz>x!wgWP0{s+(}5yb!i
literal 0
HcmV?d00001
diff --git a/locales/fr_FR/LC_MESSAGES/messages.po b/locales/fr_FR/LC_MESSAGES/messages.po
new file mode 100644
index 0000000..96572aa
--- /dev/null
+++ b/locales/fr_FR/LC_MESSAGES/messages.po
@@ -0,0 +1,835 @@
+# Scuttle fr-FR Translation
+# Copyright (C) 2005 - 2006 Scuttle project
+# This file is distributed under the same license as the Scuttle package.
+#
+# nitram
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Scuttle\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2005-11-10 16:58+0100\n"
+"PO-Revision-Date: 2006-03-26 14:29-0800\n"
+"Last-Translator: Marcus Campbell