summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorAzamat H. Hackimov <azamat.hackimov@gmail.com>2010-10-22 00:53:27 +0600
committerAzamat H. Hackimov <azamat.hackimov@gmail.com>2010-10-22 00:53:27 +0600
commit25bc0f5efaa7cf84022dfa9f5c0412b5f636d94e (patch)
tree0bc546858226b44038b31d6d80e224d487051ec2 /main
parentHandbook import (diff)
downloadgentoo-doc-translations-25bc0f5efaa7cf84022dfa9f5c0412b5f636d94e.tar.gz
gentoo-doc-translations-25bc0f5efaa7cf84022dfa9f5c0412b5f636d94e.tar.bz2
gentoo-doc-translations-25bc0f5efaa7cf84022dfa9f5c0412b5f636d94e.zip
Main section import
Diffstat (limited to 'main')
-rw-r--r--main/Makefile58
-rw-r--r--main/gettext/about.xml.pot128
-rw-r--r--main/gettext/articles.xml.pot772
-rw-r--r--main/gettext/contact.xml.pot140
-rw-r--r--main/gettext/contract.xml.pot104
-rw-r--r--main/gettext/graphics.xml.pot352
-rw-r--r--main/gettext/irc.xml.pot1296
-rw-r--r--main/gettext/lists.xml.pot693
-rw-r--r--main/gettext/mirrors-rsync-data.xml.pot1164
-rw-r--r--main/gettext/mirrors-rsync.xml.pot60
-rw-r--r--main/gettext/mirrors.xml.pot64
-rw-r--r--main/gettext/mirrors2.xml.pot120
-rw-r--r--main/gettext/mirrors3.xml.pot1905
-rw-r--r--main/gettext/name-logo.xml.pot208
-rw-r--r--main/gettext/philosophy.xml.pot72
-rw-r--r--main/gettext/projects.xml.pot60
-rw-r--r--main/gettext/ru/about.xml.po172
-rw-r--r--main/gettext/ru/articles.xml.po814
-rw-r--r--main/gettext/ru/contact.xml.po191
-rw-r--r--main/gettext/ru/contract.xml.po162
-rw-r--r--main/gettext/ru/graphics.xml.po487
-rw-r--r--main/gettext/ru/irc.xml.po1333
-rw-r--r--main/gettext/ru/lists.xml.po821
-rw-r--r--main/gettext/ru/mirrors-rsync-data.xml.po1176
-rw-r--r--main/gettext/ru/mirrors-rsync.xml.po74
-rw-r--r--main/gettext/ru/mirrors.xml.po66
-rw-r--r--main/gettext/ru/mirrors2.xml.po131
-rw-r--r--main/gettext/ru/mirrors3.xml.po1908
-rw-r--r--main/gettext/ru/name-logo.xml.po278
-rw-r--r--main/gettext/ru/philosophy.xml.po97
-rw-r--r--main/gettext/ru/projects.xml.po85
-rw-r--r--main/gettext/ru/shots.xml.po253
-rw-r--r--main/gettext/ru/sponsors.xml.po826
-rw-r--r--main/gettext/ru/stores.xml.po334
-rw-r--r--main/gettext/ru/support.xml.po137
-rw-r--r--main/gettext/ru/where.xml.po195
-rw-r--r--main/gettext/shots.xml.pot196
-rw-r--r--main/gettext/sponsors.xml.pot589
-rw-r--r--main/gettext/stores.xml.pot288
-rw-r--r--main/gettext/support.xml.pot104
-rw-r--r--main/gettext/where.xml.pot140
41 files changed, 18053 insertions, 0 deletions
diff --git a/main/Makefile b/main/Makefile
new file mode 100644
index 0000000..feee0e3
--- /dev/null
+++ b/main/Makefile
@@ -0,0 +1,58 @@
+# (c) 2010 gentoo-doc-ru team
+# # https://projects.gentoo.ru/projects/gentoo-doc-ru
+
+include Makefile.config
+
+XML := $(foreach dir, $(BASEDIR), $(wildcard $(dir)/*.xml))
+
+xml: $(addprefix xml-, $(LANGS))
+$(addprefix xml-, $(LANGS)): $(addprefix po-, $(LANGS))
+
+po: $(addprefix po-, $(LANGS))
+$(addprefix po-, $(LANGS)): pot
+
+pot: $(addprefix $(POTDIR)/, $(addsuffix .pot, $(notdir $(XML))))
+
+define xml-lang-template
+lang:=$(subst xml-,,$(1))
+$(1): $(addprefix $(XML_OUT)/$(lang)/, $(notdir $(XML)) )
+
+$(XML_OUT)/$(lang)/%: $(POTDIR)/$(lang)/%.po
+ @if [ ! -d $(XML_OUT)/$(lang)/ ]; then \
+ mkdir -p $(XML_OUT)/$(lang)/; \
+ fi;
+ $(XML2PO) -p $$? $(BASEDIR)/$$(@F) > $$@
+endef
+
+$(foreach lang, $(LANGS), $(eval $(call xml-lang-template, xml-$(lang))))
+
+define po-lang-template
+lang:= $(subst po-,,$(1))
+$(1): $(addprefix $(POTDIR)/$(lang)/, $(addsuffix .po, $(notdir $(XML))))
+
+$(POTDIR)/$(lang)/%.po: $(POTDIR)/%.pot
+ @if [ ! -d $(POTDIR)/$(lang)/ ]; then \
+ mkdir -p $(POTDIR)/$(lang)/; \
+ fi;
+ if [ -f $$@ ]; then \
+ msgmerge --quiet --backup=none -U $$@ $$?; \
+ msgattrib --no-obsolete $$@ --output $$@; \
+ touch $$@; \
+ else \
+ msginit -l $(lang) --no-translator -i $$? -o $$@; \
+ fi;
+endef
+
+$(foreach lang, $(LANGS), $(eval $(call po-lang-template, po-$(lang))))
+
+$(POTDIR)/%.pot: $(BASEDIR)/%
+ @if [ ! -d $(POTDIR) ]; then \
+ mkdir -p $(POTDIR); \
+ fi;
+ $(XML2PO) -o $@ $?
+
+help:
+ @echo ""
+ @echo " Supported targets: pot po-<LANG> xml xml-<LANG>"
+ @echo " Substitude LANG with yours. Don't forget edit Makefile.config"
+ @echo ""
diff --git a/main/gettext/about.xml.pot b/main/gettext/about.xml.pot
new file mode 100644
index 0000000..8febe93
--- /dev/null
+++ b/main/gettext/about.xml.pot
@@ -0,0 +1,128 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(title):6 ../../gentoo/xml/htdocs/main/en//about.xml(title):36
+msgid "About Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):7
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):8
+msgid "drobbins@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):8
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):10 ../../gentoo/xml/htdocs/main/en//about.xml(author:title):13 ../../gentoo/xml/htdocs/main/en//about.xml(author:title):16 ../../gentoo/xml/htdocs/main/en//about.xml(author:title):19 ../../gentoo/xml/htdocs/main/en//about.xml(author:title):22
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):11
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):11
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):14
+msgid "peesh@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):14
+msgid "Jorge Paulo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):17
+msgid "klieber@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):17
+msgid "Kurt Lieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):20
+msgid "fox2mike@gmail.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):20
+msgid "Shyam Mani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):23
+msgid "swift@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):23
+msgid "Sven Vermeulen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(abstract):26
+msgid "About Gentoo, an overview."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(version):32
+msgid "1.7"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(date):33
+msgid "2007-09-17"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(fig:link):40
+msgid "/images/poster.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(title):45
+msgid "What is Gentoo?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):48
+msgid "Gentoo is a free operating system based on either Linux or FreeBSD that can be automatically optimized and customized for just about any application or need. Extreme configurability, performance and a top-notch user and developer community are all hallmarks of the Gentoo experience."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):55
+msgid "Thanks to a technology called Portage, Gentoo can become an ideal secure server, development workstation, professional desktop, gaming system, embedded solution or something else -- whatever you need it to be. Because of its near-unlimited adaptability, we call Gentoo a <b>meta</b>distribution."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):62
+msgid "Of course, Gentoo is more than just the software it provides. It is a community built around a distribution which is driven by more than 300 developers and thousands of users. The distribution project provides the means for the users to enjoy Gentoo: documentation, infrastructure (mailinglists, site, forums ...), release engineering, software porting, quality assurance, security followup, hardening and more."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):71
+msgid "To advise on and help with Gentoo's global development, a <uri link=\"/proj/en/council/\">7-member council</uri> is elected on a yearly basis which decides on global issues, policies and advancements in the Gentoo project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(title):81
+msgid "What is Portage?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):84
+msgid "<b>Portage</b> is the heart of Gentoo, and performs many key functions. For one, Portage is the <e>software distribution</e> system for Gentoo. To get the latest software for Gentoo, you type one command: <c>emerge --sync</c>. This command tells Portage to update your local \"Portage tree\" over the Internet. Your local Portage tree contains a complete collection of scripts that can be used by Portage to create and install the latest Gentoo packages. Currently, we have <uri link=\"http://packages.gentoo.org/categories\">more than 10000 packages</uri> in our Portage tree, with updates and new ones being <uri link=\"http://packages.gentoo.org\">added all the time</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):96
+msgid "Portage is also a <e>package building and installation</e> system. When you want to install a package, you type <c>emerge packagename</c>, at which point Portage automatically builds a custom version of the package to your exact specifications, optimizing it for your hardware and ensuring that the optional features in the package that you want are enabled -- and those you don't want aren't."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):105
+msgid "Portage also keeps your system <e>up-to-date</e>. Typing <c>emerge -uD world</c> -- one command -- will ensure that all the packages that <e>you</e> want on your system are updated automatically."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//about.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/articles.xml.pot b/main/gettext/articles.xml.pot
new file mode 100644
index 0000000..df131df
--- /dev/null
+++ b/main/gettext/articles.xml.pot
@@ -0,0 +1,772 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(guide:link):11
+msgid "/main/en/articles.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):12
+msgid "Linux Articles!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(author:title):13
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail:link):13
+msgid "g2boojum@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail):13
+msgid "Grant Goodyear"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(author:title):14
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail:link):14
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail):14
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(abstract):16
+msgid "Linux articles by Gentoo Linux developers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(version):18
+msgid "1.1"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(date):19
+msgid "2006-07-11"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):22
+msgid "Gentoo &amp; Linux related articles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):29
+msgid "http://bugs.gentoo.org/139688"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):29
+msgid "bug #139688"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):33
+msgid "The <uri link=\"/proj/en/gdp/\">Gentoo Documentation Project</uri> has converted many articles listed on this page to the GuideXML format and publishing it on the Gentoo web site."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):39
+msgid "Please do visit the <uri link=\"/doc/en/articles/\">Gentoo &amp; Linux Articles</uri> repository."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):49
+msgid "Articles by Gentoo Linux Developers"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):52
+msgid "A number of our developers have written articles for the Linux community. Here are the relevant links."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):58
+msgid "Daniel Robbins, Chris Houser, and Aron Griffis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):59
+msgid "Daniel Robbins (drobbins) was Gentoo's Chief Architect. Chris Houser (chouser) and Aron Griffis (agriffis) are <uri link=\"http://www.tru64unix.compaq.com/\">Tru64 UNIX</uri> device driver engineers at <uri link=\"http://www.hp.com/\">HP</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):66
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir21-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):66
+msgid "Part 1: Linux fundamentals"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):69
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir22-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):69
+msgid "Part 2: Basic administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):72
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir23-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):72
+msgid "Part 3: Intermediate administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):75
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir24-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):75
+msgid "Part 4: Advanced administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):64
+msgid "LPI Certification 101 Exam Prep <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):82
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir25-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):82
+msgid "Part 1: Compiling sources and managing packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):85
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir26-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):85
+msgid "Part 2: Configuring and compiling the kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):88
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir27-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):88
+msgid "Part 3: Networking"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):91
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir28-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):91
+msgid "Part 4: Secure shell and file sharing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):80
+msgid "LPI Certification 102 Exam Prep <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):102
+msgid "Mikael Hallendal"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):103
+msgid "Mikael Hallendal (Hallski) wrote this article during his tenure as a GNOME developer and Gentoo Linux Desktop Team Leader."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):105
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-gnome1/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):105
+msgid "GNOMEnclature: Getting ready for GNOME 2 (Part 1)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):113
+msgid "Chris Houser"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):114
+msgid "Chris Houser (chouser) is a <uri link=\"http://www.tru64unix.compaq.com/\">Tru64 UNIX</uri> device driver engineer at <uri link=\"http://www.hp.com/\">HP</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):118
+msgid "http://www-106.ibm.com/developerworks/edu/os-dw-linuxxwin-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):118
+msgid "Introduction to XFree86 4.x"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):126
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):127
+msgid "Daniel Robbins (drobbins) was Gentoo's Chief Architect."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):132
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):132
+msgid "Part 1, Journalling and ReiserFS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):135
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):135
+msgid "Part 2, Using ReiserFS and Linux 2.4"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):138
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):138
+msgid "Part 3, Using the virtual memory (VM) filesystem and bind mounts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):141
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs4.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):141
+msgid "Part 4, Introduction to devfs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):144
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs5.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):144
+msgid "Part 5, Setting up devfs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):147
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs6/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):147
+msgid "Part 6, Implementing devfs (using the init wrapper)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):150
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs7.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):150
+msgid "Part 7, Introducing ext3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):153
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs8.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):153
+msgid "Part 8, Surprises in ext3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):156
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs9.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):156
+msgid "Part 9, Introducing XFS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):159
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs10.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):159
+msgid "Part 10, Deploying XFS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):162
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs11.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):162
+msgid "Part 11, Filesystem update"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):165
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs12/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):165
+msgid "Part 12, Introduction to EVMS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):168
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs13/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):168
+msgid "Part 13, More about EVMS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):129
+msgid "Advanced filesystem implementer's guide <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):175
+msgid "http://www-106.ibm.com/developerworks/linux/library/us-gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):175
+msgid "Part 1, XML, XSLT, and Python breathe new life into an old site"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):178
+msgid "http://www-106.ibm.com/developerworks/web/library/us-gent"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):178
+msgid "Part 2, The doc system"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):181
+msgid "http://www-106.ibm.com/developerworks/web/library/us-gentoo3/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):181
+msgid "Part 3, The new main pages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):184
+msgid "http://www-106.ibm.com/developerworks/web/library/us-gentoo4/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):184
+msgid "Part 4, The final touch"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):172
+msgid "The gentoo.org redesign: A site reborn <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):191
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-posix1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):191
+msgid "Part 1, A simple and nimble tool for memory sharing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):194
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-posix2/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):194
+msgid "Part 2, The little things called mutexes"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):197
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-posix3/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):197
+msgid "Part 3, Improve efficiency with condition variables"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):188
+msgid "POSIX threads explained <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):204
+msgid "http://www-106.ibm.com/developerworks/library/l-bash.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):204
+msgid "Part 1, Fundamental programming in the Bourne again shell (bash)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):207
+msgid "http://www-106.ibm.com/developerworks/library/l-bash2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):207
+msgid "Part 2, More bash programming fundamentals"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):210
+msgid "http://www-106.ibm.com/developerworks/library/l-bash3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):210
+msgid "Part 3, Exploring the ebuild system"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):201
+msgid "Bash by example <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):217
+msgid "http://www-106.ibm.com/developerworks/library/l-awk1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):217
+msgid "Part 1, An intro to the great language with the strange name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):220
+msgid "http://www-106.ibm.com/developerworks/library/l-awk2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):220
+msgid "Part 2, Records, loops, and arrays"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):223
+msgid "http://www-106.ibm.com/developerworks/library/l-awk3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):223
+msgid "Part 3, String functions and ... checkbooks?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):214
+msgid "Awk by example <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):230
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-sed1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):230
+msgid "Part 1, Get to know the powerful UNIX editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):233
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-sed2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):233
+msgid "Part 2, How to further take advantage of the UNIX text editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):236
+msgid "http://www-106.ibm.com/developerworks/library/l-sed3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):236
+msgid "Part 3, Taking it to the next level: Data crunching, sed style"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):227
+msgid "Sed by example <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):243
+msgid "http://www-106.ibm.com/developerworks/library/l-hw1/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):243
+msgid "Part 1, CPU and memory troubleshooting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):246
+msgid "http://www-106.ibm.com/developerworks/library/l-hw2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):246
+msgid "Part 2, Drivers, IRQs, and PCI latency"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):240
+msgid "Linux hardware stability guide <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):253
+msgid "http://www-106.ibm.com/developerworks/library/l-dist1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):253
+msgid "Part 1, Birth of the Gentoo Linux distribution"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):256
+msgid "http://www-106.ibm.com/developerworks/library/l-dist2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):256
+msgid "Part 2, From Enoch to Gentoo, via minor setbacks and corporate run-ins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):259
+msgid "http://www-106.ibm.com/developerworks/library/l-dist3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):259
+msgid "Part 3, The author strays from Linux and then returns"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):250
+msgid "Making the distribution <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):266
+msgid "http://www-106.ibm.com/developerworks/library/l-keyc.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):266
+msgid "Part 1, Understanding RSA/DSA authentication"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):269
+msgid "http://www-106.ibm.com/developerworks/library/l-keyc2/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):269
+msgid "Part 2, Introducing ssh-agent and keychain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):272
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-keyc3/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):272
+msgid "Part 3, Agent forwarding and keychain improvements"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):263
+msgid "OpenSSH key management <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):279
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-lvm/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):279
+msgid "Part 1, Storage management magic with Logical Volume Management"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):282
+msgid "http://www-106.ibm.com/developerworks/library/l-lvm2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):282
+msgid "Part 2, The cvs.gentoo.org upgrade"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):276
+msgid "Learning Linux LVM <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):289
+msgid "http://www-106.ibm.com/developerworks/library/l-sambaint/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):289
+msgid "Part 1, Key concepts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):292
+msgid "http://www-106.ibm.com/developerworks/library/l-samba2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):292
+msgid "Part 2, Compiling, installing, and configuring Samba for your environment"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):295
+msgid "http://www-106.ibm.com/developerworks/library/l-samba3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):295
+msgid "Part 3, Getting Samba to samba: The configuration stage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):286
+msgid "Introduction to Samba <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):302
+msgid "http://www-106.ibm.com/developerworks/library/l-partplan.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):302
+msgid "Moving /home: A step-by-step partition moving how-to"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):305
+msgid "http://www-106.ibm.com/developerworks/library/l-partplan4.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):305
+msgid "Consolidating data: Moving /tmp and /var to their own shared partition"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):299
+msgid "Partitioning in action <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):312
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-raid1/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):312
+msgid "Part 1, Installation and a general introduction"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):315
+msgid "http://www-106.ibm.com/developerworks/library/l-raid2/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):315
+msgid "Part 2, Setting up RAID-1 in a production environment"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):309
+msgid "Linux 2.4 Software RAID <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):320
+msgid "http://www-106.ibm.com/developerworks/library/l-swaptip2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):320
+msgid "Maximum swappage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):323
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/A7F41AE725B03E1D86256A46005DB972?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):323
+msgid "Linux 2.4 stateful firewall design (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):326
+msgid "http://www-106.ibm.com/developerworks/library/l-fw/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):326
+msgid "Dynamic iptables firewalls"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):329
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/7E96EDC7EA87208B8625694400584F81?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):329
+msgid "Compiling the Linux kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):332
+msgid "http://www-106.ibm.com/developerworks/library/l-samba-tng.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):332
+msgid "Samba domain controller support: Integrating Samba into an NT environment"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):335
+msgid "http://www-106.ibm.com/developerworks/library/l-tip-prompt/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):335
+msgid "Prompt magic: Enhancing the system prompt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):338
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/A5C4A0AF4296C66886256A0E005DE112?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):338
+msgid "CVS for the developer or amateur (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):341
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/8B6EDC18E0EC5FE4862569B5006E5AE1?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):341
+msgid "vi intro -- the cheat sheet method (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):344
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/10E39489AAEB0CB78625698B00705F79?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):344
+msgid "Rebol scripting basics (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):347
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/BA954CF013E79EA886256A70005C5914?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):347
+msgid "Fast Web browsing with a caching proxy (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):350
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/0F1731DC664023B7862569D0005C44AF?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):350
+msgid "Getting to know GRUB (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):353
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/73CADD8F9875EAD0862569C8005B6783?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):353
+msgid "JFS fundamentals (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):356
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/0FB4D16BD2C3E83E86256AA2005244D1?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):356
+msgid "Backing up your Linux machines (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):359
+msgid "http://www-106.ibm.com/developerworks/library/l-partitiontip.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):359
+msgid "Partition planning tips: How to keep things organized on disk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):362
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/E956E8D1D0C44A108625693700785C0E?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):362
+msgid "Compiling and installing software from sources (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):365
+msgid "http://www-106.ibm.com/developerworks/library/l-tip-updating.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):365
+msgid "Upgrading applications from sources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):368
+msgid "http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-bytitle/F86D74C7B3B4E65486256B2900073A2E?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):368
+msgid "Linux clustering with MOSIX (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):371
+msgid "http://www-106.ibm.com/developerworks/library/l-samba/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):371
+msgid "Inside Samba 2.2: New, improved, and enterprise-ready"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/contact.xml.pot b/main/gettext/contact.xml.pot
new file mode 100644
index 0000000..26ce1b0
--- /dev/null
+++ b/main/gettext/contact.xml.pot
@@ -0,0 +1,140 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):6
+msgid "Gentoo Linux Contacts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(author:title):8
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(mail:link):9
+msgid "wolf31o2@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(mail):9
+msgid "Chris Gianelloni"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(abstract):12
+msgid "How to contact Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(version):20
+msgid "3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(date):21
+msgid "2010-09-10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):24
+msgid "Who do I contact?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):26
+msgid "Contents"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):30
+msgid "#intro"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):30 ../../gentoo/xml/htdocs/main/en//contact.xml(title):41
+msgid "Introduction"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):31
+msgid "#pr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):31
+msgid "Public Relations/Events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):32
+msgid "#trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):32
+msgid "The Gentoo Foundation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):33
+msgid "#www"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):33
+msgid "Webmaster"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):44
+msgid "\"Gentoo\" is many things. It is a community-based distribution of Linux. It is a package management philosophy. It is also a non-profit organization. This document is designed to get you in touch with the right group within Gentoo, so your correspondence can be handled as quickly as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):51
+msgid "For information regarding upcoming events, interviews, general questions, or simply just to find out more about Gentoo and Gentoo's products, you will likely want to speak with someone from Gentoo's <uri link=\"#pr\">Public Relations</uri> project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(impo):58
+msgid "The Public Relations team does not provide user support or troubleshooting. If you need help with your Gentoo system, please visit our <uri link=\"http://forums.gentoo.org\">forums</uri>, <uri link=\"/main/en/irc.xml\">IRC channels</uri> or other <uri link=\"/main/en/support.xml\">support venues</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):65
+msgid "For information about donations, The Gentoo Foundation, or anything else related to Gentoo intellectual property, trademarks, and copyrights, you will likely want to speak to the Gentoo Foundation's <uri link=\"#trustees\">Board of Trustees</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):72
+msgid "For information regarding this website, or any other Gentoo website hosted on a <c>gentoo.org</c> domain, you will likely want to speak with Gentoo's <uri link=\"#www\">Webmasters</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):78
+msgid "If you are looking for support on Gentoo Linux or any other Gentoo product or project, then you should head over to our <uri link=\"/main/en/support.xml\">support</uri> page for further information."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):88
+msgid "Public Relations"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):91
+msgid "The Gentoo <uri link=\"/proj/en/pr/\">Public Relations</uri> project, and its <uri link=\"/proj/en/pr/events/\">Events</uri> subproject are responsible for putting the word out about Gentoo, as well as coordinating the Gentoo presence within the community at at trade shows and exhibitions."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):98
+msgid "If you are looking for materials for an article, someone to interview, or simply want to know more about Gentoo and what it has to offer, send a message to the PR team. To contact the PR team, simply send an email to <mail>pr@gentoo.org</mail> and someone from the team will contact you as soon as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(impo):106
+msgid "The Public Relations team does not provide user support or troubleshooting. If you need help with your Gentoo system, please visit our <uri link=\"http://forums.gentoo.org\">forums</uri> or <uri link=\"/main/en/irc.xml\">IRC channels</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):117
+msgid "The Gentoo Foundation Board of Trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):120
+msgid "<uri link=\"/foundation/en/\">The Gentoo Foundation</uri> is a non-profit organization that was formed to be the protector of Gentoo's intellectual property. The Board of Trustees are the elected keepers of the legal entity that is Gentoo within the United States. If your question is financial or legal in nature, then you will want to send an email to <mail>trustees@gentoo.org</mail> and a member of the board will get back to you as soon as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):133
+msgid "Webmasters"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):136
+msgid "Maintaining Gentoo's presence on the web is a daunting task. Gentoo has a dedicated team of webmasters who keep our site looking sharp and up-to-date. If you have a question or comment about any Gentoo web site, then this team is what you are looking for. They can be contacted by sending an email to <mail>www@gentoo.org</mail>."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/contract.xml.pot b/main/gettext/contract.xml.pot
new file mode 100644
index 0000000..1cef635
--- /dev/null
+++ b/main/gettext/contract.xml.pot
@@ -0,0 +1,104 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):5 ../../gentoo/xml/htdocs/main/en//contract.xml(title):26
+msgid "Gentoo Social Contract"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(author:title):7
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(author):7
+msgid "The Gentoo Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(author:title):10
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(mail:link):11
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(mail):11
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(abstract):14
+msgid "This document contains a pledge to the Gentoo community about the freedom of Gentoo's software, the openness of Gentoo's development process and the feedback we give back to the free software community."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(version):22
+msgid "1.10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(date):23
+msgid "2006-04-30"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):30
+msgid "This social contract is intended to clearly describe the overall development policies and standards of the Gentoo project development team. Parts of this document have been derived from the <uri link=\"http://www.debian.org/social_contract\">Debian Social Contract</uri>. It is generally very similar to it except that certain parts have been clarified and augmented while other parts deemed redundant have been removed. Comments are welcome. Please send them to our <mail link=\"gentoo-dev@gentoo.org\">gentoo-dev@gentoo.org</mail> mailing list."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):44
+msgid "What is Gentoo?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):47
+msgid "Gentoo in itself is a collection of free knowledge. Knowledge in this context can be defined as documentation and metadata concerned with concepts or domains relevant to operating systems and their components, as well as <uri link=\"http://www.fsf.org/philosophy/free-sw.html\">free software</uri> contributed by various developers to the Gentoo Project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):55
+msgid "Gentoo, the operating system, is derived from the base concept of knowledge described above. A Gentoo operating system should satisfy the self-hosting requirement. In other words, the operating system should be able to build itself from scratch using the aforementioned tools and metadata. If a product associated with an official Gentoo project does not satisfy these requirements, the product does not qualify as a Gentoo operating system."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):65
+msgid "An official list of Gentoo projects is listed under the <uri link=\"http://www.gentoo.org/proj/en/metastructure/projects.xml\">Gentoo Metastructure</uri>. A Gentoo project does not need to produce a Gentoo operating system in order to be officially recognized."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):75
+msgid "Gentoo is and will remain Free Software"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):78
+msgid "We will release our contributions to Gentoo as free software, metadata or documentation, under the GNU General Public License version 2 (or later, at our discretion) or the Creative Commons - Attribution / Share Alike version 2 (or later, at our discretion). Any external contributions to Gentoo (in the form of freely-distributable sources, binaries, metadata or documentation) may be incorporated into Gentoo provided that we are legally entitled to do so. However, Gentoo will never <e>depend</e> upon a piece of software or metadata unless it conforms to the GNU General Public License, the GNU Lesser General Public License, the Creative Commons - Attribution/Share Alike or some other license approved by the Open Source Initiative (<uri link=\"http://www.opensource.org/licenses/index.html\">OSI</uri>)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(note):92
+msgid "We are considering extending the above clause to require that all core Gentoo components must conform to a license approved by the OSI <e>and</e> Free Software Foundation (<uri link=\"http://www.gnu.org/\">FSF</uri>)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):102
+msgid "We will give back to the Free Software Community"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):105
+msgid "We will establish relationships with Free Software authors and collaborate with them when possible. We will submit bug-fixes, improvements, user requests, etc. to the \"upstream\" authors of software included in our system. We will also clearly document <e>our</e> contributions to Gentoo as well as any improvements or changes we make to external sources used by Gentoo (whether in the form of patches, \"sed tweaks\" or some other form). We acknowledge that our improvements and changes are much more meaningful to the larger Free Software community if they are clearly documented and explained, since not everyone has the time or ability to understand the literal changes contained in the patches or tweaks themselves."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):121
+msgid "We will not hide problems"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):124
+msgid "We will keep our <uri link=\"http://bugs.gentoo.org/\">bug report database</uri> open for public view at all times; reports that users file online will immediately become visible to others."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):130
+msgid "Exceptions are made when we receive security-related or developer relations information with the request not to publicize before a certain deadline."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/graphics.xml.pot b/main/gettext/graphics.xml.pot
new file mode 100644
index 0000000..e28cd62
--- /dev/null
+++ b/main/gettext/graphics.xml.pot
@@ -0,0 +1,352 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):6
+msgid "Gentoo Linux Graphics"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(author:title):8
+msgid "Previous Chief Architect"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail:link):9
+msgid "drobbins@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail):9
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(author:title):11
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail:link):12
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail):12
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(abstract):15
+msgid "Listing of various graphical resources available for use under the terms of the Gentoo Name and Logo Usage Guidelines"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(version):22
+msgid "2.13"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(date):23
+msgid "2008-07-04"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):26
+msgid "Gentoo Branded Artwork"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):28
+msgid "Terms of Use"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):31
+msgid "The graphics on this page are written by various authors who grant you permission to use and modify them as you see fit. The use of the Gentoo name and logo are governed by the <uri link=\"/main/en/name-logo.xml\">Gentoo Name and Logo Usage Guidelines</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):41
+msgid "Contribute"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):44
+msgid "If you want to contribute a graphic to Gentoo, please use the <uri link=\"http://forums.gentoo.org\">Gentoo Forums</uri> first so others can comment and help you improve the quality of the graphic. Then contact <mail link=\"www@gentoo.org\">the Gentoo WWW team</mail> and ask for your graphic to be included."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):52
+msgid "The team may decide not to include your artwork if it is too close to existing graphics, is not available in sufficient resolutions, does not fit the Gentoo spirit (for instance because it is offensive) or any other reason."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):58
+msgid "Including a graphic on the page can take some time, please be patient."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):65
+msgid "Gentoo Misc Graphics"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri:link):69
+msgid "/images/gentoo-logo.svg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri):69
+msgid "G logo in svg format provided by Lennart Andre Rolland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri:link):74
+msgid "/images/gentoo-openbsd.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri):74
+msgid "Gentoo/OpenBSD logo in png format provided by the Gentoo Artwork Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):81
+msgid "Gentoo Linux Badges"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):88
+msgid "Put a <e>Powered by Gentoo</e> image on your Gentoo powered web sites or use a <e>Gentoo Badge</e> on your web page, blog, forum signature or elsewhere and link back to <uri link=\"http://www.gentoo.org\">http://www.gentoo.org</uri> - help us spread the word! Tell others how happy you are with Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):98
+msgid "/images/powered-show.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):101
+msgid "/images/powered-by-gentoo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):102
+msgid "/images/powered-by-gentoo2.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):103
+msgid "/images/powered-by-gentoo3.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):104
+msgid "/images/powered-by-gentoo4.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):107
+msgid "/images/ralph_gentoo_badge.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):110
+msgid "/images/gentoo-badge.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):114
+msgid "<uri link=\"/images/powered-small.png\">Small</uri> - <uri link=\"/images/powered.png\">Medium</uri> - <uri link=\"/images/powered-big.png\">Large</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):119
+msgid "by Sascha Schwabbauer"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):122
+msgid "by Ralph Jacobs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):125
+msgid "by Ryan Viljoen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):131
+msgid "/images/gentoo-badge2.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):134
+msgid "/images/gentoo-badge3.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):137
+msgid "/images/szbence-badge1.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):138
+msgid "/images/szbence-badge2.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):139
+msgid "/images/szbence-badge3.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):140
+msgid "/images/szbence-badge4.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):141
+msgid "/images/szbence-badge5.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):142
+msgid "/images/szbence-badge6.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):145
+msgid "/images/hardened-badge.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):149
+msgid "by <uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=36364\">m@o</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):152
+msgid "by <uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=26433\">wolven</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):155
+msgid "by <uri link=\"http://forums.gentoo.org/viewtopic-t-7763-start-50.html\">Szabó Bence</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):158
+msgid "by <uri link=\"http://www.liquidustech.com/\">Matthew Summers</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):167
+msgid "Gentoo Linux Wallpapers"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):175
+msgid "Use one of these <e>Gentoo Wallpapers</e> to beautify your desktop. Show every one that you run Gentoo Linux and run it with pride."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):187
+msgid "/images/backgrounds/gentoo120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):190
+msgid "/images/backgrounds/gentoo-cycle-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):194
+msgid "<uri link=\"/images/backgrounds/gentoo640x480.jpg\">640x680</uri> - <uri link=\"/images/backgrounds/gentoo1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic.php?t=6745\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):202
+msgid "<uri link=\"/images/backgrounds/gentoo-cycle-640x480.jpg\">640x480</uri> - <uri link=\"/images/backgrounds/gentoo-cycle-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-cycle-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo-cycle-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-cycle-1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic.php?t=6868\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):214
+msgid "/images/backgrounds/gentoo-ice-light2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):217
+msgid "/images/backgrounds/gentoo-ice-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):221
+msgid "<uri link=\"/images/backgrounds/gentoo-ice-light2-640x480.jpg\">640x480</uri> - <uri link=\"/images/backgrounds/gentoo-ice-light2-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-ice-light2-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo-ice-light2-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-ice-light2-1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic.php?t=7993\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):230
+msgid "<uri link=\"/images/backgrounds/gentoo-ice-640x480.jpg\">640x480</uri> - <uri link=\"/images/backgrounds/gentoo-ice-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-ice-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo-ice-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-ice-1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic.php?t=7672\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):242
+msgid "/images/backgrounds/gentoo-box-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):245
+msgid "/images/backgrounds/gentoo-minimal-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):249
+msgid "<uri link=\"/images/backgrounds/gentoo-box-640x480.jpg\">640x480</uri> - <uri link=\"/images/backgrounds/gentoo-box-1024x768.png\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-box-1152x864.png\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo-box-1280x1024.png\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-box-1600x1200.png\">1600x1200</uri><br/> by Luca Martinetti"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):258
+msgid "<uri link=\"/images/backgrounds/gentoo-minimal-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-minimal-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-minimal-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo-minimal-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-minimal-1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic-t-365758.html\">Brian Wigginton</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):271
+msgid "/images/backgrounds/gentoo-amd64_1-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):274
+msgid "/images/backgrounds/gentoo-amd64_2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):278
+msgid "<uri link=\"/images/backgrounds/gentoo-amd64_1-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-amd64_1-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-amd64_1-1280x1024.jpg\">1280x1024</uri><br/> by Tedder Wayne"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):285
+msgid "<uri link=\"/images/backgrounds/gentoo-amd64_2-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-amd64_2-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-amd64_2-1280x1024.jpg\">1280x1024</uri><br/> by Tedder Wayne"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):295
+msgid "/images/backgrounds/gentoo-glass-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):298
+msgid "/images/backgrounds/gentoo-causticswp-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):302
+msgid "<uri link=\"/images/backgrounds/gentoo-glass-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-glass-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-glass-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-glass-1600x1200.jpg\">1600x1200</uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):310
+msgid "<uri link=\"/images/backgrounds/gentoo-causticswp-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-causticswp-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-causticswp-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-causticswp-1600x1200.jpg\">1600x1200</uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):325
+msgid "/images/backgrounds/gentoo-water-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):328
+msgid "/images/backgrounds/gentoo-chojindsl_1-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):332
+msgid "<uri link=\"/images/backgrounds/gentoo-water-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-water-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-water-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-water-1600x1200.jpg\">1600x1200</uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):340
+msgid "<uri link=\"/images/backgrounds/gentoo-chojindsl_1-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_1-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_1-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_1-1600x1200.jpg\">1600x1200</uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):355
+msgid "/images/backgrounds/gentoo-chojindsl_2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):358
+msgid "/images/backgrounds/cow-push-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):362
+msgid "<uri link=\"/images/backgrounds/gentoo-chojindsl_2-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_2-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_2-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_2-1600x1200.jpg\">1600x1200</uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):374
+msgid "<uri link=\"/images/backgrounds/cow-push-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/cow-push-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/cow-push-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/cow-push-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/cow-push-1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=100549\">Tero Konttila</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):387
+msgid "/images/backgrounds/cow-push2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):390
+msgid "/images/backgrounds/macosx-gentoo-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):394
+msgid "<uri link=\"/images/backgrounds/cow-push2-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/cow-push2-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/cow-push2-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/cow-push2-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/cow-push2-1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;u=100549\">Tero Konttila</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):404
+msgid "<uri link=\"/images/backgrounds/macosx-gentoo-800x600.jpg\">800x600</uri> - <uri link=\"/images/backgrounds/macosx-gentoo-1024x768.jpg\">1024x768</uri> - <uri link=\"/images/backgrounds/macosx-gentoo-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/macosx-gentoo-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/macosx-gentoo-1600x1200.jpg\">1600x1200</uri><br/> by Przemysław Pazik"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):416
+msgid "/images/backgrounds/gentoo-abducted-120x90.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):421
+msgid "<uri link=\"/images/backgrounds/gentoo-abducted-800x600.png\">800x600</uri> - <uri link=\"/images/backgrounds/gentoo-abducted-1024x768.png\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-abducted-1152x864.png\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo-abducted-1280x1024.png\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-abducted-1600x1200.png\">1600x1200</uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic-t-257123.html\">Matteo 'Peach' Pescarin</uri>"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/irc.xml.pot b/main/gettext/irc.xml.pot
new file mode 100644
index 0000000..94fdc7c
--- /dev/null
+++ b/main/gettext/irc.xml.pot
@@ -0,0 +1,1296 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(title):6
+msgid "Gentoo Linux IRC Resources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):7 ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):10 ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):13 ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):16 ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):19 ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):22
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author):7
+msgid "Colin Morey"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):11
+msgid "klieber@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):11
+msgid "Kurt Lieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):14
+msgid "fox2mike@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):14
+msgid "Shyam Mani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):17
+msgid "astinus@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):17
+msgid "Alex Howells"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):20
+msgid "nightmorph@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):20
+msgid "Joshua Saddler"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):23
+msgid "musikc@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):23
+msgid "Christina Fullam"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(abstract):26
+msgid "Official Gentoo IRC channels"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(version):32
+msgid "1.39"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(date):33
+msgid "2010-07-16"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(title):36
+msgid "Internet Relay Chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):40
+msgid "<b>All our official IRC channels can be found on <uri link=\"http://www.freenode.net/\">freenode</uri></b>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):45
+msgid "All of our channels are managed by volunteers for the mutual benefit of users and contributors alike, and we consider IRC to be open to everyone. Please feel free to pop in and introduce yourself, and consider it a resource for when you run into problems or have questions about Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):52
+msgid "We ask very little of users visiting our support channels on freenode:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):57
+msgid "Please act sensibly and maturely, abiding by the <uri link=\"/proj/en/council/coc.xml\">Code of Conduct</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):58
+msgid "Please read the topic when entering a channel, it contains valuable information!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):59
+msgid "Bots or scripts that talk are not welcome in most channels. If in doubt, please ask."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):60
+msgid "Please do not use <c>CTCP VERSION</c> or the like on users / channels without their consent."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):61
+msgid "Please note we operate a clean-language policy in #gentoo, and swearing is not permitted."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):62
+msgid "Please also note we are unable to support alternate package managers in #gentoo, just Portage!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):65
+msgid "It should be noted that we do <b>not</b> provide support for derivative distributions based upon Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):71
+msgid "Primary Support Channel(s)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):74
+msgid "irc://irc.gentoo.org/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):74
+msgid "#gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):75
+msgid "Issues with your installation, got a problem with Xorg? Give #gentoo a try!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):78
+msgid "irc://irc.gentoo.org/gentoo-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):78
+msgid "#gentoo-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):79
+msgid "Discussion about the active development of Gentoo Linux, requires voice (+v)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):82
+msgid "irc://irc.gentoo.org/gentoo-groupcontacts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):82
+msgid "#gentoo-groupcontacts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):83
+msgid "Gentoo Group Contacts are the official means of requesting or reporting an issue with a Freenode cloak or channel, etc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):87
+msgid "irc://irc.gentoo.org/gentoo-ops"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):87
+msgid "#gentoo-ops"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):88
+msgid "Questions or complaints about #gentoo policy or bans must be raised here only."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):94
+msgid "Architecture &amp; Platform Support Channels"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):97
+msgid "irc://irc.gentoo.org/gentoo-alpha"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):97
+msgid "#gentoo-alpha"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):98
+msgid "Gentoo Linux/Alpha"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):101
+msgid "irc://irc.gentoo.org/gentoo-amd64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):101
+msgid "#gentoo-amd64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):102
+msgid "Gentoo Linux/AMD64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):106
+msgid "irc://irc.gentoo.org/gentoo-amd64-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):106
+msgid "#gentoo-amd64-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):108
+msgid "Gentoo Linux/AMD64 Developer Channel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):111
+msgid "irc://irc.gentoo.org/gentoo-bsd"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):111
+msgid "#gentoo-bsd"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):112
+msgid "Gentoo *BSD"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):115
+msgid "irc://irc.gentoo.org/gentoo-hppa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):115
+msgid "#gentoo-hppa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):116
+msgid "Gentoo Linux/HPPA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):119
+msgid "irc://irc.gentoo.org/gentoo-ia64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):119
+msgid "#gentoo-ia64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):120
+msgid "Gentoo Linux/IA-64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):123
+msgid "irc://irc.gentoo.org/gentoo-mips"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):123
+msgid "#gentoo-mips"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):124
+msgid "Gentoo Linux/MIPS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):127
+msgid "irc://irc.gentoo.org/gentoo-powerpc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):127
+msgid "#gentoo-powerpc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):128
+msgid "Gentoo Linux/PowerPC (PPC and PPC64)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):131
+msgid "irc://irc.gentoo.org/gentoo-sparc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):131
+msgid "#gentoo-sparc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):132
+msgid "Gentoo Linux/Sparc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):135
+msgid "irc://irc.gentoo.org/gentoo-x86"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):135
+msgid "#gentoo-x86"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):136
+msgid "Gentoo Linux/x86 development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):147
+msgid "irc://irc.gentoo.org/gentoo-accessibility"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):147
+msgid "#gentoo-accessibility"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):149
+msgid "The <uri link=\"/proj/en/desktop/accessibility\">Accessibility</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):154
+msgid "irc://irc.gentoo.org/gentoo-apache"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):154
+msgid "#gentoo-apache"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):155
+msgid "Gentoo Apache development related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):158
+msgid "irc://irc.gentoo.org/gentoo-bugs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):158
+msgid "#gentoo-bugs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):159
+msgid "Gentoo BugDay Events, Gentoo Bug Fixing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):162
+msgid "irc://irc.gentoo.org/gentoo-cluster"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):162
+msgid "#gentoo-cluster"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):163
+msgid "Gentoo Linux/Clustering"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):166
+msgid "irc://irc.gentoo.org/gentoo-council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):166
+msgid "#gentoo-council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):167
+msgid "/proj/en/council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):167
+msgid "Gentoo Council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):170
+msgid "irc://irc.gentoo.org/gentoo-commits"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):170
+msgid "#gentoo-commits"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):171
+msgid "Real-time Gentoo CVS/SVN commit information"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):174
+msgid "irc://irc.gentoo.org/gentoo-db"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):174
+msgid "#gentoo-db"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):175
+msgid "Database-related Packages and Discussion."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):178
+msgid "irc://irc.gentoo.org/gentoo-desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):178
+msgid "#gentoo-desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):179
+msgid "Developers &amp; Users, all things desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):182
+msgid "irc://irc.gentoo.org/gentoo-dev-help"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):182
+msgid "#gentoo-dev-help"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):183
+msgid "Ebuild Writers' Workplace"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):186
+msgid "irc://irc.gentoo.org/gentoo-devrel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):186
+msgid "#gentoo-devrel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):187
+msgid "The <uri link=\"/proj/en/devrel\">Developer Relations</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):190
+msgid "irc://irc.gentoo.org/gentoo-doc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):190
+msgid "#gentoo-doc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):191
+msgid "Gentoo Documentation Development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):194
+msgid "irc://irc.gentoo.org/gentoo-embedded"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):194
+msgid "#gentoo-embedded"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):195
+msgid "Embedded Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):198
+msgid "irc://irc.gentoo.org/gentoo-events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):198
+msgid "#gentoo-events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):199
+msgid "Planning and Real-Time Chat during Gentoo public events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):202
+msgid "irc://irc.gentoo.org/gentoo-forums"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):202
+msgid "#gentoo-forums"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):203
+msgid "Gentoo Forums related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):206
+msgid "irc://irc.gentoo.org/gentoo-games"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):206
+msgid "#gentoo-games"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):207
+msgid "Gentoo Linux native gaming discussion (no Cedega/Wine)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):210
+msgid "irc://irc.gentoo.org/gentoo-guis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):210
+msgid "#gentoo-guis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):211
+msgid "Gentoo GUIs Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):214
+msgid "irc://irc.gentoo.org/gentoo-hardened"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):214
+msgid "#gentoo-hardened"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):215
+msgid "Hardened Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):218
+msgid "irc://irc.gentoo.org/gentoo-haskell"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):218
+msgid "#gentoo-haskell"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):219
+msgid "Haskell Packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):222
+msgid "irc://irc.gentoo.org/gentoo-java"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):222
+msgid "#gentoo-java"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):223
+msgid "Java related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):226
+msgid "irc://irc.gentoo.org/gentoo-kde"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):226
+msgid "#gentoo-kde"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):227
+msgid "KDE package maintainance"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):230
+msgid "irc://irc.gentoo.org/gentoo-kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):230
+msgid "#gentoo-kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):231
+msgid "Gentoo Kernel development discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):234
+msgid "irc://irc.gentoo.org/gentoo-gmn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):234
+msgid "#gentoo-gmn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):235
+msgid "Gentoo Monthly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):238
+msgid "irc://irc.gentoo.org/gentoo-laptop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):238
+msgid "#gentoo-laptop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):239
+msgid "Laptop related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):242
+msgid "irc://irc.gentoo.org/gentoo-lisp"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):242
+msgid "#gentoo-lisp"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):243
+msgid "Gentoo Lisp related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):246
+msgid "irc://irc.gentoo.org/gentoo-media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):246
+msgid "#gentoo-media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):247
+msgid "Gentoo multimedia development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):250
+msgid "irc://irc.gentoo.org/gentoo-mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):250
+msgid "#gentoo-mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):251
+msgid "Gentoo mirrors and administration chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):254
+msgid "irc://irc.gentoo.org/gentoo-netmail"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):254
+msgid "#gentoo-netmail"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):255
+msgid "Mail-related packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):258
+msgid "irc://irc.gentoo.org/gentoo-netmon"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):258
+msgid "#gentoo-netmon"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):259
+msgid "Network Monitoring Packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):262
+msgid "irc://irc.gentoo.org/gentoo-perl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):262
+msgid "#gentoo-perl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):263
+msgid "All things Gentoo perl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):266
+msgid "irc://irc.gentoo.org/gentoo-php"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):266
+msgid "#gentoo-php"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):267
+msgid "Gentoo PHP discussion/support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):270
+msgid "irc://irc.gentoo.org/gentoo-portage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):270
+msgid "#gentoo-portage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):271
+msgid "Gentoo Portage Development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):274
+msgid "irc://irc.gentoo.org/gentoo-pr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):274
+msgid "#gentoo-pr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):275
+msgid "The <uri link=\"/proj/en/pr\">Public Relations</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):278
+msgid "irc://irc.gentoo.org/gentoo-prefix"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):278
+msgid "#gentoo-prefix"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):279
+msgid "The <uri link=\"/proj/en/gentoo-alt/prefix/\">Gentoo Prefix</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):282
+msgid "irc://irc.gentoo.org/gentoo-python"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):282
+msgid "#gentoo-python"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):283
+msgid "Gentoo Python discussion/support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):286
+msgid "irc://irc.gentoo.org/gentoo-qa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):286
+msgid "#gentoo-qa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):287
+msgid "Gentoo <uri link=\"/proj/en/qa\">Quality Assurance</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):290
+msgid "irc://irc.irc.gentoo.org/gentoo-qt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):290
+msgid "#gentoo-qt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):291
+msgid "Gentoo <uri link=\"/proj/en/desktop/qt/\">Qt Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):294
+msgid "irc://irc.gentoo.org/gentoo-releng"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):294
+msgid "#gentoo-releng"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):295
+msgid "Gentoo Release Engineering internal discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):298
+msgid "irc://irc.gentoo.org/gentoo-ruby"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):298
+msgid "#gentoo-ruby"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):299
+msgid "Ruby on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):302
+msgid "irc://irc.gentoo.org/gentoo-science"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):302
+msgid "#gentoo-science"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):303
+msgid "Gentoo Scientific Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):306
+msgid "irc://irc.gentoo.org/gentoo-security"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):306
+msgid "#gentoo-security"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):307
+msgid "Discussions about the security of Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):310
+msgid "irc://irc.gentoo.org/gentoo-server"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):310
+msgid "#gentoo-server"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):311
+msgid "Server related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):314
+msgid "irc://irc.gentoo.org/gentoo-soc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):314
+msgid "#gentoo-soc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):315
+msgid "Our participation in the Google Summer of Code"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):318
+msgid "irc://irc.gentoo.org/gentoo-sunrise"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):318
+msgid "#gentoo-sunrise"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):319
+msgid "/proj/en/sunrise"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):319
+msgid "Project Sunrise - Gentoo User Overlay"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):323
+msgid "irc://irc.gentoo.org/gentoo-toolchain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):323
+msgid "#gentoo-toolchain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):325
+msgid "Discussion about the Gentoo toolchain (GCC, libc, binutils, etc.)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):330
+msgid "irc://irc.gentoo.org/gentoo-treecleaners"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):330
+msgid "#gentoo-treecleaners"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):332
+msgid "/proj/en/qa/treecleaners"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):332
+msgid "Gentoo Tree Cleaning Team"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):336
+msgid "irc://irc.gentoo.org/gentoo-trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):336
+msgid "#gentoo-trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):338
+msgid "The Trustees of the <uri link=\"/foundation/en/\">Gentoo Foundation</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):341
+msgid "irc://irc.gentoo.org/gentoo-userreps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):341
+msgid "#gentoo-userreps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):342
+msgid "This is where you can find and speak with the user representatives."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):345
+msgid "irc://irc.gentoo.org/gentoo-vbox"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):345
+msgid "#gentoo-vbox"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):346
+msgid "Support and development channel for virtualbox on gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):349
+msgid "irc://irc.gentoo.org/gentoo-vdr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):349
+msgid "#gentoo-vdr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):350
+msgid "Gentoo VDR and DVB related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):353
+msgid "irc://irc.gentoo.org/gentoo-vim"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):353
+msgid "#gentoo-vim"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):354
+msgid "Gentoo Vim discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):357
+msgid "irc://irc.gentoo.org/gentoo-voip"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):357
+msgid "#gentoo-voip"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):358
+msgid "Voice over IP related Discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):361
+msgid "irc://irc.gentoo.org/gentoo-vps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):361
+msgid "#gentoo-vps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):362
+msgid "Gentoo Virtual Private Server related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):365
+msgid "irc://irc.gentoo.org/gentoo-web"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):365
+msgid "#gentoo-web"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):366
+msgid "Everything web- and webapp related (on Gentoo of course)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):369
+msgid "irc://irc.gentoo.org/gentoo-wiki"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):369
+msgid "#gentoo-wiki"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):370
+msgid "<uri link=\"/proj/en/wiki\">Gentoo Wiki</uri> discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):376
+msgid "Regional Support Channels"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):379
+msgid "irc://irc.gentoo.org/gentoo-au"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):379
+msgid "#gentoo-au"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):380
+msgid "Australia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):383
+msgid "irc://irc.gentoo.org/gentoo-be"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):383
+msgid "#gentoo-be"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):384 ../../gentoo/xml/htdocs/main/en//irc.xml(th):444
+msgid "In het Nederlands"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):387
+msgid "irc://irc.gentoo.org/gentoo-br"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):387
+msgid "#gentoo-br"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):388
+msgid "Português do Brasil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):391
+msgid "irc://irc.gentoo.org/gentoo-by"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):391
+msgid "#gentoo-by"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):392
+msgid "На беларускай мове"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):395
+msgid "irc://irc.gentoo.org/gentoo.cs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):395
+msgid "#gentoo.cs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):396
+msgid "česky a slovensky"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):399
+msgid "irc://irc.gentoo.org/gentoo-cn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):399
+msgid "#gentoo-cn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):400
+msgid "简体中文"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):403
+msgid "irc://irc.gentoo.org/gentoo.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):403
+msgid "#gentoo.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):404
+msgid "Auf Deutsch"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):407
+msgid "irc://irc.gentoo.org/gentoo-dk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):407
+msgid "#gentoo-dk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):408
+msgid "På Dansk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):411
+msgid "irc://irc.gentoo.org/gentoo-el"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):411
+msgid "#gentoo-el"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):412
+msgid "Στα Ελληνικά"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):415
+msgid "irc://irc.gentoo.org/gentoo-es"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):415
+msgid "#gentoo-es"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):416
+msgid "En español"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):419
+msgid "irc://irc.gentoo.org/gentoo-fi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):419
+msgid "#gentoo-fi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):420
+msgid "Suomeksi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):423
+msgid "irc://irc.gentoo.org/gentoofr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):423
+msgid "#gentoofr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):424
+msgid "En français"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):427
+msgid "irc://irc.gentoo.org/gentoo-id"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):427
+msgid "#gentoo-id"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):428
+msgid "Komunitas Pengguna Gentoo Indonesia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):431
+msgid "irc://irc.gentoo.org/gentoo-in"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):431
+msgid "#gentoo-in"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):432
+msgid "Support for Indian Gentoo Users and Indic localization"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):435
+msgid "irc://irc.gentoo.org/gentoo-it"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):435
+msgid "#gentoo-it"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):436
+msgid "In Italiano"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):439
+msgid "irc://irc.gentoo.org/gentoo-ja"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):439
+msgid "#gentoo-ja"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):440
+msgid "日本語で"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):443
+msgid "irc://irc.gentoo.org/gentoo-nl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):443
+msgid "#gentoo-nl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):447
+msgid "irc://irc.gentoo.org/gentoo-no"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):447
+msgid "#gentoo-no"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):448
+msgid "På norsk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):451
+msgid "irc://irc.gentoo.org/gentoo-pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):451
+msgid "#gentoo-pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):452
+msgid "Po Polsku"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):455
+msgid "irc://irc.gentoo.org/gentoo-pt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):455
+msgid "#gentoo-pt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):456
+msgid "Em Português"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):459
+msgid "irc://irc.gentoo.org/gentoo-ro"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):459
+msgid "#gentoo-ro"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):460
+msgid "Discuţii în limba română"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):463
+msgid "irc://irc.gentoo.org/gentoo-ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):463
+msgid "#gentoo-ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):464
+msgid "На русском языке"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):467
+msgid "irc://irc.gentoo.org/gentoo-se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):467
+msgid "#gentoo-se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):468
+msgid "På svenska"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):471
+msgid "irc:irc.gentoo.org/gentoo-tr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):471
+msgid "#gentoo-tr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):472
+msgid "Resmi Gentoo Türkiye kanalı"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):475
+msgid "irc://irc.gentoo.org/gentoo-tw"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):475
+msgid "#gentoo-tw"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):476
+msgid "使用繁體中文(台灣)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):479
+msgid "irc://irc.gentoo.org/gentoo-ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):479
+msgid "#gentoo-ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):480
+msgid "Українською"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):483
+msgid "irc://irc.gentoo.org/gentoo-uk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):483
+msgid "#gentoo-uk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):484
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):487
+msgid "irc://irc.gentoo.org/gentoo-ve"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):487
+msgid "#gentoo-ve"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):488
+msgid "Venezuela"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/lists.xml.pot b/main/gettext/lists.xml.pot
new file mode 100644
index 0000000..f4f03e8
--- /dev/null
+++ b/main/gettext/lists.xml.pot
@@ -0,0 +1,693 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):6
+msgid "Gentoo Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):8 ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):11
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):9
+msgid "lcars"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):9
+msgid "Andrea Barisani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):12
+msgid "cybersystem"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):12
+msgid "Sascha Schwabbauer"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):14 ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):17 ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):20 ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):23
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):15
+msgid "curtis119"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):15
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):18
+msgid "klieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):18
+msgid "Kurt Lieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):21
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):21
+msgid "Robin H. Johnson"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):24
+msgid "nightmorph"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(abstract):27
+msgid "Gentoo public mailing lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(version):35
+msgid "6.2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(date):36
+msgid "2010-09-09"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):39
+msgid "Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):43
+msgid "The Gentoo free software project has a number of public mailing lists, covering a variety of Gentoo-related subjects. Our mailing lists are powered by <uri link=\"http://mlmmj.mmj.dk\">mlmmj</uri> and provides <c>List-Id:</c> mail headers and <c>[listname]</c> subject prefixes to comply with modern mailing list manager standards and conventions."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):51
+msgid "One interacts with <c>mlmmj</c> via email. To subscribe to a list, send an empty email to:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(note):60
+msgid "Replace 'listname' with the actual name of the list that you want to subscribe to, e.g.: <c>gentoo-user+subscribe@lists.gentoo.org</c> to subscribe to the <c>gentoo-user</c> mailing list."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):66
+msgid "Once subscribed to the list, you can post to it by sending an email to:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):74
+msgid "To unsubscribe from a list, send an empty email to:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):82
+msgid "All of our lists also have a corresponding digest list. Digest lists will mail a single email to you every couple of days, rather than individual emails for each post. If you are subscribed to the digest variant and wish to be unsubscribed, you must specifically unsubscribe from the digest variant. Using the email address that you wish to (un)subscribe, send an empty email to the following addresses to subscribe and unsubscribe from mailing lists respectively:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):97
+msgid "Some users may want to post to the list, but not actually receive mail from it (such as those who read lists via an alternate method, such as gmane). These users may subscribe to the \"nomail\" option of each list:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):108
+msgid "You can learn more about the capabilities of mlmmj by sending an empty mail to the following address:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(impo):117
+msgid "You can also learn more about the Gentoo mailing list system, including etiquette and acceptable behavior, by reading the short Gentoo <uri link=\"#faq\">mailing list FAQ</uri> that appears later in this document."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):126
+msgid "Primary Gentoo Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):131 ../../gentoo/xml/htdocs/main/en//lists.xml(th):344 ../../gentoo/xml/htdocs/main/en//lists.xml(th):440 ../../gentoo/xml/htdocs/main/en//lists.xml(th):490
+msgid "List name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):132 ../../gentoo/xml/htdocs/main/en//lists.xml(th):345 ../../gentoo/xml/htdocs/main/en//lists.xml(th):441 ../../gentoo/xml/htdocs/main/en//lists.xml(th):491
+msgid "Description"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):136
+msgid "General Gentoo user support and discussion mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):140
+msgid "General Gentoo announcements list (new releases, security fixes)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):144
+msgid "General Gentoo developer discussion mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):148
+msgid "Gentoo development-specific announcements list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):152
+msgid "For the discussion of non-technical matters in Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):156
+msgid "For the discussion of security issues and fixes"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):160
+msgid "For documentation contributions, suggestions, improvements and translations"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):164
+msgid "Subscribe to this list if you want to be notified on changes regarding our documentation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):168
+msgid "Subscribe to this list if you want to be notified on changes in the CVS, SVN and Git trees. This is a high-traffic read-only list!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):172
+msgid "For Gentoo Linux/PowerPC user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):176
+msgid "For Gentoo Linux/PowerPC developer discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):180
+msgid "For Gentoo Linux/Alpha user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):184
+msgid "For Gentoo Linux/AMD64 user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):188
+msgid "Discussions about running Gentoo on the HPPA architecture"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):192
+msgid "Discussions about running Gentoo on the MIPS architecture"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):196
+msgid "For Gentoo Linux/Sparc user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):200
+msgid "Discussion about Gentoo/BSD"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):204
+msgid "Discussion about the <uri link=\"/proj/en/gentoo-alt/\">Gentoo on Alternate Platforms Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):208
+msgid "Release announcements for gentoo-sources, vesafb-tng, fbsplash and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):212
+msgid "Discussion on powersaving, pcmcia and other laptop-related stuff"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):216
+msgid "Mailing list devoted to Gentoo on the desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):220
+msgid "Discussions about improving the Gentoo desktop experience"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):224
+msgid "For a security hardened version of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):228
+msgid "Portage Internals and Portage Interface Development Discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):232
+msgid "Mailinglist dedicated to catalyst"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):236
+msgid "Discussions about Gentoo in production environments"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):240
+msgid "Discussion about Gentoo Linux administration issues"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):244
+msgid "Discussions about Gentoo in clustered environments"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):248
+msgid "Discussion and help with ebuild developement issues for users"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):252
+msgid "Discussion of web configuration and administration related to Gentoo's web tools"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):256
+msgid "For Gentoo Linux/embedded user and developer discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):260
+msgid "Mailinglist for the Gentoo release management team"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):264
+msgid "Mailinglist for all Gentoo public-relation discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):268
+msgid "Discussions about QA and its improvement within Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):272
+msgid "Gentoo Developer Relations mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):276
+msgid "Gentoo User Relations mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):280
+msgid "Gentoo Council mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):284
+msgid "Announcements and discussion among Gentoo mirror admins and developers regarding releases and other issues"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):288
+msgid "Discussion of perl on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):292
+msgid "Discussion about Java on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):296
+msgid "Discussion on science-related applications and integration in Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):300
+msgid "Discussion about the <uri link=\"/proj/en/desktop/accessibility/\">Gentoo Accessibility Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):304
+msgid "Discussion within United Kingdom developers and UK based events organisation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):308
+msgid "Discussion within Australian developers and local events organisation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):312
+msgid "Discussion on Gentoo activities related to Google's Summer of Code"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):316
+msgid "Discussion about Lisp on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):320
+msgid "Discussion about VDR on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):324
+msgid "The Gentoo NFP/Trustees Mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):328
+msgid "Discussion about migration of primary Gentoo repositories to alternate SCMs."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):332
+msgid "Discussion about the Gentoo Package Manager Specification."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):339
+msgid "Non-English Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):349
+msgid "deutschsprachige Gentoo User Diskussionsliste"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):353
+msgid "Brazilian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):357
+msgid "Greek Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):361
+msgid "Lista para la ayuda y discusion de usuarios hispano-hablantes de Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):365
+msgid "French Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):369
+msgid "Hungarian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):373
+msgid "Indonesian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):377
+msgid "Dutch Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):381
+msgid "Polish Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):385
+msgid "Czech and Slovak Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):389
+msgid "Russian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):393
+msgid "Turkish Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):397
+msgid "German Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):401
+msgid "Greek Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):405
+msgid "Lista de correo dedicada a la traduccion y creacion de documentacion en Espanol de Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):412
+msgid "Finnish Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):416
+msgid "French Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):420
+msgid "Italian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):424
+msgid "Polish Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):428
+msgid "Russian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):435
+msgid "Other Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):445
+msgid "For the discussion of libconf development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):449
+msgid "Special-purpose list for the Gentoo Bug Wranglers. This mailing list is by invite only. If you are interested in joining, simply get active on bugzilla and help our existing members wrangle bugs. You'll get noticed and invited to be a bug-wrangler in due course."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):458
+msgid "For testing of the list management software (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):462
+msgid "Internal Gentoo developer discussions (non-development, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):466
+msgid "Legally required announcements of the Gentoo Foundation to foundation members (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):470
+msgid "Internal Gentoo Infrastructure project list (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):474
+msgid "Internal Gentoo Foundation Trustees discussions (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):481
+msgid "Inactive, Closed Gentoo Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):484
+msgid "Archives still exist but these lists are closed for new posts."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):495
+msgid "Indonesian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):499
+msgid "Lithuanian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):503
+msgid "Hungarian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):507
+msgid "Dutch Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):511
+msgid "Gentoo Forums translations list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):515
+msgid "For discussion of document translation issues"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):519
+msgid "Discussions about running Gentoo on the ARM architecture"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):523
+msgid "Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):527
+msgid "German Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):531
+msgid "Spanish Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):535
+msgid "French Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):539
+msgid "Dutch Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):543
+msgid "Polish Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):547
+msgid "Gentoo Weekly Newsletter - administratriva for English authors (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):551
+msgid "Gentoo Weekly Newsletter - administratriva for German translations (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):555
+msgid "Gentoo Weekly Newsletter - administratriva for Spanish translations (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):559
+msgid "Gentoo Monthly Newsletter (shared with gentoo-gwn)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):563
+msgid "German Gentoo Monthly Newsletter (shared with gentoo-gwn-de)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):567
+msgid "Spanish Gentoo Monthly Newsletter (shared with gentoo-gwn-es)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):571
+msgid "French Gentoo Monthly Newsletter (shared with gentoo-gwn-fr)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):575
+msgid "Dutch Gentoo Monthly Newsletter (shared with gentoo-gwn-nl)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):579
+msgid "Polish Gentoo Monthly Newsletter (shared with gentoo-gwn-pl)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):583
+msgid "Gentoo Monthly Newsletter - administratriva for English authors (shared with gentoo-gwn-admin, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):587
+msgid "Gentoo Monthly Newsletter - administratriva for German translations (shared with gentoo-gwn-admin-de, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):591
+msgid "Gentoo Monthly Newsletter - administratriva for Spanish translations (shared with gentoo-gwn-admin-es, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):595
+msgid "Discussion of programming language support and related issues in Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):599
+msgid "For Gentoo Linux/ia64 user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):603
+msgid "Discussion about the <uri link=\"/proj/en/scire/\">Systems Configuration, Installation and Replication Environment Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):610
+msgid "Discussion about Gentoo media packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):614
+msgid "Discussion about Gentoo for Xbox"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):618
+msgid "For Gentoo cygwin user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):622
+msgid "Dedicated to the development of the new Gentoo website"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):626
+msgid "Discussion about the <uri link=\"/proj/en/releng/installer/\">Gentoo Linux Installer Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):633
+msgid "Discussions about improving the performance of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):637
+msgid "Discussion about Gentoo Extreme Security project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):641
+msgid "Discussion about GNUstep on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):645
+msgid "Discussion about Gentoo on OSX project (merged to gentoo-alt list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):649
+msgid "Commit emails for CVS (merged to gentoo-commits list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):653
+msgid "Discussions of the Gentoo Proctors project (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):657
+msgid "Korean Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):661
+msgid "Discussion about development of the Gentoo GNAP project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):665
+msgid "Announcements about the Gentoo Tenshi project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):669
+msgid "Discussion about development of the Gentoo Tenshi project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):677
+msgid "Archives"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):680
+msgid "Gentoo mailing list archives are collected on <br/><uri link=\"http://archives.gentoo.org\">archives.gentoo.org</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):685
+msgid "The following sites also host archives of most of the mailing lists.<br/><uri link=\"http://news.gmane.org/search.php?match=gentoo\">Gmane</uri><br/><uri link=\"http://marc.theaimsgroup.com/\">MARC: Mailing list ARChives</uri><br/><uri link=\"http://www.mail-archive.com\">Mail-Archive</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):696
+msgid "Mailing List Mini-FAQ"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):704
+msgid "To reduce spam, all of our lists are configured to only allow posts from official subscriber email addresses. Fortunately, <c>mlmmj</c> supports \"nomail\" subscriptions, allowing you to register alternate email addresses that can be used only for posting to the list. Here's an example of how this works. Let's say you subscribed to the <c>gentoo-dev</c> list as <c>jim@home.com</c>, but you'd also like to post to the list using your <c>james@work.com</c> email address. To do this, send a message (as <c>james@work.com</c>) to <c>gentoo-dev+subscribe-nomail@lists.gentoo.org</c> You should then be allowed to post to <c>gentoo-dev</c> using both your home and work email addresses."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):716
+msgid "In line with the original spam reduction goal, if you post to the list from a non-subscribed address, your mail will be delivered to <path>/dev/null</path>. You will <b>not</b> receive any bounce message from our servers. This prevents spammers from forging your address to get a bounce delivered to you."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):728
+msgid "Unsubscribe from the normal list and then subscribe to the digest list. For list <c>listname</c>, this would be done by sending empty emails to the following two addresses:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):742
+msgid "To filter incoming mail arriving from list <c>listname</c>, use the following <c>procmail</c> recipe:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(pre:caption):747
+msgid "Sample procmail recipe"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(pre):747
+#, no-wrap
+msgid "\n:0:\n* ^List-Id:.*listname\\.gentoo\\.org\nMail/listname\n"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):753
+msgid "This is identical to how you'd filter incoming <e>Mailman</e> mailing list manager emails."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):762
+msgid "HTML email is discouraged, but not forbidden (there are some MUA, specifically web-based that make it very hard to disable HTML entirely). Beware that some users may have their recieving side configured to hide HTML entirely, so it might look like you are ignored, especially if you sent HTML-only email. In order of preference, you should endeavour to send: text/plain, multipart with text/plain before text/html, text/html. MIME is acceptable and widely used."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):771
+msgid "Please do not send any vacation or out of office messages to the list. In the interests of reducing list spam, if you set any auto-responding message that goes to the lists, we will unsubscribe your account from ALL lists. Any previously subscribed addresses that send mail server messages to the lists will also be removed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):779
+msgid "Do not cross-post when sending messages to a list! Sending the same message to more than one list at a time leads to fragmentation of the thread when some people reply on one list, and some on another list. There's no guarantee that the recipients of your message are on both lists. Choose just one list when sending a message."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(note):787
+msgid "For general email list etiquette, <uri link=\"http://www.dtcc.edu/cs/rfc1855.html\">these guidelines</uri> are an excellent primer."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/mirrors-rsync-data.xml.pot b/main/gettext/mirrors-rsync-data.xml.pot
new file mode 100644
index 0000000..08329fa
--- /dev/null
+++ b/main/gettext/mirrors-rsync-data.xml.pot
@@ -0,0 +1,1164 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):12
+msgid "Any available mirror - rsync.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):13
+msgid "rsync://rsync.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):16
+msgid "Tera-byte Dot Com Inc - rsync1.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):17
+msgid "rsync://rsync1.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):20
+msgid "Gossamer Threads"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):21
+msgid "rsync://rsync2.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):24
+msgid "Memorial University - rsync3.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):25
+msgid "rsync://rsync3.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):28
+msgid "University of Waterloo - rsync4.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):29
+msgid "rsync://rsync4.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):32
+msgid "Arctic Network Mirrors - rsync5.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):33
+msgid "rsync://rsync5.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):36
+msgid "mirror.the-best-hosting.net - rsync6.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):37
+msgid "rsync://rsync6.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):43
+msgid "Any available mirror - rsync.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):44
+msgid "rsync://rsync.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):47
+msgid "University of Delaware, Delaware Linux Users Group - rsync2.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):49
+msgid "rsync://rsync2.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):52
+msgid "Georgia Tech - rsync3.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):53
+msgid "rsync://rsync3.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):56
+msgid "Rochester Institute of Technology - rsync5.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):57
+msgid "rsync://rsync5.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):60
+msgid "University of Northern Iowa - rsync6.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):61
+msgid "rsync://rsync6.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):64
+msgid "CERIAS, Purdue University - rsync7.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):65
+msgid "rsync://rsync7.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):68
+msgid "University of Idaho - rsync8.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):69
+msgid "rsync://rsync8.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):72
+msgid "gentoo.insync.za.net - rsync9.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):73
+msgid "rsync://rsync9.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):76
+msgid "Portalstorm - rsync10.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):77
+msgid "rsync://rsync10.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):80
+msgid "Steadfast Networks - rsync11.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):81
+msgid "rsync://rsync11.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):84
+msgid "NetNITCO Internet Services - rsync15.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):85
+msgid "rsync://rsync15.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):88
+msgid "Chemistry Dept, University of Wisconsin at Madison - rsync21.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):90
+msgid "rsync://rsync21.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):93
+msgid "Michigan Tech University - rsync24.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):94
+msgid "rsync://rsync24.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):97
+msgid "Indiana University, Unix Systems Support Group - rsync25.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):98
+msgid "rsync://rsync25.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):101
+msgid "TDS Internet Services - rsync26.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):102
+msgid "rsync://rsync26.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):105
+msgid "Semaphore Corporation - rsync27.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):106
+msgid "rsync://rsync27.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):109
+msgid "Liquidweb Inc (genfu.org) - rsync29.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):110
+msgid "rsync://rsync29.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):116
+msgid "Any available mirror - rsync.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):117
+msgid "rsync://rsync.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):120
+msgid "Laboratory of System Administration - rsync1.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):121
+msgid "rsync://rsync1.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):124
+msgid "Laboratório de Computação Científica - UFMG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):125
+msgid "rsync://rsync2.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):131
+msgid "Any available mirror - rsync.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):132
+msgid "rsync://rsync.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):135
+msgid "Inode - rsync1.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):136
+msgid "rsync://rsync1.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):139
+msgid "Lagis - rsync2.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):140
+msgid "rsync://rsync2.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):146
+msgid "Any available mirror - rsync.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):147
+msgid "rsync://rsync.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):150
+msgid "UPC Česká republika, a.s - rsync1.cz.gentoo.org."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):151
+msgid "rsync://rsync1.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):154
+msgid "Advokatni Kancelar Kindl &amp; Partneri - rsync2.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):155
+msgid "rsync://rsync2.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):161
+msgid "Any available mirror - rsync.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):162
+msgid "rsync://rsync.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):165
+msgid "Gentoo e.V. - rsync1.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):166
+msgid "rsync://rsync1.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):169
+msgid "hosteurope.de - rsync3.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):170
+msgid "rsync://rsync3.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):173
+msgid "Opteamax UG - rsync4.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):174
+msgid "rsync://rsync4.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):177
+msgid "I-Node - rsync5.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):178
+msgid "rsync://rsync5.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):181
+msgid "rwth-aachen.de - rsync6.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):182
+msgid "rsync://rsync6.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):185
+msgid "stealer.net - rsync7.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):186
+msgid "rsync://rsync7.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):189
+msgid "gentoo64.net - rsync8.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):190
+msgid "rsync://rsync8.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):193
+msgid "University of Applied Sciences, Esslingen - rsync9.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):194
+msgid "rsync://rsync9.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):197
+msgid "Ruhr-Universität Bochum - rsync10.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):198
+msgid "rsync://rsync10.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):201
+msgid "SPLINE, Institut für Informatik, Freie Universität Berlin - rsync11.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):203
+msgid "rsync://rsync11.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):206
+msgid "mirror.amiconsult.de - rsync12.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):207
+msgid "rsync://rsync12.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):210
+msgid "sonic-lux.net - rsync13.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):211
+msgid "rsync://rsync13.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):214
+msgid "Westfaelische Wilhelms-Universitaet - rsync14.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):215
+msgid "rsync://rsync14.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):218
+msgid "RWTH Aachen University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):219
+msgid "rsync://rsync15.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):222
+msgid "University of Applied Sciences Ostwestfalen Lippe - rsync16.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):224
+msgid "rsync://rsync16.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):230
+msgid "Any available mirror - rsync.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):231
+msgid "rsync://rsync.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):234
+msgid "tut.fi - rsync1.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):235
+msgid "rsync://rsync1.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):241
+msgid "Any available mirror - rsync.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):242
+msgid "rsync://rsync.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):245
+msgid "Linuxant.fr - rsync1.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):246
+msgid "rsync://rsync1.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):249
+msgid "Ovh Hosting Provider - rsync2.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):250
+msgid "rsync://rsync2.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):253
+msgid "Ovh Hosting Provider - rsync3.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):254
+msgid "rsync://rsync3.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):257
+msgid "gentoo.modulix.net - rsync4.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):258
+msgid "rsync://rsync4.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):264
+msgid "Any available mirror - rsync.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):265
+msgid "rsync://rsync.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):268
+msgid "gentoo.gr - rsync1.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):269
+msgid "rsync://rsync1.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):275
+msgid "Any available mirror - rsync.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):276
+msgid "rsync://rsync.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):279
+msgid "IND Group - rsync1.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):280
+msgid "rsync://rsync1.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):286
+msgid "Any available mirror - rsync.ie.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):287
+msgid "rsync://rsync.ie.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):290
+msgid "HEAnet - Ireland's National Education and Research Network - rsync1.ie.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):292
+msgid "rsync://rsync1.ie.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):298
+msgid "Any available mirror - rsync.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):299
+msgid "rsync://rsync.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):302
+msgid "KTU ELEN Gentoo Mirror - rsync1.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):303
+msgid "rsync://rsync1.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):309
+msgid "Any available mirror - rsync.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):310
+msgid "rsync://rsync.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):313
+msgid "Tups.lv - rsync1.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):314
+msgid "rsync://rsync1.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):320
+msgid "Any available mirror - rsync.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):321
+msgid "rsync://rsync.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):324
+msgid "Cambrium BV - rsync1.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):325
+msgid "rsync://rsync1.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):328
+msgid "Universiteit Twente - rsync2.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):329
+msgid "rsync://rsync2.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):332
+msgid "Tiscali - rsync3.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):333
+msgid "rsync://rsync3.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):339
+msgid "Any available mirror - rsync.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):340
+msgid "rsync://rsync.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):343
+msgid "Institute of Theoretical Physics University of Wroclaw, Poland - rsync1.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):344
+msgid "rsync://rsync1.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):347
+msgid "Rzeszow University of Technology - rsync3.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):348
+msgid "rsync://rsync3.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):351
+msgid "Technical University of Opole - rsync4.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):352
+msgid "rsync://rsync4.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):355
+msgid "Warsaw University Of Technology - rsync6.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):356
+msgid "rsync://rsync6.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):359
+msgid "Vectranet - rsync7.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):360
+msgid "rsync://rsync7.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):366
+msgid "Any available mirror - rsync.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):367
+msgid "rsync://rsync.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):370
+msgid "Universidade do Minho - rsync1.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):371
+msgid "rsync://rsync1.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):374
+msgid "Rede das Novas Licenciaturas - rsync2.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):375
+msgid "rsync://rsync2.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):381
+msgid "Any available mirror - rsync.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):382
+msgid "rsync://rsync.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):385
+msgid "Ineton - rsync1.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):386
+msgid "rsync://rsync1.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):389
+msgid "Romanian Education Network - rsync3.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):390
+msgid "rsync://rsync3.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):396
+msgid "Any available mirror - rsync.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):397
+msgid "rsync://rsync.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):400
+msgid "parabol.com - rsync2.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):401
+msgid "rsync://rsync2.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):404
+msgid "ING-net Umea University - rsync3.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):405
+msgid "rsync://rsync3.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):408
+msgid "Dataphone - rsync5.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):409
+msgid "rsync://rsync5.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):415
+msgid "Any available mirror - rsync.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):416
+msgid "rsync://rsync.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):419
+msgid "Wheel.sk - rsync1.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):420
+msgid "rsync://rsync1.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):423
+msgid "Ynet.sk - rsync2.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):424
+msgid "rsync://rsync2.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):427
+msgid "Rainside.sk - rsync3.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):428
+msgid "rsync://rsync3.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):431
+msgid "hq.alert.sk - rsync4.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):432
+msgid "rsync://rsync4.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):438
+msgid "Any available mirror - rsync.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):439
+msgid "rsync://rsync.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):442
+msgid "gentoo.kiev.ua - rsync1.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):443
+msgid "rsync://rsync1.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):446
+msgid "ITEAM gentoo mirror - rsync2.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):447
+msgid "rsync://rsync2.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):450
+msgid "Telcom ISP - rsync3.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):451
+msgid "rsync://rsync3.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):454
+msgid "portage.org.ua - rsync4.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):455
+msgid "rsync://rsync4.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):461
+msgid "Any available mirror - rsync.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):462
+msgid "rsync://rsync.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):465
+msgid "Qube Managed Services - rsync1.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):466
+msgid "rsync://rsync1.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):469
+msgid "Bytemark Hosting - rsync2.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):470
+msgid "rsync://rsync2.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):473
+msgid "star.net.uk - rsync3.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):474
+msgid "rsync://rsync3.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):480
+msgid "Any available mirror - rsync.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):481
+msgid "rsync://rsync.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):484
+msgid "Swinburne University of Technology - rsync1.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):485
+msgid "rsync://rsync1.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):491
+msgid "Any available mirror - rsync.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):492
+msgid "rsync://rsync.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):495
+msgid "mirrors.xmu.edu.cn - rsync2.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):496
+msgid "rsync://rsync2.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):502
+msgid "Any available mirror - rsync.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):503
+msgid "rsync://rsync.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):506
+msgid "gg3.net - rsync1.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):507
+msgid "rsync://rsync1.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):510
+msgid "Japan Advanced Institute of Science and Technology - rsync3.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):512
+msgid "rsync://rsync3.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):515
+msgid "wide.ad.jp - rsync5.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):516
+msgid "rsync://rsync5.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):522
+msgid "Any available mirror - rsync.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):523
+msgid "rsync://rsync.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):526
+msgid "KEMS-Zajil - rsync1.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):527
+msgid "rsync://rsync1.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):533
+msgid "Any available mirror - rsync.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):534
+msgid "rsync://rsync.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):537
+msgid "Neo Lab's - rsync1.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):538
+msgid "rsync://rsync1.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):544
+msgid "Any available mirror - rsync.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):545
+msgid "rsync://rsync.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):548
+msgid "bloodhost.ru - rsync1.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):549
+msgid "rsync://rsync1.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):552
+msgid "Yandex.ru - rsync2.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):553
+msgid "rsync://rsync2.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):556
+msgid "xeon.gentoo.ru - rsync4.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):557
+msgid "rsync://rsync4.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):563
+msgid "Any available mirror - rsync.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):564
+msgid "rsync://rsync.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):567
+msgid "mirror.averse.net - rsync1.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):568
+msgid "rsync://rsync1.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):574
+msgid "Any available mirror - rsync.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):575
+msgid "rsync://rsync.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):578
+msgid "isu.edu.tw - rsync3.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):579
+msgid "rsync://rsync3.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):582
+msgid "National Center for High-Performance Computing - rsync6.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):583
+msgid "rsync://rsync6.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):588
+msgid "Argentina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):589
+msgid "Austria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):590
+msgid "Australia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):591
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):592
+msgid "Bulgaria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):593
+msgid "Brazil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):594
+msgid "Bahamas"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):595
+msgid "Canada"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):596
+msgid "Switzerland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):597
+msgid "China"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):598
+msgid "Czech Republic"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):599
+msgid "Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):600
+msgid "Denmark"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):601
+msgid "Estonia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):602
+msgid "Spain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):603
+msgid "Finland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):604
+msgid "France"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):605
+msgid "Greece"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):606
+msgid "Hong Kong"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):607
+msgid "Hungary"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):608
+msgid "Ireland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):609
+msgid "Israel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):610
+msgid "Iceland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):611
+msgid "Italy"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):612
+msgid "Japan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):613
+msgid "South Korea"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):614
+msgid "Kuwait"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):615
+msgid "Kazakhstan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):616
+msgid "Lithuania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):617
+msgid "Latvia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):618
+msgid "Netherlands"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):619
+msgid "Norway"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):620
+msgid "Poland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):621
+msgid "Portugal"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):622
+msgid "Romania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):623
+msgid "Russia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):624
+msgid "Sweden"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):625
+msgid "Singapore"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):626
+msgid "Slovakia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):627
+msgid "Thailand"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):628
+msgid "Turkey"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):629
+msgid "Taiwan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):630
+msgid "Ukraine"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):631
+msgid "UK"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):632
+msgid "USA"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/mirrors-rsync.xml.pot b/main/gettext/mirrors-rsync.xml.pot
new file mode 100644
index 0000000..939adc5
--- /dev/null
+++ b/main/gettext/mirrors-rsync.xml.pot
@@ -0,0 +1,60 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(title):9
+msgid "Gentoo Linux Portage rsync Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(author:title):10 ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(author:title):13
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(mail:link):11
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(mail:link):14
+msgid "darkside"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(abstract):17
+msgid "List of Gentoo Portage rsync Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(version):23
+msgid "1.11"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(date):24
+msgid "2010-01-22"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(title):27
+msgid "Official mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(p):31
+msgid "The Gentoo infrastructure team maintains serveral rsync mirrors. This rotation is called <c>rsync.gentoo.org</c>. The <c>SYNC</c> variable in <path>/etc/make.conf</path> is set to this rotation by default. These mirrors are located globally and may not be the fastest for your location, however, they are very reliable. Please do not use a mirror in this rotation directly, instead only use the rotation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(title):44
+msgid "Community mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(p):48
+msgid "The following is the listing of individual Portage rsync mirrors that are run by the community. Community mirrors come and go, but they are monitored to make sure that they are up to date. It is advised to use a rotation instead of a single mirror directly. This helps spread out the load and provides a failsafe in case a specific mirror is offline."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/mirrors.xml.pot b/main/gettext/mirrors.xml.pot
new file mode 100644
index 0000000..26b9d81
--- /dev/null
+++ b/main/gettext/mirrors.xml.pot
@@ -0,0 +1,64 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(mainpage:redirect):7
+msgid "mirrors2.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(title):8
+msgid "Gentoo Linux Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(author:title):10
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(mail:link):11
+msgid "jforman@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(mail):11
+msgid "Jeffrey Forman"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(version):14
+msgid "0"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(title):17
+msgid "Gentoo Download Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(title):20
+msgid "Other Mirrors:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri:link):23
+msgid "http://distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri):23
+msgid "Gentoo distfiles mirror (Global)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri:link):24
+msgid "Please upgrade to"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri):24
+msgid "app-portage/mirrorselect-2.0.0 or higher"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/mirrors2.xml.pot b/main/gettext/mirrors2.xml.pot
new file mode 100644
index 0000000..514f859
--- /dev/null
+++ b/main/gettext/mirrors2.xml.pot
@@ -0,0 +1,120 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):9
+msgid "Gentoo Linux Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(author:title):11
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail:link):12
+msgid "jforman@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail):12
+msgid "Jeffrey Forman"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(author:title):14 ../../gentoo/xml/htdocs/main/en//mirrors2.xml(author:title):17
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail:link):15
+msgid "fox2mike@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail):15
+msgid "Shyam Mani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail:link):18
+msgid "astinus@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail):18
+msgid "Alex Howells"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(abstract):21
+msgid "List of Gentoo Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(version):27
+msgid "2.1"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(date):28
+msgid "2009-12-03"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):31
+msgid "Gentoo Download Full Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(p):35
+msgid "The following organizations provide a full source mirror of all files related to Gentoo, including installation CDs, LiveCDs and GRP package sets."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(impo):40
+msgid "These mirrors are download mirrors. The rsync-mirrors listed here are <e>not</e> for individual use (i.e. <c>emerge --sync</c>) as that would download the full mirror instead of just the Portage tree."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(note):46
+msgid "* indicates mirrors that support IPv6"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):55
+msgid "Other Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri:link):60
+msgid "http://ibiblio.org/pub/Linux/MIRRORS.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri):60
+msgid "Ibiblio.org(worldwide ibiblio mirrors)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):69
+msgid "Partial Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(p):73
+msgid "These mirrors are not complete mirrors. Some provide only distfiles, while others provide only installation media. Please use one of the full mirrors if you cannot find what you're looking for."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):88
+msgid "Mirroring Resources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri:link):93
+msgid "/doc/en/rsync.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri):93
+msgid "How to set up a Gentoo rsync mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri:link):94
+msgid "/doc/en/source_mirrors.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri):94
+msgid "How to set up a Gentoo source mirror"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/mirrors3.xml.pot b/main/gettext/mirrors3.xml.pot
new file mode 100644
index 0000000..259e7f6
--- /dev/null
+++ b/main/gettext/mirrors3.xml.pot
@@ -0,0 +1,1905 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):13
+msgid "Arctic Network Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):14
+msgid "ftp://gentoo.arcticnetwork.ca/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):15
+msgid "http://gentoo.arcticnetwork.ca/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):18
+msgid "Tera-byte Dot Com Inc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):19
+msgid "ftp://mirrors.tera-byte.com/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):20
+msgid "http://gentoo.mirrors.tera-byte.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):21
+msgid "rsync://mirrors.tera-byte.com/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):24
+msgid "University of Waterloo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):25
+msgid "ftp://mirror.csclub.uwaterloo.ca/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):26
+msgid "http://mirror.csclub.uwaterloo.ca/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):29
+msgid "Gossamer Threads"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):30
+msgid "http://gentoo.gossamerhost.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):31
+msgid "rsync://gentoo.gossamerhost.com/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):34
+msgid "mirror.the-best-hosting.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):35
+msgid "http://mirror.the-best-hosting.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):36
+msgid "rsync://mirror.the-best-hosting.net/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):42
+msgid "OSU Open Source Lab"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):43
+msgid "http://gentoo.osuosl.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):46
+msgid "ibiblio.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):47
+msgid "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):48
+msgid "http://distro.ibiblio.org/pub/linux/distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):49
+msgid "rsync://distro.ibiblio.org/pub/linux/distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):52
+msgid "Georgia Tech"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):53
+msgid "ftp://ftp.gtlib.gatech.edu/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):54
+msgid "http://www.gtlib.gatech.edu/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):55
+msgid "rsync://rsync.gtlib.gatech.edu/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):58
+msgid "Sandia National Labs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):59
+msgid "ftp://mirror.iawnet.sandia.gov/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):62
+msgid "Indiana University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):63
+msgid "ftp://ftp.ussg.iu.edu/pub/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):66
+msgid "University of California, Santa Barbara"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):67
+msgid "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):68
+msgid "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):71
+msgid "TDS Internet Services"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):72
+msgid "http://gentoo.mirrors.tds.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):73
+msgid "ftp://gentoo.mirrors.tds.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):74
+msgid "rsync://gentoo.mirrors.tds.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):77
+msgid "NetNITCO Internet Services"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):78
+msgid "http://gentoo.netnitco.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):79
+msgid "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):82
+msgid "Semaphore Corporation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):83
+msgid "http://gentoo.llarian.net/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):84
+msgid "ftp://gentoo.llarian.net/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):87
+msgid "Datapipe Managed Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):88
+msgid "http://mirror.datapipe.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):89
+msgid "ftp://mirror.datapipe.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):92
+msgid "CS Department at Western Michigan University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):93
+msgid "http://mirrors.cs.wmich.edu/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):96
+msgid "Utah State University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):97
+msgid "http://mirror.usu.edu/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):100
+msgid "Argonne National Laboratory"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):101
+msgid "http://mirror.mcs.anl.gov/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):102
+msgid "ftp://mirror.mcs.anl.gov/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):103
+msgid "rsync://mirror.mcs.anl.gov/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):106
+msgid "Easynews NNTP Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):107
+msgid "http://gentoo.mirrors.easynews.com/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):110
+msgid "University of Illinois-Urbana Champaign"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):111
+msgid "http://gentoo.cites.uiuc.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):112
+msgid "ftp://gentoo.cites.uiuc.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):115
+msgid "Walla Walla University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):116
+msgid "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):119
+msgid "Chemistry Dept, University of Wisconsin at Madison"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):120
+msgid "ftp://gentoo.chem.wisc.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):121
+msgid "http://gentoo.chem.wisc.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):122
+msgid "rsync://gentoo.chem.wisc.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):125
+msgid "Michigan Tech University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):126
+msgid "ftp://lug.mtu.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):127
+msgid "http://lug.mtu.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):130
+msgid "Hoobly Classifieds"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):131
+msgid "http://gentoo.mirrors.hoobly.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):134
+msgid "Fastsoft, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):135
+msgid "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):136
+msgid "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):139
+msgid "University of Idaho"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):140
+msgid "ftp://mirror.its.uidaho.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):141
+msgid "http://mirror.its.uidaho.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):144
+msgid "Cyberuse"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):145
+msgid "http://www.cyberuse.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):148
+msgid "University of Delaware, Delaware Linux Users Group"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):149
+msgid "http://mirror.lug.udel.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):150
+msgid "ftp://ftp.lug.udel.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):153
+msgid "Rochester Institute of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):154
+msgid "http://mirrors.rit.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):155
+msgid "ftp://mirrors.rit.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):156
+msgid "rsync://mirrors.rit.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):159
+msgid "University of Northern Iowa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):160
+msgid "http://gentoo.cs.uni.edu/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):161
+msgid "rsync://gentoo.cs.uni.edu/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):167
+msgid "LocalHost Soluciones Innovadoras"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):168
+msgid "http://gentoo.localhost.net.ar/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):169
+msgid "ftp://mirrors.localhost.net.ar/pub/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):174
+msgid "Laboratory of System Administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):175
+msgid "http://www.las.ic.unicamp.br/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):176
+msgid "ftp://ftp.las.ic.unicamp.br/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):179
+msgid "C3SL, Federal University of Paraná"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):180
+msgid "http://gentoo.c3sl.ufpr.br/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):181
+msgid "ftp://gentoo.c3sl.ufpr.br/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):182
+msgid "rsync://gentoo.c3sl.ufpr.br/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):185
+msgid "Laboratório de Computação Científica - UFMG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):186
+msgid "http://gentoo.lcc.ufmg.br"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):187
+msgid "rsync://gentoo.lcc.ufmg.br/gentoo-sources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):193
+msgid "Inode"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):194
+msgid "http://gentoo.inode.at/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):195
+msgid "ftp://gentoo.inode.at/source/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):198
+msgid "Vienna Univ. of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):199
+msgid "http://gd.tuwien.ac.at/opsys/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):200
+msgid "ftp://gd.tuwien.ac.at/opsys/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):201
+msgid "rsync://gd.tuwien.ac.at/opsys/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):204
+msgid "Lagis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):205
+msgid "http://gentoo.lagis.at/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):206
+msgid "ftp://gentoo.lagis.at/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):207
+msgid "rsync://gentoo.lagis.at/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):210
+msgid "Wetzlmayr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):211
+msgid "http://gentoo.wetzlmayr.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):217
+msgid "BiHnet ISP, BH Telecom"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):218
+msgid "http://mirror.bih.net.ba/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):219
+msgid "ftp://mirror.bih.net.ba/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):225
+msgid "marla.ludost.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):226
+msgid "http://mirrors.ludost.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):227
+msgid "ftp://mirrors.ludost.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):230
+msgid "gentoo.bg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):231
+msgid "http://distfiles.gentoo.bg/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):232
+msgid "http://ftp.gentoo.bg/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):238
+msgid "Masaryk University Brno"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):239
+msgid "http://ftp.fi.muni.cz/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):240
+msgid "ftp://ftp.fi.muni.cz/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):241
+msgid "rsync://ftp.fi.muni.cz/pub/linux/gentoo/"
+msgstr ""
+
+#. The different hostname is not an error
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):243
+msgid "rsync://ftp6.linux.cz/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):246
+msgid "Advokatni Kancelar Kindl &amp; Partneri"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):247
+msgid "http://gentoo.supp.name/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):250
+msgid "Web4U Mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):251
+msgid "http://gentoo.mirror.web4u.cz/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):252
+msgid "ftp://gentoo.mirror.web4u.cz/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):255
+msgid "UPC Česká republika, a.s."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):256
+msgid "http://gentoo.mirror.dkm.cz/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):257
+msgid "ftp://gentoo.mirror.dkm.cz/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):258
+msgid "rsync://gentoo.mirror.dkm.cz/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):264
+msgid "ftp.klid.dk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):265
+msgid "ftp://ftp.klid.dk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):266
+msgid "http://ftp.klid.dk/ftp/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):272
+msgid "tut.fi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):273
+msgid "http://trumpetti.atm.tut.fi/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):274
+msgid "ftp://trumpetti.atm.tut.fi/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):275
+msgid "rsync://trumpetti.atm.tut.fi/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):281
+msgid "Ovh Hosting Provider"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):282
+msgid "http://mirror.ovh.net/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):283
+msgid "ftp://mirror.ovh.net/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):286
+msgid "IMJ.fr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):287
+msgid "ftp://gentoo.imj.fr/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):290
+msgid "Free"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):291
+msgid "ftp://ftp.free.fr/mirrors/ftp.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):294
+msgid "Linuxant.fr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):295
+msgid "http://mirrors.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):296
+msgid "ftp://mirrors.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):297
+msgid "http://mirrors.ipv6.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):298
+msgid "ftp://mirrors.ipv6.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):301
+msgid "modulix.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):302
+msgid "http://gentoo.modulix.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):308
+msgid "tu-clausthal.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):309
+msgid "ftp://ftp.tu-clausthal.de/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):312
+msgid "rwth-aachen.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):313
+msgid "ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):316
+msgid "Ruhr-Universität Bochum"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):317
+msgid "http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):318
+msgid "ftp://linux.rz.ruhr-uni-bochum.de/gentoo-mirror/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):321
+msgid "Uni Erlangen-Nürnberg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):322
+msgid "http://ftp.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):323
+msgid "ftp://ftp.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):324
+msgid "http://ftp6.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):325
+msgid "ftp://ftp6.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):328
+msgid "Uni Muenster/JOIN"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):329 ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):340
+msgid "ftp://ftp.join.uni-muenster.de/pub/linux/distributions/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):330
+msgid "rsync://ftp.join.uni-muenster.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):333
+msgid "Dresden University of Technology/AG DSN"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):334
+msgid "ftp://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):337
+msgid "Westfaelische Wilhelms-Universitaet"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):338
+msgid "ftp://ftp.ipv6.uni-muenster.de/pub/linux/distributions/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):339
+msgid "ftp://ftp6.uni-muenster.de/pub/linux/distributions/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):343
+msgid "University of Applied Sciences, Esslingen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):344
+msgid "http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):345
+msgid "ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):346
+msgid "rsync://ftp-stud.hs-esslingen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):349
+msgid "mneisen.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):350
+msgid "http://gentoo.mneisen.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):353
+msgid "de-mirror.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):354
+msgid "ftp://de-mirror.org/distro/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):355
+msgid "http://de-mirror.org/distro/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):356
+msgid "rsync://de-mirror.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):359
+msgid "SPLINE, Institut für Informatik, Freie Universität Berlin"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):360
+msgid "ftp://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):361
+msgid "http://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):364
+msgid "Netcologne"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):365
+msgid "ftp://mirror.netcologne.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):366
+msgid "http://mirror.netcologne.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):367
+msgid "rsync://mirror.netcologne.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):370
+msgid "Opteamax UG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):371
+msgid "http://mirror.opteamax.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):372
+msgid "ftp://mirror.opteamax.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):373
+msgid "rsync://mirror.opteamax.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):376
+msgid "RWTH Aachen University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):377
+msgid "http://ftp.halifax.rwth-aachen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):378
+msgid "ftp://ftp.halifax.rwth-aachen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):379
+msgid "rsync://ftp.halifax.rwth-aachen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):385
+msgid "files.gentoo.gr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):386
+msgid "ftp://files.gentoo.gr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):387
+msgid "http://files.gentoo.gr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):390
+msgid "National Technical University of Athens"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):391
+msgid "ftp://ftp.ntua.gr/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):392
+msgid "http://ftp.ntua.gr/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):395
+msgid "University of Crete"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):396
+msgid "ftp://ftp.cc.uoc.gr/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):397
+msgid "http://ftp.cc.uoc.gr/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):403
+msgid "Eotvos Lorand University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):404
+msgid "http://gentoo.inf.elte.hu/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):405
+msgid "ftp://gentoo.inf.elte.hu/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):411
+msgid "RHnet"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):412
+msgid "http://ftp.rhnet.is/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):413
+msgid "ftp://ftp.rhnet.is/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):419
+msgid "HEAnet - Ireland's National Education and Research Network"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):420
+msgid "http://ftp.heanet.ie/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):421
+msgid "ftp://ftp.heanet.ie/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):422
+msgid "rsync://ftp.heanet.ie/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):428
+msgid "KTU ELEN Gentoo Mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):429
+msgid "http://mirror.elen.ktu.lt/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):430
+msgid "ftp://mirror.elen.ktu.lt/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):436
+msgid "Tups.lv"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):437
+msgid "http://gentoo.tups.lv/source/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):443
+msgid "Universiteit Twente"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):444
+msgid "http://ftp.snt.utwente.nl/pub/os/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):445
+msgid "ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):446
+msgid "rsync://ftp.snt.utwente.nl/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):447
+msgid "http://ftp.snt.ipv6.utwente.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):448
+msgid "rsync://ftp.snt.ipv6.utwente.nl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):449
+msgid "ftp://ftp.snt.ipv6.utwente.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):452
+msgid "Tiscali"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):453
+msgid "http://gentoo.tiscali.nl/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):454
+msgid "ftp://gentoo.tiscali.nl/pub/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):455
+msgid "rsync://gentoo.tiscali.nl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):458
+msgid "Cambrium BV"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):459
+msgid "http://mirror.cambrium.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):460
+msgid "ftp://mirror.cambrium.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):461
+msgid "rsync://mirror.cambrium.nl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):464
+msgid "LeaseWeb"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):465
+msgid "http://mirror.leaseweb.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):466
+msgid "ftp://mirror.leaseweb.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):467
+msgid "rsync://mirror.leaseweb.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):473
+msgid "Gentoo.no / Gentoo.se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):474
+msgid "http://mirror.gentoo.no/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):480
+msgid "Vectranet"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):481
+msgid "rsync://ftp.vectranet.pl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):482
+msgid "http://ftp.vectranet.pl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):483
+msgid "ftp://ftp.vectranet.pl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):486
+msgid "Rzeszow University of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):487
+msgid "rsync://gentoo.prz.rzeszow.pl/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):488
+msgid "http://gentoo.prz.rzeszow.pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):491
+msgid "Technical University of Opole"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):492
+msgid "http://gentoo.po.opole.pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):493
+msgid "ftp://gentoo.po.opole.pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):496
+msgid "Warsaw University Of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):497
+msgid "http://gentoo.mirror.pw.edu.pl/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):503
+msgid "Instituto Superior Técnico"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):504
+msgid "http://darkstar.ist.utl.pt/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):505
+msgid "ftp://darkstar.ist.utl.pt/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):506
+msgid "http://ftp.rnl.ist.utl.pt/pub/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):507
+msgid "ftp://ftp.rnl.ist.utl.pt/pub/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):508
+msgid "rsync://ftp.rnl.ist.utl.pt/pub/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):511
+msgid "Universidade do Minho"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):512
+msgid "ftp://cesium.di.uminho.pt/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):513
+msgid "http://cesium.di.uminho.pt/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):516
+msgid "University of Coimbra"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):517
+msgid "ftp://ftp.dei.uc.pt/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):518
+msgid "http://ftp.dei.uc.pt/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):524
+msgid "Romanian Education Network"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):525
+msgid "ftp://ftp.romnet.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):526
+msgid "http://ftp.romnet.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):529
+msgid "Evolva Telecom"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):530
+msgid "http://mirrors.evolva.ro/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):531
+msgid "ftp://mirrors.evolva.ro/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):532
+msgid "rsync://mirrors.evolva.ro/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):535
+msgid "xservers.ro Gazduire Web"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):536
+msgid "http://mirrors.xservers.ro/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):542
+msgid "mdfnet.se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):543
+msgid "ftp://mirror.mdfnet.se/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):544
+msgid "http://mirror.mdfnet.se/mirror/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):547
+msgid "ING-net Umea University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):548
+msgid "ftp://ftp.ing.umu.se/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):549
+msgid "http://ftp.ing.umu.se/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):552
+msgid "DatorSektionen, Jönköping University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):553
+msgid "ftp://ftp.ds.karen.hj.se/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):554
+msgid "http://ftp.ds.karen.hj.se/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):557
+msgid "Lund University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):558
+msgid "ftp://ftp.df.lth.se/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):559
+msgid "http://ftp.df.lth.se/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):560
+msgid "rsync://ftp.df.lth.se/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):566
+msgid "Ynet.sk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):567
+msgid "http://mirror.ynet.sk/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):568
+msgid "ftp://mirror.ynet.sk/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):571
+msgid "Wheel.sk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):572
+msgid "http://gentoo.wheel.sk/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):573
+msgid "ftp://gentoo.wheel.sk/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):576
+msgid "Rainside.sk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):577
+msgid "http://tux.rainside.sk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):578
+msgid "ftp://tux.rainside.sk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):584
+msgid "University of A Corunna Free Software Office"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):585
+msgid "http://ftp.udc.es/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):586
+msgid "ftp://ftp.udc.es/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):587
+msgid "rsync://ftp.udc.es/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):590
+msgid "Politechnic University of Catalonia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):591
+msgid "http://gentoo-euetib.upc.es/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):597
+msgid "SWITCHmirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):598
+msgid "http://mirror.switch.ch/ftp/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):599
+msgid "ftp://mirror.switch.ch/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):605
+msgid "Turkish Linux Users Group - Linux Kullanicilari Dernegi(LKD)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):606
+msgid "ftp://ftp.linux.org.tr/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):607
+msgid "http://ftp.linux.org.tr/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):608
+msgid "rsync://ftp.linux.org.tr/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):614
+msgid "gentoo.kiev.ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):615
+msgid "ftp://gentoo.kiev.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):616
+msgid "http://gentoo.kiev.ua/ftp/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):617
+msgid "rsync://gentoo.kiev.ua/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):620
+msgid "ITEAM gentoo mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):621
+msgid "http://gentoo.iteam.net.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):624
+msgid "gentoo.moskalevskyi.name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):625
+msgid "ftp://gentoo.moskalevskyi.name/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):626
+msgid "http://gentoo.moskalevskyi.name/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):627
+msgid "rsync://gentoo.moskalevskyi.name/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):630
+msgid "Telcom ISP"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):631
+msgid "ftp://gentoo.telcom.net.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):632
+msgid "http://gentoo.telcom.net.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):633
+msgid "rsync://gentoo.telcom.net.ua/gentoo-mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):636
+msgid "portage.org.ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):637
+msgid "ftp://portage.org.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):638
+msgid "http://portage.org.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):644
+msgid "Bytemark Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):645
+msgid "ftp://mirror.bytemark.co.uk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):646
+msgid "http://mirror.bytemark.co.uk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):647
+msgid "rsync://mirror.bytemark.co.uk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):650
+msgid "The UK Mirror Service"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):651
+msgid "http://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):652
+msgid "ftp://ftp.mirrorservice.org/sites/www.ibiblio.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):653
+msgid "rsync://rsync.mirrorservice.org/www.ibiblio.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):656
+msgid "Qube Managed Services"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):657
+msgid "http://mirror.qubenet.net/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):658
+msgid "ftp://mirror.qubenet.net/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):661
+msgid "Virgin Media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):662
+msgid "http://gentoo.virginmedia.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):663
+msgid "ftp://gentoo.virginmedia.com/sites/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):676
+msgid "Swinburne University of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):677
+msgid "ftp://ftp.swin.edu.au/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):678
+msgid "http://ftp.swin.edu.au/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):684
+msgid "Xiamen University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):685
+msgid "ftp://mirrors.xmu.edu.cn/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):686
+msgid "http://mirrors.xmu.edu.cn/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):687
+msgid "rsync://mirrors.xmu.edu.cn/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):690
+msgid "Sohu.inc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):691
+msgid "ftp://mirrors.sohu.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):692
+msgid "http://mirrors.sohu.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):695
+msgid "Netease.com, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):696
+msgid "http://mirrors.163.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):702
+msgid "aditsu.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):703
+msgid "http://gentoo.aditsu.net/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):709
+msgid "idREPO, Indonesian FOSS Repository"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):710
+msgid "http://gentoo.idrepo.or.id/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):716
+msgid "gg3.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):717
+msgid "http://gentoo.gg3.net/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):718
+msgid "ftp://gg3.net/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):721
+msgid "ChannelX.biz"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):722
+msgid "http://gentoo.channelx.biz/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):725
+msgid "Japan Advanced Institute of Science and Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):726
+msgid "http://ftp.jaist.ac.jp/pub/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):727
+msgid "rsync://ftp.jaist.ac.jp/pub/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):728
+msgid "ftp://ftp.jaist.ac.jp/pub/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):731
+msgid "Internet Initiative Japan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):732
+msgid "rsync://ftp.iij.ad.jp/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):733
+msgid "http://ftp.iij.ad.jp/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):734
+msgid "ftp://ftp.iij.ad.jp/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):740
+msgid "KAIST"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):741
+msgid "http://ftp.kaist.ac.kr/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):742
+msgid "ftp://ftp.kaist.ac.kr/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):745
+msgid "lecl.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):746
+msgid "http://ftp.lecl.net/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):747
+msgid "ftp://ftp.lecl.net/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):750
+msgid "Daum Communications Corp"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):751
+msgid "http://ftp.daum.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):757
+msgid "Multimedia University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):758
+msgid "http://archive.mmu.edu.my/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):764
+msgid "Yandex.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):765
+msgid "http://mirror.yandex.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):766
+msgid "ftp://mirror.yandex.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):769
+msgid "Bloodhost.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):770
+msgid "http://gentoo.bloodhost.ru/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):771
+msgid "ftp://gentoo.bloodhost.ru/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):772
+msgid "rsync://gentoo.bloodhost.ru/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):775
+msgid "corbina.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):776
+msgid "http://mirror2.corbina.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):777
+msgid "ftp://mirror2.corbina.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):778
+msgid "rsync://mirror2.corbina.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):781
+msgid "xeon.gentoo.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):782
+msgid "ftp://xeon.gentoo.ru/mirrors/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):783
+msgid "rsync://xeon.gentoo.ru/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):789
+msgid "gentoo.in.th"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):790
+msgid "http://gentoo.in.th/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):791
+msgid "ftp://gentoo.in.th/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):797
+msgid "National Center for High-Performance Computing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):798
+msgid "http://ftp.twaren.net/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):799
+msgid "ftp://ftp.twaren.net/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):802
+msgid "National Chi Nan University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):803
+msgid "ftp://ftp.ncnu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):804
+msgid "http://ftp.ncnu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):807
+msgid "Providence University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):808
+msgid "ftp://ftp.cs.pu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):809
+msgid "http://ftp.cs.pu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):812
+msgid "National Chiao Tung University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):813
+msgid "ftp://gentoo.cs.nctu.edu.tw/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):814
+msgid "http://gentoo.cs.nctu.edu.tw/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):820
+msgid "Hamakor FOSS Society"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):821
+msgid "http://mirror.isoc.org.il/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):822
+msgid "ftp://mirror.isoc.org.il/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):828
+msgid "KEMS-Zajil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):829
+msgid "http://gentoo.kems.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):830
+msgid "ftp://gentoo.kems.net/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):836
+msgid "Neo Lab's"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):837
+msgid "http://mirror.neolabs.kz/gentoo/pub"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):838
+msgid "ftp://mirror.neolabs.kz/gentoo/pub"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):839
+msgid "rsync://mirror.neolabs.kz/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):844
+msgid "Argentina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):845
+msgid "Austria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):846
+msgid "Australia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):847
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):848
+msgid "Bulgaria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):849
+msgid "Brazil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):850
+msgid "Bahamas"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):851
+msgid "Canada"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):852
+msgid "Switzerland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):853
+msgid "China"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):854
+msgid "Czech Republic"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):855
+msgid "Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):856
+msgid "Denmark"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):857
+msgid "Estonia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):858
+msgid "Spain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):859
+msgid "Finland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):860
+msgid "France"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):861
+msgid "Greece"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):862
+msgid "Hong Kong"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):863
+msgid "Hungary"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):864
+msgid "Indonesia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):865
+msgid "Ireland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):866
+msgid "Israel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):867
+msgid "Iceland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):868
+msgid "Italy"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):869
+msgid "Japan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):870
+msgid "South Korea"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):871
+msgid "Kuwait"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):872
+msgid "Kazakhstan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):873
+msgid "Lithuania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):874
+msgid "Latvia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):875
+msgid "Malaysia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):876
+msgid "Netherlands"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):877
+msgid "Norway"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):878
+msgid "Poland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):879
+msgid "Portugal"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):880
+msgid "Romania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):881
+msgid "Russia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):882
+msgid "Sweden"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):883
+msgid "Singapore"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):884
+msgid "Slovakia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):885
+msgid "Thailand"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):886
+msgid "Turkey"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):887
+msgid "Taiwan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):888
+msgid "Ukraine"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):889
+msgid "UK"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):890
+msgid "USA"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/name-logo.xml.pot b/main/gettext/name-logo.xml.pot
new file mode 100644
index 0000000..4fcf4c2
--- /dev/null
+++ b/main/gettext/name-logo.xml.pot
@@ -0,0 +1,208 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(guide:link):6
+msgid "/main/en/name-logo.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(guide:lang):6
+msgid "en"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):7
+msgid "Gentoo Name and Logo Usage Guidelines"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(author):9
+msgid "The Gentoo Foundation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(abstract):13
+msgid "This document covers the guidelines on the Gentoo Name and Logo usage."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(version):21
+msgid "1.8"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(date):22
+msgid "2005-12-11"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):25
+msgid "Preliminaries"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):29
+msgid "This document describes proper use of the Gentoo name, the \"g\" logo and any other associated marks for software and computer-related efforts that are not under the direction of the Gentoo Foundation, Inc. If you have any questions about these guidelines, please contact <mail link=\"trustees@gentoo.org\">Gentoo Foundation, Inc.</mail>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):37
+msgid "Gentoo Foundation, Inc. reserve the right to change these terms from time to time at their sole discretion. For that reason, we encourage you to review this statement periodically."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):48
+msgid "Definitions"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):50
+msgid "The Gentoo project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):53
+msgid "The volunteer development efforts currently directed by Gentoo Foundation, Inc., a not-for-profit corporation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):61
+msgid "Content produced by the Gentoo project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):64
+msgid "Any content that is copyright Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):71
+msgid "The \"g\" logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(fig:link):74
+msgid "/images/glogo-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):79
+msgid "Gentoo artwork"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):82
+msgid "All artwork produced by <e>the Gentoo project</e> (see above definition)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):89
+msgid "Gentoo community site"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):92
+msgid "A non-profit website whose primary objective is to provide any Gentoo user with additional information on Gentoo and Gentoo-related topics."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):102
+msgid "Ownership of marks"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):106
+msgid "The name \"Gentoo\" and the \"g\" logo are currently trademarks of Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):116
+msgid "Use of Gentoo name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):120
+msgid "You are permitted to use the Gentoo name in computer-related content, provided that:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):126
+msgid "You acknowledge that the name \"Gentoo\" is a trademark of Gentoo Foundation, Inc., and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):130
+msgid "you do not entitle any software project or computer-related product \"Gentoo\" or have \"Gentoo\" appear within its name, and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):134
+msgid "the fully-qualified domain name for your software project or computer-related products does not contain \"Gentoo\", and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(e):139
+msgid "you clearly state that the content, project, site, product or any other type of item with which the \"Gentoo\" name is associated is not part of the Gentoo project and is not directed or managed by Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):147
+msgid "We do not consider these restrictions to apply to the <uri link=\"http://www.obsession.se/gentoo/\">Gentoo file manager</uri> project, developed by Emil Bink, as it is not an operating system project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):158
+msgid "Use of Gentoo Logo and artwork"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):162
+msgid "You are permitted to use the Gentoo \"g\" logo and artwork copyright Gentoo Foundation, Inc. (hereafter called \"Gentoo artwork\") under the following conditions:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):171
+msgid "Commercial Use"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):174
+msgid "Commercial use of the Gentoo \"g\" logo and Gentoo artwork is allowed for <e>any software or computer hardware product</e> that <e>contains</e> or is <e>based upon</e> content produced by the Gentoo project, or any project or service referencing Gentoo or the Gentoo Project, provided that the following conditions are met:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):183
+msgid "You acknowledge that the \"g\" logo is a trademark of Gentoo Foundation, Inc. and that any Gentoo artwork is copyright Gentoo Foundation, Inc., and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):187
+msgid "the artwork used is <e>not</e> the primary (largest) mark displayed on the product, and is thus intended to convey that the product contains \"content produced by the Gentoo project\", but is <e>not itself a product being sold or supported</e> by Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(e):196
+msgid "Commercial use of the Gentoo \"g\" logo and Gentoo artwork for any other purpose is expressly denied."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):205
+msgid "Non-Commercial Use"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):208
+msgid "Non-commercial use of the \"g\" logo and Gentoo artwork is permitted provided that the following conditions are met:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):214
+msgid "You acknowledge that the \"g\" logo is a trademark of Gentoo Foundation, Inc., and that any Gentoo artwork is copyright Gentoo Foundation, Inc, and,"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):218
+msgid "the \"g\" logo and Gentoo artwork are used in content that pertain to \"the Gentoo project\", as directed by the Gentoo Foundation, Inc., and not any effort outside or beyond the authority of the Gentoo Foundation, Inc., and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(e):224
+msgid "you clearly state that the content, project, site, product or any other type of item with which the \"g\" logo or Gentoo artwork is associated is not part of the Gentoo project and is not directed or managed by Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):238
+msgid "Gentoo Community Projects"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):242
+msgid "Gentoo Foundation, Inc. grant Gentoo community sites, as defined above, the right to use the Gentoo name in their project name and fully qualified domain name provided that:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):249
+msgid "the website clearly states, on each page, that the project is no official Gentoo project by labelling itself as a \"news site\", \"fan site\", \"unofficial site\" or \"community site\", and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):254
+msgid "the website does not closely mimic the name or layout of one of our official websites, and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):258
+msgid "you acknowledge that the name \"Gentoo\" is a trademark of Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):264
+msgid "Any other use of the Gentoo name, logo and artwork remains bound by the beforementioned guidelines."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/philosophy.xml.pot b/main/gettext/philosophy.xml.pot
new file mode 100644
index 0000000..a938ff7
--- /dev/null
+++ b/main/gettext/philosophy.xml.pot
@@ -0,0 +1,72 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(title):6 ../../gentoo/xml/htdocs/main/en//philosophy.xml(title):24
+msgid "The Philosophy of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(author:title):7
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail:link):8
+msgid "drobbins@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail):8
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(author:title):10
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail:link):11
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail):11
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(abstract):14
+msgid "This document explains the philosophy behind Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(version):20
+msgid "1.3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(date):21
+msgid "2006-04-30"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):28
+msgid "Every user has work they need to do. The goal of Gentoo is to design tools and systems that allow a user to do that work as pleasantly and efficiently as possible, as <e>they</e> see fit. Our tools should be a joy to use, and should help the user to appreciate the richness of the Linux and free software community, and the flexibility of free software. This is only possible when the tool is designed to reflect and transmit the will of the user, and leave the possibilities open as to the final form of the raw materials (the source code.) If the tool forces the user to do things a particular way, then the tool is working against, rather than for, the user. We have all experienced situations where tools seem to be imposing their respective wills on us. This is backwards, and contrary to the Gentoo philosophy."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):42
+msgid "Put another way, the Gentoo philosophy is to create better tools. When a tool is doing its job perfectly, you might not even be very aware of its presence, because it does not interfere and make its presence known, nor does it force you to interact with it when you don't want it to. The tool serves the user rather than the user serving the tool."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):50
+msgid "The goal of Gentoo is to strive to create near-ideal tools. Tools that can accommodate the needs of many different users all with divergent goals. Don't you love it when you find a tool that does exactly what you want to do? Doesn't it feel great? Our mission is to give that sensation to as many people as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):58
+msgid "Daniel Robbins<br/> Previous Chief Architect"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/projects.xml.pot b/main/gettext/projects.xml.pot
new file mode 100644
index 0000000..2ad21ca
--- /dev/null
+++ b/main/gettext/projects.xml.pot
@@ -0,0 +1,60 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(title):5 ../../gentoo/xml/htdocs/main/en//projects.xml(title):22
+msgid "Gentoo Linux Projects"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(author:title):7
+msgid "Previous Chief Architect"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(mail:link):8
+msgid "drobbins@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(mail):8
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(abstract):11
+msgid "This page lists development projects that are not specifically Gentoo Linux-related."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(version):18
+msgid "1.5"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(date):19
+msgid "2010-04-26"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):26
+msgid "<b><uri link=\"/proj/en/releng/catalyst/\">Catalyst</uri></b> is the tool used by the Release Engineering team to create all Gentoo releases. Catalyst is capable of creating installation stages, GRP sets, and bootable LiveCDs."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):32
+msgid "<b><uri link=\"/proj/en/infrastructure/tenshi/\">Tenshi</uri></b> is a log monitoring program, designed to watch one or more log files for lines matching user defined regular expression and report on the matches. The regular expressions are assigned to queues which have an alert interval and a list of mail recipients."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):40
+msgid "<b><uri link=\"/proj/en/dynfw.xml\">The dynfw firewall scripts</uri></b> are a collection of netfilter-based (<c>iptables</c>) firewall scripts designed to allow for an immediate, measured response against pending security threats. These <c>bash</c> scripts have been designed to work with nearly any netfilter-based firewall (including both \"allow by default\" and \"deny by default\" configurations)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):49
+msgid "<b><uri link=\"/proj/en/site.xml\">The XML projects page</uri></b> contains the complete <c>guide</c> XSLT engine that is used to create this entire site, including the main pages and online documentation. On this page, you can find a tarball that contains the complete sources that were used to generate the latest version of the <uri>http://www.gentoo.org</uri> Web site -- the one you are viewing now."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/ru/about.xml.po b/main/gettext/ru/about.xml.po
new file mode 100644
index 0000000..97e8d75
--- /dev/null
+++ b/main/gettext/ru/about.xml.po
@@ -0,0 +1,172 @@
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(title):6
+#: ../../gentoo/xml/htdocs/main/en//about.xml(title):36
+msgid "About Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):7
+msgid "Author"
+msgstr "автор"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):8
+msgid "drobbins@gentoo.org"
+msgstr "drobbins@gentoo.org"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):8
+msgid "Daniel Robbins"
+msgstr "Daniel Robbins"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):10
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):13
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):16
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):19
+#: ../../gentoo/xml/htdocs/main/en//about.xml(author:title):22
+msgid "Editor"
+msgstr "редактор"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):11
+msgid "curtis119@gentoo.org"
+msgstr "curtis119@gentoo.org"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):11
+msgid "Curtis Napier"
+msgstr "Curtis Napier"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):14
+msgid "peesh@gentoo.org"
+msgstr "peesh@gentoo.org"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):14
+msgid "Jorge Paulo"
+msgstr "Jorge Paulo"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):17
+msgid "klieber@gentoo.org"
+msgstr "klieber@gentoo.org"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):17
+msgid "Kurt Lieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):20
+msgid "fox2mike@gmail.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):20
+msgid "Shyam Mani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail:link):23
+msgid "swift@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(mail):23
+msgid "Sven Vermeulen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(abstract):26
+msgid "About Gentoo, an overview."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(version):32
+msgid "1.7"
+msgstr "1.7"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(date):33
+msgid "2007-09-17"
+msgstr "2007-09-17"
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(fig:link):40
+msgid "/images/poster.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(title):45
+msgid "What is Gentoo?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):48
+msgid ""
+"Gentoo is a free operating system based on either Linux or FreeBSD that can "
+"be automatically optimized and customized for just about any application or "
+"need. Extreme configurability, performance and a top-notch user and "
+"developer community are all hallmarks of the Gentoo experience."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):55
+msgid ""
+"Thanks to a technology called Portage, Gentoo can become an ideal secure "
+"server, development workstation, professional desktop, gaming system, "
+"embedded solution or something else -- whatever you need it to be. Because "
+"of its near-unlimited adaptability, we call Gentoo a <b>meta</b>distribution."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):62
+msgid ""
+"Of course, Gentoo is more than just the software it provides. It is a "
+"community built around a distribution which is driven by more than 300 "
+"developers and thousands of users. The distribution project provides the "
+"means for the users to enjoy Gentoo: documentation, infrastructure "
+"(mailinglists, site, forums ...), release engineering, software porting, "
+"quality assurance, security followup, hardening and more."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):71
+msgid ""
+"To advise on and help with Gentoo's global development, a <uri link=\"/proj/"
+"en/council/\">7-member council</uri> is elected on a yearly basis which "
+"decides on global issues, policies and advancements in the Gentoo project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(title):81
+msgid "What is Portage?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):84
+msgid ""
+"<b>Portage</b> is the heart of Gentoo, and performs many key functions. For "
+"one, Portage is the <e>software distribution</e> system for Gentoo. To get "
+"the latest software for Gentoo, you type one command: <c>emerge --sync</c>. "
+"This command tells Portage to update your local \"Portage tree\" over the "
+"Internet. Your local Portage tree contains a complete collection of scripts "
+"that can be used by Portage to create and install the latest Gentoo "
+"packages. Currently, we have <uri link=\"http://packages.gentoo.org/"
+"categories\">more than 10000 packages</uri> in our Portage tree, with "
+"updates and new ones being <uri link=\"http://packages.gentoo.org\">added "
+"all the time</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):96
+msgid ""
+"Portage is also a <e>package building and installation</e> system. When you "
+"want to install a package, you type <c>emerge packagename</c>, at which "
+"point Portage automatically builds a custom version of the package to your "
+"exact specifications, optimizing it for your hardware and ensuring that the "
+"optional features in the package that you want are enabled -- and those you "
+"don't want aren't."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//about.xml(p):105
+msgid ""
+"Portage also keeps your system <e>up-to-date</e>. Typing <c>emerge -uD "
+"world</c> -- one command -- will ensure that all the packages that <e>you</"
+"e> want on your system are updated automatically."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//about.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/articles.xml.po b/main/gettext/ru/articles.xml.po
new file mode 100644
index 0000000..15efaa1
--- /dev/null
+++ b/main/gettext/ru/articles.xml.po
@@ -0,0 +1,814 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(guide:link):11
+msgid "/main/en/articles.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):12
+msgid "Linux Articles!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(author:title):13
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail:link):13
+msgid "g2boojum@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail):13
+msgid "Grant Goodyear"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(author:title):14
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail:link):14
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(mail):14
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(abstract):16
+msgid "Linux articles by Gentoo Linux developers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(version):18
+msgid "1.1"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(date):19
+msgid "2006-07-11"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):22
+msgid "Gentoo &amp; Linux related articles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):29
+msgid "http://bugs.gentoo.org/139688"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):29
+msgid "bug #139688"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):33
+msgid ""
+"The <uri link=\"/proj/en/gdp/\">Gentoo Documentation Project</uri> has "
+"converted many articles listed on this page to the GuideXML format and "
+"publishing it on the Gentoo web site."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):39
+msgid ""
+"Please do visit the <uri link=\"/doc/en/articles/\">Gentoo &amp; Linux "
+"Articles</uri> repository."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):49
+msgid "Articles by Gentoo Linux Developers"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):52
+msgid ""
+"A number of our developers have written articles for the Linux community. "
+"Here are the relevant links."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):58
+msgid "Daniel Robbins, Chris Houser, and Aron Griffis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):59
+msgid ""
+"Daniel Robbins (drobbins) was Gentoo's Chief Architect. Chris Houser "
+"(chouser) and Aron Griffis (agriffis) are <uri link=\"http://www.tru64unix."
+"compaq.com/\">Tru64 UNIX</uri> device driver engineers at <uri link=\"http://"
+"www.hp.com/\">HP</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):66
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir21-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):66
+msgid "Part 1: Linux fundamentals"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):69
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir22-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):69
+msgid "Part 2: Basic administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):72
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir23-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):72
+msgid "Part 3: Intermediate administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):75
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir24-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):75
+msgid "Part 4: Advanced administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):64
+msgid "LPI Certification 101 Exam Prep <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):82
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir25-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):82
+msgid "Part 1: Compiling sources and managing packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):85
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir26-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):85
+msgid "Part 2: Configuring and compiling the kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):88
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir27-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):88
+msgid "Part 3: Networking"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):91
+msgid "http://www-106.ibm.com/developerworks/edu/l-dw-linux-lpir28-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):91
+msgid "Part 4: Secure shell and file sharing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):80
+msgid "LPI Certification 102 Exam Prep <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):102
+msgid "Mikael Hallendal"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):103
+msgid ""
+"Mikael Hallendal (Hallski) wrote this article during his tenure as a GNOME "
+"developer and Gentoo Linux Desktop Team Leader."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):105
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-gnome1/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):105
+msgid "GNOMEnclature: Getting ready for GNOME 2 (Part 1)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):113
+msgid "Chris Houser"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):114
+msgid ""
+"Chris Houser (chouser) is a <uri link=\"http://www.tru64unix.compaq.com/"
+"\">Tru64 UNIX</uri> device driver engineer at <uri link=\"http://www.hp.com/"
+"\">HP</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):118
+msgid "http://www-106.ibm.com/developerworks/edu/os-dw-linuxxwin-i.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):118
+msgid "Introduction to XFree86 4.x"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(title):126
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(p):127
+msgid "Daniel Robbins (drobbins) was Gentoo's Chief Architect."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):132
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):132
+msgid "Part 1, Journalling and ReiserFS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):135
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):135
+msgid "Part 2, Using ReiserFS and Linux 2.4"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):138
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):138
+msgid "Part 3, Using the virtual memory (VM) filesystem and bind mounts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):141
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs4.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):141
+msgid "Part 4, Introduction to devfs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):144
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs5.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):144
+msgid "Part 5, Setting up devfs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):147
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs6/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):147
+msgid "Part 6, Implementing devfs (using the init wrapper)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):150
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs7.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):150
+msgid "Part 7, Introducing ext3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):153
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs8.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):153
+msgid "Part 8, Surprises in ext3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):156
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs9.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):156
+msgid "Part 9, Introducing XFS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):159
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs10.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):159
+msgid "Part 10, Deploying XFS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):162
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs11.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):162
+msgid "Part 11, Filesystem update"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):165
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs12/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):165
+msgid "Part 12, Introduction to EVMS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):168
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-fs13/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):168
+msgid "Part 13, More about EVMS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):129
+msgid "Advanced filesystem implementer's guide <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):175
+msgid "http://www-106.ibm.com/developerworks/linux/library/us-gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):175
+msgid "Part 1, XML, XSLT, and Python breathe new life into an old site"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):178
+msgid "http://www-106.ibm.com/developerworks/web/library/us-gent"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):178
+msgid "Part 2, The doc system"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):181
+msgid "http://www-106.ibm.com/developerworks/web/library/us-gentoo3/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):181
+msgid "Part 3, The new main pages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):184
+msgid "http://www-106.ibm.com/developerworks/web/library/us-gentoo4/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):184
+msgid "Part 4, The final touch"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):172
+msgid "The gentoo.org redesign: A site reborn <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):191
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-posix1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):191
+msgid "Part 1, A simple and nimble tool for memory sharing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):194
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-posix2/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):194
+msgid "Part 2, The little things called mutexes"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):197
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-posix3/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):197
+msgid "Part 3, Improve efficiency with condition variables"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):188
+msgid "POSIX threads explained <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):204
+msgid "http://www-106.ibm.com/developerworks/library/l-bash.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):204
+msgid "Part 1, Fundamental programming in the Bourne again shell (bash)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):207
+msgid "http://www-106.ibm.com/developerworks/library/l-bash2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):207
+msgid "Part 2, More bash programming fundamentals"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):210
+msgid "http://www-106.ibm.com/developerworks/library/l-bash3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):210
+msgid "Part 3, Exploring the ebuild system"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):201
+msgid "Bash by example <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):217
+msgid "http://www-106.ibm.com/developerworks/library/l-awk1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):217
+msgid "Part 1, An intro to the great language with the strange name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):220
+msgid "http://www-106.ibm.com/developerworks/library/l-awk2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):220
+msgid "Part 2, Records, loops, and arrays"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):223
+msgid "http://www-106.ibm.com/developerworks/library/l-awk3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):223
+msgid "Part 3, String functions and ... checkbooks?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):214
+msgid "Awk by example <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):230
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-sed1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):230
+msgid "Part 1, Get to know the powerful UNIX editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):233
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-sed2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):233
+msgid "Part 2, How to further take advantage of the UNIX text editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):236
+msgid "http://www-106.ibm.com/developerworks/library/l-sed3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):236
+msgid "Part 3, Taking it to the next level: Data crunching, sed style"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):227
+msgid "Sed by example <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):243
+msgid "http://www-106.ibm.com/developerworks/library/l-hw1/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):243
+msgid "Part 1, CPU and memory troubleshooting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):246
+msgid "http://www-106.ibm.com/developerworks/library/l-hw2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):246
+msgid "Part 2, Drivers, IRQs, and PCI latency"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):240
+msgid "Linux hardware stability guide <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):253
+msgid "http://www-106.ibm.com/developerworks/library/l-dist1.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):253
+msgid "Part 1, Birth of the Gentoo Linux distribution"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):256
+msgid "http://www-106.ibm.com/developerworks/library/l-dist2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):256
+msgid "Part 2, From Enoch to Gentoo, via minor setbacks and corporate run-ins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):259
+msgid "http://www-106.ibm.com/developerworks/library/l-dist3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):259
+msgid "Part 3, The author strays from Linux and then returns"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):250
+msgid "Making the distribution <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):266
+msgid "http://www-106.ibm.com/developerworks/library/l-keyc.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):266
+msgid "Part 1, Understanding RSA/DSA authentication"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):269
+msgid "http://www-106.ibm.com/developerworks/library/l-keyc2/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):269
+msgid "Part 2, Introducing ssh-agent and keychain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):272
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-keyc3/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):272
+msgid "Part 3, Agent forwarding and keychain improvements"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):263
+msgid "OpenSSH key management <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):279
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-lvm/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):279
+msgid "Part 1, Storage management magic with Logical Volume Management"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):282
+msgid "http://www-106.ibm.com/developerworks/library/l-lvm2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):282
+msgid "Part 2, The cvs.gentoo.org upgrade"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):276
+msgid "Learning Linux LVM <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):289
+msgid "http://www-106.ibm.com/developerworks/library/l-sambaint/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):289
+msgid "Part 1, Key concepts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):292
+msgid "http://www-106.ibm.com/developerworks/library/l-samba2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):292
+msgid ""
+"Part 2, Compiling, installing, and configuring Samba for your environment"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):295
+msgid "http://www-106.ibm.com/developerworks/library/l-samba3.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):295
+msgid "Part 3, Getting Samba to samba: The configuration stage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):286
+msgid "Introduction to Samba <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):302
+msgid "http://www-106.ibm.com/developerworks/library/l-partplan.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):302
+msgid "Moving /home: A step-by-step partition moving how-to"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):305
+msgid "http://www-106.ibm.com/developerworks/library/l-partplan4.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):305
+msgid "Consolidating data: Moving /tmp and /var to their own shared partition"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):299
+msgid "Partitioning in action <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):312
+msgid "http://www-106.ibm.com/developerworks/linux/library/l-raid1/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):312
+msgid "Part 1, Installation and a general introduction"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):315
+msgid "http://www-106.ibm.com/developerworks/library/l-raid2/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):315
+msgid "Part 2, Setting up RAID-1 in a production environment"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(li):309
+msgid "Linux 2.4 Software RAID <placeholder-1/>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):320
+msgid "http://www-106.ibm.com/developerworks/library/l-swaptip2.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):320
+msgid "Maximum swappage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):323
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/A7F41AE725B03E1D86256A46005DB972?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):323
+msgid "Linux 2.4 stateful firewall design (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):326
+msgid "http://www-106.ibm.com/developerworks/library/l-fw/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):326
+msgid "Dynamic iptables firewalls"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):329
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/7E96EDC7EA87208B8625694400584F81?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):329
+msgid "Compiling the Linux kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):332
+msgid "http://www-106.ibm.com/developerworks/library/l-samba-tng.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):332
+msgid ""
+"Samba domain controller support: Integrating Samba into an NT environment"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):335
+msgid "http://www-106.ibm.com/developerworks/library/l-tip-prompt/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):335
+msgid "Prompt magic: Enhancing the system prompt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):338
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/A5C4A0AF4296C66886256A0E005DE112?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):338
+msgid "CVS for the developer or amateur (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):341
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/8B6EDC18E0EC5FE4862569B5006E5AE1?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):341
+msgid "vi intro -- the cheat sheet method (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):344
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/10E39489AAEB0CB78625698B00705F79?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):344
+msgid "Rebol scripting basics (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):347
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/BA954CF013E79EA886256A70005C5914?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):347
+msgid "Fast Web browsing with a caching proxy (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):350
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/0F1731DC664023B7862569D0005C44AF?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):350
+msgid "Getting to know GRUB (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):353
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/73CADD8F9875EAD0862569C8005B6783?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):353
+msgid "JFS fundamentals (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):356
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/0FB4D16BD2C3E83E86256AA2005244D1?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):356
+msgid "Backing up your Linux machines (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):359
+msgid "http://www-106.ibm.com/developerworks/library/l-partitiontip.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):359
+msgid "Partition planning tips: How to keep things organized on disk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):362
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/E956E8D1D0C44A108625693700785C0E?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):362
+msgid "Compiling and installing software from sources (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):365
+msgid "http://www-106.ibm.com/developerworks/library/l-tip-updating.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):365
+msgid "Upgrading applications from sources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):368
+msgid ""
+"http://www-105.ibm.com/developerworks/education.nsf/linux-onlinecourse-"
+"bytitle/F86D74C7B3B4E65486256B2900073A2E?OpenDocument"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):368
+msgid "Linux clustering with MOSIX (tutorial)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri:link):371
+msgid "http://www-106.ibm.com/developerworks/library/l-samba/index.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(uri):371
+msgid "Inside Samba 2.2: New, improved, and enterprise-ready"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//articles.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/contact.xml.po b/main/gettext/ru/contact.xml.po
new file mode 100644
index 0000000..5eb9326
--- /dev/null
+++ b/main/gettext/ru/contact.xml.po
@@ -0,0 +1,191 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):6
+msgid "Gentoo Linux Contacts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(author:title):8
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(mail:link):9
+msgid "wolf31o2@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(mail):9
+msgid "Chris Gianelloni"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(abstract):12
+msgid "How to contact Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(version):20
+msgid "3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(date):21
+msgid "2010-09-10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):24
+msgid "Who do I contact?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):26
+msgid "Contents"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):30
+msgid "#intro"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):30
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):41
+msgid "Introduction"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):31
+msgid "#pr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):31
+msgid "Public Relations/Events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):32
+msgid "#trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):32
+msgid "The Gentoo Foundation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri:link):33
+msgid "#www"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(uri):33
+msgid "Webmaster"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):44
+msgid ""
+"\"Gentoo\" is many things. It is a community-based distribution of Linux. It "
+"is a package management philosophy. It is also a non-profit organization. "
+"This document is designed to get you in touch with the right group within "
+"Gentoo, so your correspondence can be handled as quickly as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):51
+msgid ""
+"For information regarding upcoming events, interviews, general questions, or "
+"simply just to find out more about Gentoo and Gentoo's products, you will "
+"likely want to speak with someone from Gentoo's <uri link=\"#pr\">Public "
+"Relations</uri> project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(impo):58
+msgid ""
+"The Public Relations team does not provide user support or troubleshooting. "
+"If you need help with your Gentoo system, please visit our <uri link="
+"\"http://forums.gentoo.org\">forums</uri>, <uri link=\"/main/en/irc.xml"
+"\">IRC channels</uri> or other <uri link=\"/main/en/support.xml\">support "
+"venues</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):65
+msgid ""
+"For information about donations, The Gentoo Foundation, or anything else "
+"related to Gentoo intellectual property, trademarks, and copyrights, you "
+"will likely want to speak to the Gentoo Foundation's <uri link=\"#trustees"
+"\">Board of Trustees</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):72
+msgid ""
+"For information regarding this website, or any other Gentoo website hosted "
+"on a <c>gentoo.org</c> domain, you will likely want to speak with Gentoo's "
+"<uri link=\"#www\">Webmasters</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):78
+msgid ""
+"If you are looking for support on Gentoo Linux or any other Gentoo product "
+"or project, then you should head over to our <uri link=\"/main/en/support.xml"
+"\">support</uri> page for further information."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):88
+msgid "Public Relations"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):91
+msgid ""
+"The Gentoo <uri link=\"/proj/en/pr/\">Public Relations</uri> project, and "
+"its <uri link=\"/proj/en/pr/events/\">Events</uri> subproject are "
+"responsible for putting the word out about Gentoo, as well as coordinating "
+"the Gentoo presence within the community at at trade shows and exhibitions."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):98
+msgid ""
+"If you are looking for materials for an article, someone to interview, or "
+"simply want to know more about Gentoo and what it has to offer, send a "
+"message to the PR team. To contact the PR team, simply send an email to "
+"<mail>pr@gentoo.org</mail> and someone from the team will contact you as "
+"soon as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(impo):106
+msgid ""
+"The Public Relations team does not provide user support or troubleshooting. "
+"If you need help with your Gentoo system, please visit our <uri link="
+"\"http://forums.gentoo.org\">forums</uri> or <uri link=\"/main/en/irc.xml"
+"\">IRC channels</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):117
+msgid "The Gentoo Foundation Board of Trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):120
+msgid ""
+"<uri link=\"/foundation/en/\">The Gentoo Foundation</uri> is a non-profit "
+"organization that was formed to be the protector of Gentoo's intellectual "
+"property. The Board of Trustees are the elected keepers of the legal entity "
+"that is Gentoo within the United States. If your question is financial or "
+"legal in nature, then you will want to send an email to "
+"<mail>trustees@gentoo.org</mail> and a member of the board will get back to "
+"you as soon as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(title):133
+msgid "Webmasters"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(p):136
+msgid ""
+"Maintaining Gentoo's presence on the web is a daunting task. Gentoo has a "
+"dedicated team of webmasters who keep our site looking sharp and up-to-date. "
+"If you have a question or comment about any Gentoo web site, then this team "
+"is what you are looking for. They can be contacted by sending an email to "
+"<mail>www@gentoo.org</mail>."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//contact.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/contract.xml.po b/main/gettext/ru/contract.xml.po
new file mode 100644
index 0000000..34c4996
--- /dev/null
+++ b/main/gettext/ru/contract.xml.po
@@ -0,0 +1,162 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):5
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):26
+msgid "Gentoo Social Contract"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(author:title):7
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(author):7
+msgid "The Gentoo Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(author:title):10
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(mail:link):11
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(mail):11
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(abstract):14
+msgid ""
+"This document contains a pledge to the Gentoo community about the freedom of "
+"Gentoo's software, the openness of Gentoo's development process and the "
+"feedback we give back to the free software community."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(version):22
+msgid "1.10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(date):23
+msgid "2006-04-30"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):30
+msgid ""
+"This social contract is intended to clearly describe the overall development "
+"policies and standards of the Gentoo project development team. Parts of this "
+"document have been derived from the <uri link=\"http://www.debian.org/"
+"social_contract\">Debian Social Contract</uri>. It is generally very similar "
+"to it except that certain parts have been clarified and augmented while "
+"other parts deemed redundant have been removed. Comments are welcome. Please "
+"send them to our <mail link=\"gentoo-dev@gentoo.org\">gentoo-dev@gentoo.org</"
+"mail> mailing list."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):44
+msgid "What is Gentoo?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):47
+msgid ""
+"Gentoo in itself is a collection of free knowledge. Knowledge in this "
+"context can be defined as documentation and metadata concerned with concepts "
+"or domains relevant to operating systems and their components, as well as "
+"<uri link=\"http://www.fsf.org/philosophy/free-sw.html\">free software</uri> "
+"contributed by various developers to the Gentoo Project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):55
+msgid ""
+"Gentoo, the operating system, is derived from the base concept of knowledge "
+"described above. A Gentoo operating system should satisfy the self-hosting "
+"requirement. In other words, the operating system should be able to build "
+"itself from scratch using the aforementioned tools and metadata. If a "
+"product associated with an official Gentoo project does not satisfy these "
+"requirements, the product does not qualify as a Gentoo operating system."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):65
+msgid ""
+"An official list of Gentoo projects is listed under the <uri link=\"http://"
+"www.gentoo.org/proj/en/metastructure/projects.xml\">Gentoo Metastructure</"
+"uri>. A Gentoo project does not need to produce a Gentoo operating system in "
+"order to be officially recognized."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):75
+msgid "Gentoo is and will remain Free Software"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):78
+msgid ""
+"We will release our contributions to Gentoo as free software, metadata or "
+"documentation, under the GNU General Public License version 2 (or later, at "
+"our discretion) or the Creative Commons - Attribution / Share Alike version "
+"2 (or later, at our discretion). Any external contributions to Gentoo (in "
+"the form of freely-distributable sources, binaries, metadata or "
+"documentation) may be incorporated into Gentoo provided that we are legally "
+"entitled to do so. However, Gentoo will never <e>depend</e> upon a piece of "
+"software or metadata unless it conforms to the GNU General Public License, "
+"the GNU Lesser General Public License, the Creative Commons - Attribution/"
+"Share Alike or some other license approved by the Open Source Initiative "
+"(<uri link=\"http://www.opensource.org/licenses/index.html\">OSI</uri>)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(note):92
+msgid ""
+"We are considering extending the above clause to require that all core "
+"Gentoo components must conform to a license approved by the OSI <e>and</e> "
+"Free Software Foundation (<uri link=\"http://www.gnu.org/\">FSF</uri>)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):102
+msgid "We will give back to the Free Software Community"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):105
+msgid ""
+"We will establish relationships with Free Software authors and collaborate "
+"with them when possible. We will submit bug-fixes, improvements, user "
+"requests, etc. to the \"upstream\" authors of software included in our "
+"system. We will also clearly document <e>our</e> contributions to Gentoo as "
+"well as any improvements or changes we make to external sources used by "
+"Gentoo (whether in the form of patches, \"sed tweaks\" or some other form). "
+"We acknowledge that our improvements and changes are much more meaningful to "
+"the larger Free Software community if they are clearly documented and "
+"explained, since not everyone has the time or ability to understand the "
+"literal changes contained in the patches or tweaks themselves."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(title):121
+msgid "We will not hide problems"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):124
+msgid ""
+"We will keep our <uri link=\"http://bugs.gentoo.org/\">bug report database</"
+"uri> open for public view at all times; reports that users file online will "
+"immediately become visible to others."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(p):130
+msgid ""
+"Exceptions are made when we receive security-related or developer relations "
+"information with the request not to publicize before a certain deadline."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//contract.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/graphics.xml.po b/main/gettext/ru/graphics.xml.po
new file mode 100644
index 0000000..90e8d9d
--- /dev/null
+++ b/main/gettext/ru/graphics.xml.po
@@ -0,0 +1,487 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):6
+msgid "Gentoo Linux Graphics"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(author:title):8
+msgid "Previous Chief Architect"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail:link):9
+msgid "drobbins@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail):9
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(author:title):11
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail:link):12
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(mail):12
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(abstract):15
+msgid ""
+"Listing of various graphical resources available for use under the terms of "
+"the Gentoo Name and Logo Usage Guidelines"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(version):22
+msgid "2.13"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(date):23
+msgid "2008-07-04"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):26
+msgid "Gentoo Branded Artwork"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):28
+msgid "Terms of Use"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):31
+msgid ""
+"The graphics on this page are written by various authors who grant you "
+"permission to use and modify them as you see fit. The use of the Gentoo name "
+"and logo are governed by the <uri link=\"/main/en/name-logo.xml\">Gentoo "
+"Name and Logo Usage Guidelines</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):41
+msgid "Contribute"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):44
+msgid ""
+"If you want to contribute a graphic to Gentoo, please use the <uri link="
+"\"http://forums.gentoo.org\">Gentoo Forums</uri> first so others can comment "
+"and help you improve the quality of the graphic. Then contact <mail link="
+"\"www@gentoo.org\">the Gentoo WWW team</mail> and ask for your graphic to be "
+"included."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):52
+msgid ""
+"The team may decide not to include your artwork if it is too close to "
+"existing graphics, is not available in sufficient resolutions, does not fit "
+"the Gentoo spirit (for instance because it is offensive) or any other reason."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):58
+msgid "Including a graphic on the page can take some time, please be patient."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):65
+msgid "Gentoo Misc Graphics"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri:link):69
+msgid "/images/gentoo-logo.svg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri):69
+msgid "G logo in svg format provided by Lennart Andre Rolland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri:link):74
+msgid "/images/gentoo-openbsd.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(uri):74
+msgid ""
+"Gentoo/OpenBSD logo in png format provided by the Gentoo Artwork Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):81
+msgid "Gentoo Linux Badges"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):88
+msgid ""
+"Put a <e>Powered by Gentoo</e> image on your Gentoo powered web sites or use "
+"a <e>Gentoo Badge</e> on your web page, blog, forum signature or elsewhere "
+"and link back to <uri link=\"http://www.gentoo.org\">http://www.gentoo.org</"
+"uri> - help us spread the word! Tell others how happy you are with Gentoo "
+"Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):98
+msgid "/images/powered-show.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):101
+msgid "/images/powered-by-gentoo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):102
+msgid "/images/powered-by-gentoo2.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):103
+msgid "/images/powered-by-gentoo3.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):104
+msgid "/images/powered-by-gentoo4.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):107
+msgid "/images/ralph_gentoo_badge.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):110
+msgid "/images/gentoo-badge.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):114
+msgid ""
+"<uri link=\"/images/powered-small.png\">Small</uri> - <uri link=\"/images/"
+"powered.png\">Medium</uri> - <uri link=\"/images/powered-big.png\">Large</"
+"uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):119
+msgid "by Sascha Schwabbauer"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):122
+msgid "by Ralph Jacobs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):125
+msgid "by Ryan Viljoen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):131
+msgid "/images/gentoo-badge2.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):134
+msgid "/images/gentoo-badge3.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):137
+msgid "/images/szbence-badge1.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):138
+msgid "/images/szbence-badge2.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):139
+msgid "/images/szbence-badge3.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):140
+msgid "/images/szbence-badge4.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):141
+msgid "/images/szbence-badge5.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):142
+msgid "/images/szbence-badge6.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):145
+msgid "/images/hardened-badge.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):149
+msgid ""
+"by <uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;"
+"u=36364\">m@o</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):152
+msgid ""
+"by <uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;"
+"u=26433\">wolven</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):155
+msgid ""
+"by <uri link=\"http://forums.gentoo.org/viewtopic-t-7763-start-50.html"
+"\">Szabó Bence</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):158
+msgid "by <uri link=\"http://www.liquidustech.com/\">Matthew Summers</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(title):167
+msgid "Gentoo Linux Wallpapers"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(p):175
+msgid ""
+"Use one of these <e>Gentoo Wallpapers</e> to beautify your desktop. Show "
+"every one that you run Gentoo Linux and run it with pride."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):187
+msgid "/images/backgrounds/gentoo120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):190
+msgid "/images/backgrounds/gentoo-cycle-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):194
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo640x480.jpg\">640x680</uri> - <uri "
+"link=\"/images/backgrounds/gentoo1024x768.jpg\">1024x768</uri> - <uri link="
+"\"/images/backgrounds/gentoo1152x864.jpg\">1152x864</uri> - <uri link=\"/"
+"images/backgrounds/gentoo1280x1024.jpg\">1280x1024</uri> - <uri link=\"/"
+"images/backgrounds/gentoo1600x1200.jpg\">1600x1200</uri><br/> by <uri link="
+"\"http://forums.gentoo.org/viewtopic.php?t=6745\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):202
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-cycle-640x480.jpg\">640x480</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-cycle-1024x768.jpg\">1024x768</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-cycle-1152x864.jpg\">1152x864</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-cycle-1280x1024.jpg\">1280x1024</uri> "
+"- <uri link=\"/images/backgrounds/gentoo-cycle-1600x1200.jpg\">1600x1200</"
+"uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic.php?"
+"t=6868\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):214
+msgid "/images/backgrounds/gentoo-ice-light2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):217
+msgid "/images/backgrounds/gentoo-ice-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):221
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-ice-light2-640x480.jpg\">640x480</"
+"uri> - <uri link=\"/images/backgrounds/gentoo-ice-light2-1024x768.jpg"
+"\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-ice-"
+"light2-1152x864.jpg\">1152x864</uri> - <uri link=\"/images/backgrounds/"
+"gentoo-ice-light2-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/"
+"backgrounds/gentoo-ice-light2-1600x1200.jpg\">1600x1200</uri><br/> by <uri "
+"link=\"http://forums.gentoo.org/viewtopic.php?t=7993\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):230
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-ice-640x480.jpg\">640x480</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-ice-1024x768.jpg\">1024x768</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-ice-1152x864.jpg\">1152x864</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-ice-1280x1024.jpg\">1280x1024</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-ice-1600x1200.jpg\">1600x1200</"
+"uri><br/> by <uri link=\"http://forums.gentoo.org/viewtopic.php?"
+"t=7672\">mksoft</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):242
+msgid "/images/backgrounds/gentoo-box-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):245
+msgid "/images/backgrounds/gentoo-minimal-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):249
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-box-640x480.jpg\">640x480</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-box-1024x768.png\">1024x768</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-box-1152x864.png\">1152x864</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-box-1280x1024.png\">1280x1024</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-box-1600x1200.png\">1600x1200</"
+"uri><br/> by Luca Martinetti"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):258
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-minimal-800x600.jpg\">800x600</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-minimal-1024x768.jpg\">1024x768</uri> "
+"- <uri link=\"/images/backgrounds/gentoo-minimal-1152x864.jpg\">1152x864</"
+"uri> - <uri link=\"/images/backgrounds/gentoo-minimal-1280x1024.jpg"
+"\">1280x1024</uri> - <uri link=\"/images/backgrounds/gentoo-"
+"minimal-1600x1200.jpg\">1600x1200</uri><br/> by <uri link=\"http://forums."
+"gentoo.org/viewtopic-t-365758.html\">Brian Wigginton</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):271
+msgid "/images/backgrounds/gentoo-amd64_1-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):274
+msgid "/images/backgrounds/gentoo-amd64_2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):278
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-amd64_1-800x600.jpg\">800x600</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-amd64_1-1024x768.jpg\">1024x768</uri> "
+"- <uri link=\"/images/backgrounds/gentoo-amd64_1-1280x1024.jpg\">1280x1024</"
+"uri><br/> by Tedder Wayne"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):285
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-amd64_2-800x600.jpg\">800x600</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-amd64_2-1024x768.jpg\">1024x768</uri> "
+"- <uri link=\"/images/backgrounds/gentoo-amd64_2-1280x1024.jpg\">1280x1024</"
+"uri><br/> by Tedder Wayne"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):295
+msgid "/images/backgrounds/gentoo-glass-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):298
+msgid "/images/backgrounds/gentoo-causticswp-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):302
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-glass-800x600.jpg\">800x600</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-glass-1024x768.jpg\">1024x768</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-glass-1280x1024.jpg\">1280x1024</uri> "
+"- <uri link=\"/images/backgrounds/gentoo-glass-1600x1200.jpg\">1600x1200</"
+"uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):310
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-causticswp-800x600.jpg\">800x600</"
+"uri> - <uri link=\"/images/backgrounds/gentoo-causticswp-1024x768.jpg"
+"\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-"
+"causticswp-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/backgrounds/"
+"gentoo-causticswp-1600x1200.jpg\">1600x1200</uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):325
+msgid "/images/backgrounds/gentoo-water-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):328
+msgid "/images/backgrounds/gentoo-chojindsl_1-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):332
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-water-800x600.jpg\">800x600</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-water-1024x768.jpg\">1024x768</uri> - "
+"<uri link=\"/images/backgrounds/gentoo-water-1280x1024.jpg\">1280x1024</uri> "
+"- <uri link=\"/images/backgrounds/gentoo-water-1600x1200.jpg\">1600x1200</"
+"uri><br/> by Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):340
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-chojindsl_1-800x600.jpg\">800x600</"
+"uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_1-1024x768.jpg"
+"\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-"
+"chojindsl_1-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/"
+"backgrounds/gentoo-chojindsl_1-1600x1200.jpg\">1600x1200</uri><br/> by "
+"Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):355
+msgid "/images/backgrounds/gentoo-chojindsl_2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):358
+msgid "/images/backgrounds/cow-push-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):362
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-chojindsl_2-800x600.jpg\">800x600</"
+"uri> - <uri link=\"/images/backgrounds/gentoo-chojindsl_2-1024x768.jpg"
+"\">1024x768</uri> - <uri link=\"/images/backgrounds/gentoo-"
+"chojindsl_2-1280x1024.jpg\">1280x1024</uri> - <uri link=\"/images/"
+"backgrounds/gentoo-chojindsl_2-1600x1200.jpg\">1600x1200</uri><br/> by "
+"Robert Krig"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):374
+msgid ""
+"<uri link=\"/images/backgrounds/cow-push-800x600.jpg\">800x600</uri> - <uri "
+"link=\"/images/backgrounds/cow-push-1024x768.jpg\">1024x768</uri> - <uri "
+"link=\"/images/backgrounds/cow-push-1152x864.jpg\">1152x864</uri> - <uri "
+"link=\"/images/backgrounds/cow-push-1280x1024.jpg\">1280x1024</uri> - <uri "
+"link=\"/images/backgrounds/cow-push-1600x1200.jpg\">1600x1200</uri><br/> by "
+"<uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;"
+"u=100549\">Tero Konttila</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):387
+msgid "/images/backgrounds/cow-push2-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):390
+msgid "/images/backgrounds/macosx-gentoo-120x90.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):394
+msgid ""
+"<uri link=\"/images/backgrounds/cow-push2-800x600.jpg\">800x600</uri> - <uri "
+"link=\"/images/backgrounds/cow-push2-1024x768.jpg\">1024x768</uri> - <uri "
+"link=\"/images/backgrounds/cow-push2-1152x864.jpg\">1152x864</uri> - <uri "
+"link=\"/images/backgrounds/cow-push2-1280x1024.jpg\">1280x1024</uri> - <uri "
+"link=\"/images/backgrounds/cow-push2-1600x1200.jpg\">1600x1200</uri><br/> by "
+"<uri link=\"http://forums.gentoo.org/profile.php?mode=viewprofile&amp;"
+"u=100549\">Tero Konttila</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):404
+msgid ""
+"<uri link=\"/images/backgrounds/macosx-gentoo-800x600.jpg\">800x600</uri> - "
+"<uri link=\"/images/backgrounds/macosx-gentoo-1024x768.jpg\">1024x768</uri> "
+"- <uri link=\"/images/backgrounds/macosx-gentoo-1152x864.jpg\">1152x864</"
+"uri> - <uri link=\"/images/backgrounds/macosx-gentoo-1280x1024.jpg"
+"\">1280x1024</uri> - <uri link=\"/images/backgrounds/macosx-gentoo-1600x1200."
+"jpg\">1600x1200</uri><br/> by Przemysław Pazik"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(fig:link):416
+msgid "/images/backgrounds/gentoo-abducted-120x90.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(ti):421
+msgid ""
+"<uri link=\"/images/backgrounds/gentoo-abducted-800x600.png\">800x600</uri> "
+"- <uri link=\"/images/backgrounds/gentoo-abducted-1024x768.png\">1024x768</"
+"uri> - <uri link=\"/images/backgrounds/gentoo-abducted-1152x864.png"
+"\">1152x864</uri> - <uri link=\"/images/backgrounds/gentoo-"
+"abducted-1280x1024.png\">1280x1024</uri> - <uri link=\"/images/backgrounds/"
+"gentoo-abducted-1600x1200.png\">1600x1200</uri><br/> by <uri link=\"http://"
+"forums.gentoo.org/viewtopic-t-257123.html\">Matteo 'Peach' Pescarin</uri>"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//graphics.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/irc.xml.po b/main/gettext/ru/irc.xml.po
new file mode 100644
index 0000000..358b333
--- /dev/null
+++ b/main/gettext/ru/irc.xml.po
@@ -0,0 +1,1333 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(title):6
+msgid "Gentoo Linux IRC Resources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):7
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):10
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):13
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):16
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):19
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author:title):22
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(author):7
+msgid "Colin Morey"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):11
+msgid "klieber@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):11
+msgid "Kurt Lieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):14
+msgid "fox2mike@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):14
+msgid "Shyam Mani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):17
+msgid "astinus@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):17
+msgid "Alex Howells"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):20
+msgid "nightmorph@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):20
+msgid "Joshua Saddler"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail:link):23
+msgid "musikc@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(mail):23
+msgid "Christina Fullam"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(abstract):26
+msgid "Official Gentoo IRC channels"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(version):32
+msgid "1.39"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(date):33
+msgid "2010-07-16"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(title):36
+msgid "Internet Relay Chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):40
+msgid ""
+"<b>All our official IRC channels can be found on <uri link=\"http://www."
+"freenode.net/\">freenode</uri></b>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):45
+msgid ""
+"All of our channels are managed by volunteers for the mutual benefit of "
+"users and contributors alike, and we consider IRC to be open to everyone. "
+"Please feel free to pop in and introduce yourself, and consider it a "
+"resource for when you run into problems or have questions about Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):52
+msgid "We ask very little of users visiting our support channels on freenode:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):57
+msgid ""
+"Please act sensibly and maturely, abiding by the <uri link=\"/proj/en/"
+"council/coc.xml\">Code of Conduct</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):58
+msgid ""
+"Please read the topic when entering a channel, it contains valuable "
+"information!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):59
+msgid ""
+"Bots or scripts that talk are not welcome in most channels. If in doubt, "
+"please ask."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):60
+msgid ""
+"Please do not use <c>CTCP VERSION</c> or the like on users / channels "
+"without their consent."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):61
+msgid ""
+"Please note we operate a clean-language policy in #gentoo, and swearing is "
+"not permitted."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(li):62
+msgid ""
+"Please also note we are unable to support alternate package managers in "
+"#gentoo, just Portage!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(p):65
+msgid ""
+"It should be noted that we do <b>not</b> provide support for derivative "
+"distributions based upon Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):71
+msgid "Primary Support Channel(s)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):74
+msgid "irc://irc.gentoo.org/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):74
+msgid "#gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):75
+msgid ""
+"Issues with your installation, got a problem with Xorg? Give #gentoo a try!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):78
+msgid "irc://irc.gentoo.org/gentoo-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):78
+msgid "#gentoo-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):79
+msgid ""
+"Discussion about the active development of Gentoo Linux, requires voice (+v)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):82
+msgid "irc://irc.gentoo.org/gentoo-groupcontacts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):82
+msgid "#gentoo-groupcontacts"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):83
+msgid ""
+"Gentoo Group Contacts are the official means of requesting or reporting an "
+"issue with a Freenode cloak or channel, etc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):87
+msgid "irc://irc.gentoo.org/gentoo-ops"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):87
+msgid "#gentoo-ops"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):88
+msgid ""
+"Questions or complaints about #gentoo policy or bans must be raised here "
+"only."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):94
+msgid "Architecture &amp; Platform Support Channels"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):97
+msgid "irc://irc.gentoo.org/gentoo-alpha"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):97
+msgid "#gentoo-alpha"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):98
+msgid "Gentoo Linux/Alpha"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):101
+msgid "irc://irc.gentoo.org/gentoo-amd64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):101
+msgid "#gentoo-amd64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):102
+msgid "Gentoo Linux/AMD64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):106
+msgid "irc://irc.gentoo.org/gentoo-amd64-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):106
+msgid "#gentoo-amd64-dev"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):108
+msgid "Gentoo Linux/AMD64 Developer Channel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):111
+msgid "irc://irc.gentoo.org/gentoo-bsd"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):111
+msgid "#gentoo-bsd"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):112
+msgid "Gentoo *BSD"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):115
+msgid "irc://irc.gentoo.org/gentoo-hppa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):115
+msgid "#gentoo-hppa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):116
+msgid "Gentoo Linux/HPPA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):119
+msgid "irc://irc.gentoo.org/gentoo-ia64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):119
+msgid "#gentoo-ia64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):120
+msgid "Gentoo Linux/IA-64"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):123
+msgid "irc://irc.gentoo.org/gentoo-mips"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):123
+msgid "#gentoo-mips"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):124
+msgid "Gentoo Linux/MIPS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):127
+msgid "irc://irc.gentoo.org/gentoo-powerpc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):127
+msgid "#gentoo-powerpc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):128
+msgid "Gentoo Linux/PowerPC (PPC and PPC64)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):131
+msgid "irc://irc.gentoo.org/gentoo-sparc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):131
+msgid "#gentoo-sparc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):132
+msgid "Gentoo Linux/Sparc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):135
+msgid "irc://irc.gentoo.org/gentoo-x86"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):135
+msgid "#gentoo-x86"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):136
+msgid "Gentoo Linux/x86 development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):147
+msgid "irc://irc.gentoo.org/gentoo-accessibility"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):147
+msgid "#gentoo-accessibility"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):149
+msgid ""
+"The <uri link=\"/proj/en/desktop/accessibility\">Accessibility</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):154
+msgid "irc://irc.gentoo.org/gentoo-apache"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):154
+msgid "#gentoo-apache"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):155
+msgid "Gentoo Apache development related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):158
+msgid "irc://irc.gentoo.org/gentoo-bugs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):158
+msgid "#gentoo-bugs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):159
+msgid "Gentoo BugDay Events, Gentoo Bug Fixing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):162
+msgid "irc://irc.gentoo.org/gentoo-cluster"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):162
+msgid "#gentoo-cluster"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):163
+msgid "Gentoo Linux/Clustering"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):166
+msgid "irc://irc.gentoo.org/gentoo-council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):166
+msgid "#gentoo-council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):167
+msgid "/proj/en/council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):167
+msgid "Gentoo Council"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):170
+msgid "irc://irc.gentoo.org/gentoo-commits"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):170
+msgid "#gentoo-commits"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):171
+msgid "Real-time Gentoo CVS/SVN commit information"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):174
+msgid "irc://irc.gentoo.org/gentoo-db"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):174
+msgid "#gentoo-db"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):175
+msgid "Database-related Packages and Discussion."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):178
+msgid "irc://irc.gentoo.org/gentoo-desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):178
+msgid "#gentoo-desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):179
+msgid "Developers &amp; Users, all things desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):182
+msgid "irc://irc.gentoo.org/gentoo-dev-help"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):182
+msgid "#gentoo-dev-help"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):183
+msgid "Ebuild Writers' Workplace"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):186
+msgid "irc://irc.gentoo.org/gentoo-devrel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):186
+msgid "#gentoo-devrel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):187
+msgid "The <uri link=\"/proj/en/devrel\">Developer Relations</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):190
+msgid "irc://irc.gentoo.org/gentoo-doc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):190
+msgid "#gentoo-doc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):191
+msgid "Gentoo Documentation Development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):194
+msgid "irc://irc.gentoo.org/gentoo-embedded"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):194
+msgid "#gentoo-embedded"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):195
+msgid "Embedded Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):198
+msgid "irc://irc.gentoo.org/gentoo-events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):198
+msgid "#gentoo-events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):199
+msgid "Planning and Real-Time Chat during Gentoo public events"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):202
+msgid "irc://irc.gentoo.org/gentoo-forums"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):202
+msgid "#gentoo-forums"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):203
+msgid "Gentoo Forums related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):206
+msgid "irc://irc.gentoo.org/gentoo-games"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):206
+msgid "#gentoo-games"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):207
+msgid "Gentoo Linux native gaming discussion (no Cedega/Wine)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):210
+msgid "irc://irc.gentoo.org/gentoo-guis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):210
+msgid "#gentoo-guis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):211
+msgid "Gentoo GUIs Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):214
+msgid "irc://irc.gentoo.org/gentoo-hardened"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):214
+msgid "#gentoo-hardened"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):215
+msgid "Hardened Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):218
+msgid "irc://irc.gentoo.org/gentoo-haskell"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):218
+msgid "#gentoo-haskell"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):219
+msgid "Haskell Packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):222
+msgid "irc://irc.gentoo.org/gentoo-java"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):222
+msgid "#gentoo-java"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):223
+msgid "Java related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):226
+msgid "irc://irc.gentoo.org/gentoo-kde"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):226
+msgid "#gentoo-kde"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):227
+msgid "KDE package maintainance"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):230
+msgid "irc://irc.gentoo.org/gentoo-kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):230
+msgid "#gentoo-kernel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):231
+msgid "Gentoo Kernel development discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):234
+msgid "irc://irc.gentoo.org/gentoo-gmn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):234
+msgid "#gentoo-gmn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):235
+msgid "Gentoo Monthly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):238
+msgid "irc://irc.gentoo.org/gentoo-laptop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):238
+msgid "#gentoo-laptop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):239
+msgid "Laptop related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):242
+msgid "irc://irc.gentoo.org/gentoo-lisp"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):242
+msgid "#gentoo-lisp"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):243
+msgid "Gentoo Lisp related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):246
+msgid "irc://irc.gentoo.org/gentoo-media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):246
+msgid "#gentoo-media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):247
+msgid "Gentoo multimedia development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):250
+msgid "irc://irc.gentoo.org/gentoo-mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):250
+msgid "#gentoo-mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):251
+msgid "Gentoo mirrors and administration chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):254
+msgid "irc://irc.gentoo.org/gentoo-netmail"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):254
+msgid "#gentoo-netmail"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):255
+msgid "Mail-related packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):258
+msgid "irc://irc.gentoo.org/gentoo-netmon"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):258
+msgid "#gentoo-netmon"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):259
+msgid "Network Monitoring Packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):262
+msgid "irc://irc.gentoo.org/gentoo-perl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):262
+msgid "#gentoo-perl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):263
+msgid "All things Gentoo perl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):266
+msgid "irc://irc.gentoo.org/gentoo-php"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):266
+msgid "#gentoo-php"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):267
+msgid "Gentoo PHP discussion/support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):270
+msgid "irc://irc.gentoo.org/gentoo-portage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):270
+msgid "#gentoo-portage"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):271
+msgid "Gentoo Portage Development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):274
+msgid "irc://irc.gentoo.org/gentoo-pr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):274
+msgid "#gentoo-pr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):275
+msgid "The <uri link=\"/proj/en/pr\">Public Relations</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):278
+msgid "irc://irc.gentoo.org/gentoo-prefix"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):278
+msgid "#gentoo-prefix"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):279
+msgid ""
+"The <uri link=\"/proj/en/gentoo-alt/prefix/\">Gentoo Prefix</uri> project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):282
+msgid "irc://irc.gentoo.org/gentoo-python"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):282
+msgid "#gentoo-python"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):283
+msgid "Gentoo Python discussion/support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):286
+msgid "irc://irc.gentoo.org/gentoo-qa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):286
+msgid "#gentoo-qa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):287
+msgid "Gentoo <uri link=\"/proj/en/qa\">Quality Assurance</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):290
+msgid "irc://irc.irc.gentoo.org/gentoo-qt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):290
+msgid "#gentoo-qt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):291
+msgid "Gentoo <uri link=\"/proj/en/desktop/qt/\">Qt Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):294
+msgid "irc://irc.gentoo.org/gentoo-releng"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):294
+msgid "#gentoo-releng"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):295
+msgid "Gentoo Release Engineering internal discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):298
+msgid "irc://irc.gentoo.org/gentoo-ruby"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):298
+msgid "#gentoo-ruby"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):299
+msgid "Ruby on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):302
+msgid "irc://irc.gentoo.org/gentoo-science"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):302
+msgid "#gentoo-science"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):303
+msgid "Gentoo Scientific Project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):306
+msgid "irc://irc.gentoo.org/gentoo-security"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):306
+msgid "#gentoo-security"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):307
+msgid "Discussions about the security of Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):310
+msgid "irc://irc.gentoo.org/gentoo-server"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):310
+msgid "#gentoo-server"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):311
+msgid "Server related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):314
+msgid "irc://irc.gentoo.org/gentoo-soc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):314
+msgid "#gentoo-soc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):315
+msgid "Our participation in the Google Summer of Code"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):318
+msgid "irc://irc.gentoo.org/gentoo-sunrise"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):318
+msgid "#gentoo-sunrise"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):319
+msgid "/proj/en/sunrise"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):319
+msgid "Project Sunrise - Gentoo User Overlay"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):323
+msgid "irc://irc.gentoo.org/gentoo-toolchain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):323
+msgid "#gentoo-toolchain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):325
+msgid "Discussion about the Gentoo toolchain (GCC, libc, binutils, etc.)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):330
+msgid "irc://irc.gentoo.org/gentoo-treecleaners"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):330
+msgid "#gentoo-treecleaners"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):332
+msgid "/proj/en/qa/treecleaners"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):332
+msgid "Gentoo Tree Cleaning Team"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):336
+msgid "irc://irc.gentoo.org/gentoo-trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):336
+msgid "#gentoo-trustees"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):338
+msgid ""
+"The Trustees of the <uri link=\"/foundation/en/\">Gentoo Foundation</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):341
+msgid "irc://irc.gentoo.org/gentoo-userreps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):341
+msgid "#gentoo-userreps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):342
+msgid "This is where you can find and speak with the user representatives."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):345
+msgid "irc://irc.gentoo.org/gentoo-vbox"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):345
+msgid "#gentoo-vbox"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):346
+msgid "Support and development channel for virtualbox on gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):349
+msgid "irc://irc.gentoo.org/gentoo-vdr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):349
+msgid "#gentoo-vdr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):350
+msgid "Gentoo VDR and DVB related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):353
+msgid "irc://irc.gentoo.org/gentoo-vim"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):353
+msgid "#gentoo-vim"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):354
+msgid "Gentoo Vim discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):357
+msgid "irc://irc.gentoo.org/gentoo-voip"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):357
+msgid "#gentoo-voip"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):358
+msgid "Voice over IP related Discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):361
+msgid "irc://irc.gentoo.org/gentoo-vps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):361
+msgid "#gentoo-vps"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):362
+msgid "Gentoo Virtual Private Server related chat"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):365
+msgid "irc://irc.gentoo.org/gentoo-web"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):365
+msgid "#gentoo-web"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):366
+msgid "Everything web- and webapp related (on Gentoo of course)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):369
+msgid "irc://irc.gentoo.org/gentoo-wiki"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):369
+msgid "#gentoo-wiki"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):370
+msgid "<uri link=\"/proj/en/wiki\">Gentoo Wiki</uri> discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):376
+msgid "Regional Support Channels"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):379
+msgid "irc://irc.gentoo.org/gentoo-au"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):379
+msgid "#gentoo-au"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):380
+msgid "Australia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):383
+msgid "irc://irc.gentoo.org/gentoo-be"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):383
+msgid "#gentoo-be"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):384
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):444
+msgid "In het Nederlands"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):387
+msgid "irc://irc.gentoo.org/gentoo-br"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):387
+msgid "#gentoo-br"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):388
+msgid "Português do Brasil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):391
+msgid "irc://irc.gentoo.org/gentoo-by"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):391
+msgid "#gentoo-by"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):392
+msgid "На беларускай мове"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):395
+msgid "irc://irc.gentoo.org/gentoo.cs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):395
+msgid "#gentoo.cs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):396
+msgid "česky a slovensky"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):399
+msgid "irc://irc.gentoo.org/gentoo-cn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):399
+msgid "#gentoo-cn"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):400
+msgid "简体中文"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):403
+msgid "irc://irc.gentoo.org/gentoo.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):403
+msgid "#gentoo.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):404
+msgid "Auf Deutsch"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):407
+msgid "irc://irc.gentoo.org/gentoo-dk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):407
+msgid "#gentoo-dk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):408
+msgid "På Dansk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):411
+msgid "irc://irc.gentoo.org/gentoo-el"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):411
+msgid "#gentoo-el"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):412
+msgid "Στα Ελληνικά"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):415
+msgid "irc://irc.gentoo.org/gentoo-es"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):415
+msgid "#gentoo-es"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):416
+msgid "En español"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):419
+msgid "irc://irc.gentoo.org/gentoo-fi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):419
+msgid "#gentoo-fi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):420
+msgid "Suomeksi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):423
+msgid "irc://irc.gentoo.org/gentoofr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):423
+msgid "#gentoofr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):424
+msgid "En français"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):427
+msgid "irc://irc.gentoo.org/gentoo-id"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):427
+msgid "#gentoo-id"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):428
+msgid "Komunitas Pengguna Gentoo Indonesia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):431
+msgid "irc://irc.gentoo.org/gentoo-in"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):431
+msgid "#gentoo-in"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):432
+msgid "Support for Indian Gentoo Users and Indic localization"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):435
+msgid "irc://irc.gentoo.org/gentoo-it"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):435
+msgid "#gentoo-it"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):436
+msgid "In Italiano"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):439
+msgid "irc://irc.gentoo.org/gentoo-ja"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):439
+msgid "#gentoo-ja"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):440
+msgid "日本語で"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):443
+msgid "irc://irc.gentoo.org/gentoo-nl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):443
+msgid "#gentoo-nl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):447
+msgid "irc://irc.gentoo.org/gentoo-no"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):447
+msgid "#gentoo-no"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):448
+msgid "På norsk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):451
+msgid "irc://irc.gentoo.org/gentoo-pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):451
+msgid "#gentoo-pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):452
+msgid "Po Polsku"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):455
+msgid "irc://irc.gentoo.org/gentoo-pt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):455
+msgid "#gentoo-pt"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):456
+msgid "Em Português"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):459
+msgid "irc://irc.gentoo.org/gentoo-ro"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):459
+msgid "#gentoo-ro"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):460
+msgid "Discuţii în limba română"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):463
+msgid "irc://irc.gentoo.org/gentoo-ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):463
+msgid "#gentoo-ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):464
+msgid "На русском языке"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):467
+msgid "irc://irc.gentoo.org/gentoo-se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):467
+msgid "#gentoo-se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):468
+msgid "På svenska"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):471
+msgid "irc:irc.gentoo.org/gentoo-tr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):471
+msgid "#gentoo-tr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):472
+msgid "Resmi Gentoo Türkiye kanalı"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):475
+msgid "irc://irc.gentoo.org/gentoo-tw"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):475
+msgid "#gentoo-tw"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):476
+msgid "使用繁體中文(台灣)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):479
+msgid "irc://irc.gentoo.org/gentoo-ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):479
+msgid "#gentoo-ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):480
+msgid "Українською"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):483
+msgid "irc://irc.gentoo.org/gentoo-uk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):483
+msgid "#gentoo-uk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):484
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri:link):487
+msgid "irc://irc.gentoo.org/gentoo-ve"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(uri):487
+msgid "#gentoo-ve"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(th):488
+msgid "Venezuela"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//irc.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/lists.xml.po b/main/gettext/ru/lists.xml.po
new file mode 100644
index 0000000..36b559b
--- /dev/null
+++ b/main/gettext/ru/lists.xml.po
@@ -0,0 +1,821 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):6
+msgid "Gentoo Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):8
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):11
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):9
+msgid "lcars"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):9
+msgid "Andrea Barisani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):12
+msgid "cybersystem"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):12
+msgid "Sascha Schwabbauer"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):14
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):17
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):20
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(author:title):23
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):15
+msgid "curtis119"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):15
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):18
+msgid "klieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):18
+msgid "Kurt Lieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):21
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail):21
+msgid "Robin H. Johnson"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(mail:link):24
+msgid "nightmorph"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(abstract):27
+msgid "Gentoo public mailing lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(version):35
+msgid "6.2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(date):36
+msgid "2010-09-09"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):39
+msgid "Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):43
+msgid ""
+"The Gentoo free software project has a number of public mailing lists, "
+"covering a variety of Gentoo-related subjects. Our mailing lists are powered "
+"by <uri link=\"http://mlmmj.mmj.dk\">mlmmj</uri> and provides <c>List-Id:</"
+"c> mail headers and <c>[listname]</c> subject prefixes to comply with modern "
+"mailing list manager standards and conventions."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):51
+msgid ""
+"One interacts with <c>mlmmj</c> via email. To subscribe to a list, send an "
+"empty email to:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(note):60
+msgid ""
+"Replace 'listname' with the actual name of the list that you want to "
+"subscribe to, e.g.: <c>gentoo-user+subscribe@lists.gentoo.org</c> to "
+"subscribe to the <c>gentoo-user</c> mailing list."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):66
+msgid "Once subscribed to the list, you can post to it by sending an email to:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):74
+msgid "To unsubscribe from a list, send an empty email to:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):82
+msgid ""
+"All of our lists also have a corresponding digest list. Digest lists will "
+"mail a single email to you every couple of days, rather than individual "
+"emails for each post. If you are subscribed to the digest variant and wish "
+"to be unsubscribed, you must specifically unsubscribe from the digest "
+"variant. Using the email address that you wish to (un)subscribe, send an "
+"empty email to the following addresses to subscribe and unsubscribe from "
+"mailing lists respectively:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):97
+msgid ""
+"Some users may want to post to the list, but not actually receive mail from "
+"it (such as those who read lists via an alternate method, such as gmane). "
+"These users may subscribe to the \"nomail\" option of each list:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):108
+msgid ""
+"You can learn more about the capabilities of mlmmj by sending an empty mail "
+"to the following address:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(impo):117
+msgid ""
+"You can also learn more about the Gentoo mailing list system, including "
+"etiquette and acceptable behavior, by reading the short Gentoo <uri link="
+"\"#faq\">mailing list FAQ</uri> that appears later in this document."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):126
+msgid "Primary Gentoo Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):131
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):344
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):440
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):490
+msgid "List name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):132
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):345
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):441
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(th):491
+msgid "Description"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):136
+msgid "General Gentoo user support and discussion mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):140
+msgid "General Gentoo announcements list (new releases, security fixes)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):144
+msgid "General Gentoo developer discussion mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):148
+msgid "Gentoo development-specific announcements list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):152
+msgid "For the discussion of non-technical matters in Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):156
+msgid "For the discussion of security issues and fixes"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):160
+msgid ""
+"For documentation contributions, suggestions, improvements and translations"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):164
+msgid ""
+"Subscribe to this list if you want to be notified on changes regarding our "
+"documentation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):168
+msgid ""
+"Subscribe to this list if you want to be notified on changes in the CVS, SVN "
+"and Git trees. This is a high-traffic read-only list!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):172
+msgid "For Gentoo Linux/PowerPC user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):176
+msgid "For Gentoo Linux/PowerPC developer discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):180
+msgid "For Gentoo Linux/Alpha user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):184
+msgid "For Gentoo Linux/AMD64 user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):188
+msgid "Discussions about running Gentoo on the HPPA architecture"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):192
+msgid "Discussions about running Gentoo on the MIPS architecture"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):196
+msgid "For Gentoo Linux/Sparc user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):200
+msgid "Discussion about Gentoo/BSD"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):204
+msgid ""
+"Discussion about the <uri link=\"/proj/en/gentoo-alt/\">Gentoo on Alternate "
+"Platforms Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):208
+msgid ""
+"Release announcements for gentoo-sources, vesafb-tng, fbsplash and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):212
+msgid "Discussion on powersaving, pcmcia and other laptop-related stuff"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):216
+msgid "Mailing list devoted to Gentoo on the desktop"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):220
+msgid "Discussions about improving the Gentoo desktop experience"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):224
+msgid "For a security hardened version of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):228
+msgid "Portage Internals and Portage Interface Development Discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):232
+msgid "Mailinglist dedicated to catalyst"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):236
+msgid "Discussions about Gentoo in production environments"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):240
+msgid "Discussion about Gentoo Linux administration issues"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):244
+msgid "Discussions about Gentoo in clustered environments"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):248
+msgid "Discussion and help with ebuild developement issues for users"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):252
+msgid ""
+"Discussion of web configuration and administration related to Gentoo's web "
+"tools"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):256
+msgid "For Gentoo Linux/embedded user and developer discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):260
+msgid "Mailinglist for the Gentoo release management team"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):264
+msgid "Mailinglist for all Gentoo public-relation discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):268
+msgid "Discussions about QA and its improvement within Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):272
+msgid "Gentoo Developer Relations mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):276
+msgid "Gentoo User Relations mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):280
+msgid "Gentoo Council mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):284
+msgid ""
+"Announcements and discussion among Gentoo mirror admins and developers "
+"regarding releases and other issues"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):288
+msgid "Discussion of perl on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):292
+msgid "Discussion about Java on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):296
+msgid "Discussion on science-related applications and integration in Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):300
+msgid ""
+"Discussion about the <uri link=\"/proj/en/desktop/accessibility/\">Gentoo "
+"Accessibility Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):304
+msgid ""
+"Discussion within United Kingdom developers and UK based events organisation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):308
+msgid "Discussion within Australian developers and local events organisation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):312
+msgid "Discussion on Gentoo activities related to Google's Summer of Code"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):316
+msgid "Discussion about Lisp on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):320
+msgid "Discussion about VDR on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):324
+msgid "The Gentoo NFP/Trustees Mailing list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):328
+msgid ""
+"Discussion about migration of primary Gentoo repositories to alternate SCMs."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):332
+msgid "Discussion about the Gentoo Package Manager Specification."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):339
+msgid "Non-English Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):349
+msgid "deutschsprachige Gentoo User Diskussionsliste"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):353
+msgid "Brazilian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):357
+msgid "Greek Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):361
+msgid "Lista para la ayuda y discusion de usuarios hispano-hablantes de Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):365
+msgid "French Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):369
+msgid "Hungarian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):373
+msgid "Indonesian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):377
+msgid "Dutch Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):381
+msgid "Polish Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):385
+msgid "Czech and Slovak Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):389
+msgid "Russian Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):393
+msgid "Turkish Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):397
+msgid "German Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):401
+msgid "Greek Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):405
+msgid ""
+"Lista de correo dedicada a la traduccion y creacion de documentacion en "
+"Espanol de Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):412
+msgid "Finnish Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):416
+msgid "French Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):420
+msgid "Italian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):424
+msgid "Polish Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):428
+msgid "Russian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):435
+msgid "Other Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):445
+msgid "For the discussion of libconf development"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):449
+msgid ""
+"Special-purpose list for the Gentoo Bug Wranglers. This mailing list is by "
+"invite only. If you are interested in joining, simply get active on bugzilla "
+"and help our existing members wrangle bugs. You'll get noticed and invited "
+"to be a bug-wrangler in due course."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):458
+msgid "For testing of the list management software (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):462
+msgid ""
+"Internal Gentoo developer discussions (non-development, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):466
+msgid ""
+"Legally required announcements of the Gentoo Foundation to foundation "
+"members (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):470
+msgid "Internal Gentoo Infrastructure project list (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):474
+msgid "Internal Gentoo Foundation Trustees discussions (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):481
+msgid "Inactive, Closed Gentoo Mailing Lists"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):484
+msgid "Archives still exist but these lists are closed for new posts."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):495
+msgid "Indonesian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):499
+msgid "Lithuanian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):503
+msgid "Hungarian Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):507
+msgid "Dutch Gentoo Documentation Translation List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):511
+msgid "Gentoo Forums translations list"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):515
+msgid "For discussion of document translation issues"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):519
+msgid "Discussions about running Gentoo on the ARM architecture"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):523
+msgid "Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):527
+msgid "German Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):531
+msgid "Spanish Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):535
+msgid "French Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):539
+msgid "Dutch Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):543
+msgid "Polish Gentoo Weekly Newsletter"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):547
+msgid ""
+"Gentoo Weekly Newsletter - administratriva for English authors (restricted "
+"list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):551
+msgid ""
+"Gentoo Weekly Newsletter - administratriva for German translations "
+"(restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):555
+msgid ""
+"Gentoo Weekly Newsletter - administratriva for Spanish translations "
+"(restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):559
+msgid "Gentoo Monthly Newsletter (shared with gentoo-gwn)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):563
+msgid "German Gentoo Monthly Newsletter (shared with gentoo-gwn-de)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):567
+msgid "Spanish Gentoo Monthly Newsletter (shared with gentoo-gwn-es)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):571
+msgid "French Gentoo Monthly Newsletter (shared with gentoo-gwn-fr)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):575
+msgid "Dutch Gentoo Monthly Newsletter (shared with gentoo-gwn-nl)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):579
+msgid "Polish Gentoo Monthly Newsletter (shared with gentoo-gwn-pl)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):583
+msgid ""
+"Gentoo Monthly Newsletter - administratriva for English authors (shared with "
+"gentoo-gwn-admin, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):587
+msgid ""
+"Gentoo Monthly Newsletter - administratriva for German translations (shared "
+"with gentoo-gwn-admin-de, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):591
+msgid ""
+"Gentoo Monthly Newsletter - administratriva for Spanish translations (shared "
+"with gentoo-gwn-admin-es, restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):595
+msgid "Discussion of programming language support and related issues in Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):599
+msgid "For Gentoo Linux/ia64 user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):603
+msgid ""
+"Discussion about the <uri link=\"/proj/en/scire/\">Systems Configuration, "
+"Installation and Replication Environment Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):610
+msgid "Discussion about Gentoo media packages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):614
+msgid "Discussion about Gentoo for Xbox"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):618
+msgid "For Gentoo cygwin user support and discussion"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):622
+msgid "Dedicated to the development of the new Gentoo website"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):626
+msgid ""
+"Discussion about the <uri link=\"/proj/en/releng/installer/\">Gentoo Linux "
+"Installer Project</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):633
+msgid "Discussions about improving the performance of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):637
+msgid "Discussion about Gentoo Extreme Security project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):641
+msgid "Discussion about GNUstep on Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):645
+msgid "Discussion about Gentoo on OSX project (merged to gentoo-alt list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):649
+msgid "Commit emails for CVS (merged to gentoo-commits list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):653
+msgid "Discussions of the Gentoo Proctors project (restricted list)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):657
+msgid "Korean Gentoo User Mailing List"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):661
+msgid "Discussion about development of the Gentoo GNAP project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):665
+msgid "Announcements about the Gentoo Tenshi project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(ti):669
+msgid "Discussion about development of the Gentoo Tenshi project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):677
+msgid "Archives"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):680
+msgid ""
+"Gentoo mailing list archives are collected on <br/><uri link=\"http://"
+"archives.gentoo.org\">archives.gentoo.org</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):685
+msgid ""
+"The following sites also host archives of most of the mailing lists.<br/"
+"><uri link=\"http://news.gmane.org/search.php?match=gentoo\">Gmane</uri><br/"
+"><uri link=\"http://marc.theaimsgroup.com/\">MARC: Mailing list ARChives</"
+"uri><br/><uri link=\"http://www.mail-archive.com\">Mail-Archive</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(title):696
+msgid "Mailing List Mini-FAQ"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):704
+msgid ""
+"To reduce spam, all of our lists are configured to only allow posts from "
+"official subscriber email addresses. Fortunately, <c>mlmmj</c> supports "
+"\"nomail\" subscriptions, allowing you to register alternate email addresses "
+"that can be used only for posting to the list. Here's an example of how this "
+"works. Let's say you subscribed to the <c>gentoo-dev</c> list as <c>jim@home."
+"com</c>, but you'd also like to post to the list using your <c>james@work."
+"com</c> email address. To do this, send a message (as <c>james@work.com</c>) "
+"to <c>gentoo-dev+subscribe-nomail@lists.gentoo.org</c> You should then be "
+"allowed to post to <c>gentoo-dev</c> using both your home and work email "
+"addresses."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):716
+msgid ""
+"In line with the original spam reduction goal, if you post to the list from "
+"a non-subscribed address, your mail will be delivered to <path>/dev/null</"
+"path>. You will <b>not</b> receive any bounce message from our servers. This "
+"prevents spammers from forging your address to get a bounce delivered to you."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):728
+msgid ""
+"Unsubscribe from the normal list and then subscribe to the digest list. For "
+"list <c>listname</c>, this would be done by sending empty emails to the "
+"following two addresses:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):742
+msgid ""
+"To filter incoming mail arriving from list <c>listname</c>, use the "
+"following <c>procmail</c> recipe:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(pre:caption):747
+msgid "Sample procmail recipe"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(pre):747
+#, no-wrap
+msgid ""
+"\n"
+":0:\n"
+"* ^List-Id:.*listname\\.gentoo\\.org\n"
+"Mail/listname\n"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):753
+msgid ""
+"This is identical to how you'd filter incoming <e>Mailman</e> mailing list "
+"manager emails."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):762
+msgid ""
+"HTML email is discouraged, but not forbidden (there are some MUA, "
+"specifically web-based that make it very hard to disable HTML entirely). "
+"Beware that some users may have their recieving side configured to hide HTML "
+"entirely, so it might look like you are ignored, especially if you sent HTML-"
+"only email. In order of preference, you should endeavour to send: text/"
+"plain, multipart with text/plain before text/html, text/html. MIME is "
+"acceptable and widely used."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):771
+msgid ""
+"Please do not send any vacation or out of office messages to the list. In "
+"the interests of reducing list spam, if you set any auto-responding message "
+"that goes to the lists, we will unsubscribe your account from ALL lists. Any "
+"previously subscribed addresses that send mail server messages to the lists "
+"will also be removed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(p):779
+msgid ""
+"Do not cross-post when sending messages to a list! Sending the same message "
+"to more than one list at a time leads to fragmentation of the thread when "
+"some people reply on one list, and some on another list. There's no "
+"guarantee that the recipients of your message are on both lists. Choose just "
+"one list when sending a message."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(note):787
+msgid ""
+"For general email list etiquette, <uri link=\"http://www.dtcc.edu/cs/rfc1855."
+"html\">these guidelines</uri> are an excellent primer."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//lists.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/mirrors-rsync-data.xml.po b/main/gettext/ru/mirrors-rsync-data.xml.po
new file mode 100644
index 0000000..6d4e7b2
--- /dev/null
+++ b/main/gettext/ru/mirrors-rsync-data.xml.po
@@ -0,0 +1,1176 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2010-04-11 22:07+0600\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):12
+msgid "Any available mirror - rsync.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):13
+msgid "rsync://rsync.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):16
+msgid "Tera-byte Dot Com Inc - rsync1.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):17
+msgid "rsync://rsync1.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):20
+msgid "Gossamer Threads"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):21
+msgid "rsync://rsync2.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):24
+msgid "Memorial University - rsync3.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):25
+msgid "rsync://rsync3.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):28
+msgid "University of Waterloo - rsync4.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):29
+msgid "rsync://rsync4.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):32
+msgid "Arctic Network Mirrors - rsync5.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):33
+msgid "rsync://rsync5.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):36
+msgid "mirror.the-best-hosting.net - rsync6.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):37
+msgid "rsync://rsync6.ca.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):43
+msgid "Any available mirror - rsync.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):44
+msgid "rsync://rsync.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):47
+msgid ""
+"University of Delaware, Delaware Linux Users Group - rsync2.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):49
+msgid "rsync://rsync2.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):52
+msgid "Georgia Tech - rsync3.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):53
+msgid "rsync://rsync3.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):56
+msgid "Rochester Institute of Technology - rsync5.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):57
+msgid "rsync://rsync5.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):60
+msgid "University of Northern Iowa - rsync6.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):61
+msgid "rsync://rsync6.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):64
+msgid "CERIAS, Purdue University - rsync7.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):65
+msgid "rsync://rsync7.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):68
+msgid "University of Idaho - rsync8.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):69
+msgid "rsync://rsync8.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):72
+msgid "gentoo.insync.za.net - rsync9.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):73
+msgid "rsync://rsync9.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):76
+msgid "Portalstorm - rsync10.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):77
+msgid "rsync://rsync10.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):80
+msgid "Steadfast Networks - rsync11.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):81
+msgid "rsync://rsync11.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):84
+msgid "NetNITCO Internet Services - rsync15.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):85
+msgid "rsync://rsync15.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):88
+msgid ""
+"Chemistry Dept, University of Wisconsin at Madison - rsync21.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):90
+msgid "rsync://rsync21.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):93
+msgid "Michigan Tech University - rsync24.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):94
+msgid "rsync://rsync24.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):97
+msgid "Indiana University, Unix Systems Support Group - rsync25.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):98
+msgid "rsync://rsync25.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):101
+msgid "TDS Internet Services - rsync26.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):102
+msgid "rsync://rsync26.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):105
+msgid "Semaphore Corporation - rsync27.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):106
+msgid "rsync://rsync27.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):109
+msgid "Liquidweb Inc (genfu.org) - rsync29.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):110
+msgid "rsync://rsync29.us.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):116
+msgid "Any available mirror - rsync.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):117
+msgid "rsync://rsync.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):120
+msgid "Laboratory of System Administration - rsync1.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):121
+msgid "rsync://rsync1.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):124
+msgid "Laboratório de Computação Científica - UFMG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):125
+msgid "rsync://rsync2.br.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):131
+msgid "Any available mirror - rsync.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):132
+msgid "rsync://rsync.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):135
+msgid "Inode - rsync1.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):136
+msgid "rsync://rsync1.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):139
+msgid "Lagis - rsync2.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):140
+msgid "rsync://rsync2.at.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):146
+msgid "Any available mirror - rsync.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):147
+msgid "rsync://rsync.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):150
+msgid "UPC Česká republika, a.s - rsync1.cz.gentoo.org."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):151
+msgid "rsync://rsync1.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):154
+msgid "Advokatni Kancelar Kindl &amp; Partneri - rsync2.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):155
+msgid "rsync://rsync2.cz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):161
+msgid "Any available mirror - rsync.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):162
+msgid "rsync://rsync.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):165
+msgid "Gentoo e.V. - rsync1.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):166
+msgid "rsync://rsync1.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):169
+msgid "hosteurope.de - rsync3.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):170
+msgid "rsync://rsync3.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):173
+msgid "Opteamax UG - rsync4.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):174
+msgid "rsync://rsync4.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):177
+msgid "I-Node - rsync5.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):178
+msgid "rsync://rsync5.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):181
+msgid "rwth-aachen.de - rsync6.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):182
+msgid "rsync://rsync6.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):185
+msgid "stealer.net - rsync7.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):186
+msgid "rsync://rsync7.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):189
+msgid "gentoo64.net - rsync8.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):190
+msgid "rsync://rsync8.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):193
+msgid "University of Applied Sciences, Esslingen - rsync9.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):194
+msgid "rsync://rsync9.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):197
+msgid "Ruhr-Universität Bochum - rsync10.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):198
+msgid "rsync://rsync10.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):201
+msgid ""
+"SPLINE, Institut für Informatik, Freie Universität Berlin - rsync11.de."
+"gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):203
+msgid "rsync://rsync11.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):206
+msgid "mirror.amiconsult.de - rsync12.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):207
+msgid "rsync://rsync12.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):210
+msgid "sonic-lux.net - rsync13.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):211
+msgid "rsync://rsync13.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):214
+msgid "Westfaelische Wilhelms-Universitaet - rsync14.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):215
+msgid "rsync://rsync14.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):218
+msgid "RWTH Aachen University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):219
+msgid "rsync://rsync15.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):222
+msgid ""
+"University of Applied Sciences Ostwestfalen Lippe - rsync16.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):224
+msgid "rsync://rsync16.de.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):230
+msgid "Any available mirror - rsync.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):231
+msgid "rsync://rsync.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):234
+msgid "tut.fi - rsync1.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):235
+msgid "rsync://rsync1.fi.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):241
+msgid "Any available mirror - rsync.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):242
+msgid "rsync://rsync.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):245
+msgid "Linuxant.fr - rsync1.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):246
+msgid "rsync://rsync1.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):249
+msgid "Ovh Hosting Provider - rsync2.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):250
+msgid "rsync://rsync2.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):253
+msgid "Ovh Hosting Provider - rsync3.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):254
+msgid "rsync://rsync3.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):257
+msgid "gentoo.modulix.net - rsync4.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):258
+msgid "rsync://rsync4.fr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):264
+msgid "Any available mirror - rsync.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):265
+msgid "rsync://rsync.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):268
+msgid "gentoo.gr - rsync1.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):269
+msgid "rsync://rsync1.gr.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):275
+msgid "Any available mirror - rsync.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):276
+msgid "rsync://rsync.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):279
+msgid "IND Group - rsync1.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):280
+msgid "rsync://rsync1.hu.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):286
+msgid "Any available mirror - rsync.ie.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):287
+msgid "rsync://rsync.ie.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):290
+msgid ""
+"HEAnet - Ireland's National Education and Research Network - rsync1.ie."
+"gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):292
+msgid "rsync://rsync1.ie.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):298
+msgid "Any available mirror - rsync.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):299
+msgid "rsync://rsync.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):302
+msgid "KTU ELEN Gentoo Mirror - rsync1.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):303
+msgid "rsync://rsync1.lt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):309
+msgid "Any available mirror - rsync.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):310
+msgid "rsync://rsync.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):313
+msgid "Tups.lv - rsync1.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):314
+msgid "rsync://rsync1.lv.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):320
+msgid "Any available mirror - rsync.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):321
+msgid "rsync://rsync.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):324
+msgid "Cambrium BV - rsync1.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):325
+msgid "rsync://rsync1.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):328
+msgid "Universiteit Twente - rsync2.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):329
+msgid "rsync://rsync2.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):332
+msgid "Tiscali - rsync3.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):333
+msgid "rsync://rsync3.nl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):339
+msgid "Any available mirror - rsync.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):340
+msgid "rsync://rsync.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):343
+msgid ""
+"Institute of Theoretical Physics University of Wroclaw, Poland - rsync1.pl."
+"gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):344
+msgid "rsync://rsync1.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):347
+msgid "Rzeszow University of Technology - rsync3.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):348
+msgid "rsync://rsync3.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):351
+msgid "Technical University of Opole - rsync4.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):352
+msgid "rsync://rsync4.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):355
+msgid "Warsaw University Of Technology - rsync6.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):356
+msgid "rsync://rsync6.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):359
+msgid "Vectranet - rsync7.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):360
+msgid "rsync://rsync7.pl.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):366
+msgid "Any available mirror - rsync.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):367
+msgid "rsync://rsync.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):370
+msgid "Universidade do Minho - rsync1.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):371
+msgid "rsync://rsync1.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):374
+msgid "Rede das Novas Licenciaturas - rsync2.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):375
+msgid "rsync://rsync2.pt.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):381
+msgid "Any available mirror - rsync.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):382
+msgid "rsync://rsync.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):385
+msgid "Ineton - rsync1.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):386
+msgid "rsync://rsync1.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):389
+msgid "Romanian Education Network - rsync3.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):390
+msgid "rsync://rsync3.ro.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):396
+msgid "Any available mirror - rsync.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):397
+msgid "rsync://rsync.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):400
+msgid "parabol.com - rsync2.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):401
+msgid "rsync://rsync2.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):404
+msgid "ING-net Umea University - rsync3.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):405
+msgid "rsync://rsync3.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):408
+msgid "Dataphone - rsync5.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):409
+msgid "rsync://rsync5.se.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):415
+msgid "Any available mirror - rsync.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):416
+msgid "rsync://rsync.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):419
+msgid "Wheel.sk - rsync1.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):420
+msgid "rsync://rsync1.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):423
+msgid "Ynet.sk - rsync2.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):424
+msgid "rsync://rsync2.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):427
+msgid "Rainside.sk - rsync3.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):428
+msgid "rsync://rsync3.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):431
+msgid "hq.alert.sk - rsync4.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):432
+msgid "rsync://rsync4.sk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):438
+msgid "Any available mirror - rsync.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):439
+msgid "rsync://rsync.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):442
+msgid "gentoo.kiev.ua - rsync1.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):443
+msgid "rsync://rsync1.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):446
+msgid "ITEAM gentoo mirror - rsync2.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):447
+msgid "rsync://rsync2.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):450
+msgid "Telcom ISP - rsync3.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):451
+msgid "rsync://rsync3.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):454
+msgid "portage.org.ua - rsync4.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):455
+msgid "rsync://rsync4.ua.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):461
+msgid "Any available mirror - rsync.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):462
+msgid "rsync://rsync.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):465
+msgid "Qube Managed Services - rsync1.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):466
+msgid "rsync://rsync1.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):469
+msgid "Bytemark Hosting - rsync2.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):470
+msgid "rsync://rsync2.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):473
+msgid "star.net.uk - rsync3.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):474
+msgid "rsync://rsync3.uk.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):480
+msgid "Any available mirror - rsync.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):481
+msgid "rsync://rsync.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):484
+msgid "Swinburne University of Technology - rsync1.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):485
+msgid "rsync://rsync1.au.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):491
+msgid "Any available mirror - rsync.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):492
+msgid "rsync://rsync.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):495
+msgid "mirrors.xmu.edu.cn - rsync2.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):496
+msgid "rsync://rsync2.cn.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):502
+msgid "Any available mirror - rsync.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):503
+msgid "rsync://rsync.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):506
+msgid "gg3.net - rsync1.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):507
+msgid "rsync://rsync1.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):510
+msgid ""
+"Japan Advanced Institute of Science and Technology - rsync3.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):512
+msgid "rsync://rsync3.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):515
+msgid "wide.ad.jp - rsync5.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):516
+msgid "rsync://rsync5.jp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):522
+msgid "Any available mirror - rsync.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):523
+msgid "rsync://rsync.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):526
+msgid "KEMS-Zajil - rsync1.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):527
+msgid "rsync://rsync1.kw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):533
+msgid "Any available mirror - rsync.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):534
+msgid "rsync://rsync.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):537
+msgid "Neo Lab's - rsync1.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):538
+msgid "rsync://rsync1.kz.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):544
+msgid "Any available mirror - rsync.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):545
+msgid "rsync://rsync.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):548
+msgid "bloodhost.ru - rsync1.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):549
+msgid "rsync://rsync1.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):552
+msgid "Yandex.ru - rsync2.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):553
+msgid "rsync://rsync2.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):556
+msgid "xeon.gentoo.ru - rsync4.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):557
+msgid "rsync://rsync4.ru.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):563
+msgid "Any available mirror - rsync.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):564
+msgid "rsync://rsync.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):567
+msgid "mirror.averse.net - rsync1.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):568
+msgid "rsync://rsync1.sg.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):574
+msgid "Any available mirror - rsync.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):575
+msgid "rsync://rsync.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):578
+msgid "isu.edu.tw - rsync3.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):579
+msgid "rsync://rsync3.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(name):582
+msgid "National Center for High-Performance Computing - rsync6.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(uri):583
+msgid "rsync://rsync6.tw.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):588
+msgid "Argentina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):589
+msgid "Austria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):590
+msgid "Australia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):591
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):592
+msgid "Bulgaria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):593
+msgid "Brazil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):594
+msgid "Bahamas"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):595
+msgid "Canada"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):596
+msgid "Switzerland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):597
+msgid "China"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):598
+msgid "Czech Republic"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):599
+msgid "Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):600
+msgid "Denmark"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):601
+msgid "Estonia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):602
+msgid "Spain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):603
+msgid "Finland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):604
+msgid "France"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):605
+msgid "Greece"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):606
+msgid "Hong Kong"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):607
+msgid "Hungary"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):608
+msgid "Ireland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):609
+msgid "Israel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):610
+msgid "Iceland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):611
+msgid "Italy"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):612
+msgid "Japan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):613
+msgid "South Korea"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):614
+msgid "Kuwait"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):615
+msgid "Kazakhstan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):616
+msgid "Lithuania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):617
+msgid "Latvia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):618
+msgid "Netherlands"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):619
+msgid "Norway"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):620
+msgid "Poland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):621
+msgid "Portugal"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):622
+msgid "Romania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):623
+msgid "Russia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):624
+msgid "Sweden"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):625
+msgid "Singapore"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):626
+msgid "Slovakia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):627
+msgid "Thailand"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):628
+msgid "Turkey"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):629
+msgid "Taiwan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):630
+msgid "Ukraine"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):631
+msgid "UK"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(country):632
+msgid "USA"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync-data.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/mirrors-rsync.xml.po b/main/gettext/ru/mirrors-rsync.xml.po
new file mode 100644
index 0000000..66de939
--- /dev/null
+++ b/main/gettext/ru/mirrors-rsync.xml.po
@@ -0,0 +1,74 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2010-04-11 22:07+0600\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(title):9
+msgid "Gentoo Linux Portage rsync Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(author:title):10
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(author:title):13
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(mail:link):11
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(mail:link):14
+msgid "darkside"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(abstract):17
+msgid "List of Gentoo Portage rsync Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(version):23
+msgid "1.11"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(date):24
+msgid "2010-01-22"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(title):27
+msgid "Official mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(p):31
+msgid ""
+"The Gentoo infrastructure team maintains serveral rsync mirrors. This "
+"rotation is called <c>rsync.gentoo.org</c>. The <c>SYNC</c> variable in "
+"<path>/etc/make.conf</path> is set to this rotation by default. These "
+"mirrors are located globally and may not be the fastest for your location, "
+"however, they are very reliable. Please do not use a mirror in this rotation "
+"directly, instead only use the rotation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(title):44
+msgid "Community mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(p):48
+msgid ""
+"The following is the listing of individual Portage rsync mirrors that are "
+"run by the community. Community mirrors come and go, but they are monitored "
+"to make sure that they are up to date. It is advised to use a rotation "
+"instead of a single mirror directly. This helps spread out the load and "
+"provides a failsafe in case a specific mirror is offline."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors-rsync.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/mirrors.xml.po b/main/gettext/ru/mirrors.xml.po
new file mode 100644
index 0000000..a00832d
--- /dev/null
+++ b/main/gettext/ru/mirrors.xml.po
@@ -0,0 +1,66 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:37+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(mainpage:redirect):7
+msgid "mirrors2.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(title):8
+msgid "Gentoo Linux Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(author:title):10
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(mail:link):11
+msgid "jforman@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(mail):11
+msgid "Jeffrey Forman"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(version):14
+msgid "0"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(title):17
+msgid "Gentoo Download Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(title):20
+msgid "Other Mirrors:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri:link):23
+msgid "http://distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri):23
+msgid "Gentoo distfiles mirror (Global)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri:link):24
+msgid "Please upgrade to"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(uri):24
+msgid "app-portage/mirrorselect-2.0.0 or higher"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/mirrors2.xml.po b/main/gettext/ru/mirrors2.xml.po
new file mode 100644
index 0000000..1ebec3c
--- /dev/null
+++ b/main/gettext/ru/mirrors2.xml.po
@@ -0,0 +1,131 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):9
+msgid "Gentoo Linux Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(author:title):11
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail:link):12
+msgid "jforman@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail):12
+msgid "Jeffrey Forman"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(author:title):14
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(author:title):17
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail:link):15
+msgid "fox2mike@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail):15
+msgid "Shyam Mani"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail:link):18
+msgid "astinus@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(mail):18
+msgid "Alex Howells"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(abstract):21
+msgid "List of Gentoo Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(version):27
+msgid "2.1"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(date):28
+msgid "2009-12-03"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):31
+msgid "Gentoo Download Full Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(p):35
+msgid ""
+"The following organizations provide a full source mirror of all files "
+"related to Gentoo, including installation CDs, LiveCDs and GRP package sets."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(impo):40
+msgid ""
+"These mirrors are download mirrors. The rsync-mirrors listed here are "
+"<e>not</e> for individual use (i.e. <c>emerge --sync</c>) as that would "
+"download the full mirror instead of just the Portage tree."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(note):46
+msgid "* indicates mirrors that support IPv6"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):55
+msgid "Other Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri:link):60
+msgid "http://ibiblio.org/pub/Linux/MIRRORS.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri):60
+msgid "Ibiblio.org(worldwide ibiblio mirrors)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):69
+msgid "Partial Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(p):73
+msgid ""
+"These mirrors are not complete mirrors. Some provide only distfiles, while "
+"others provide only installation media. Please use one of the full mirrors "
+"if you cannot find what you're looking for."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(title):88
+msgid "Mirroring Resources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri:link):93
+msgid "/doc/en/rsync.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri):93
+msgid "How to set up a Gentoo rsync mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri:link):94
+msgid "/doc/en/source_mirrors.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(uri):94
+msgid "How to set up a Gentoo source mirror"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors2.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/mirrors3.xml.po b/main/gettext/ru/mirrors3.xml.po
new file mode 100644
index 0000000..7e6f995
--- /dev/null
+++ b/main/gettext/ru/mirrors3.xml.po
@@ -0,0 +1,1908 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:37+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):13
+msgid "Arctic Network Mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):14
+msgid "ftp://gentoo.arcticnetwork.ca/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):15
+msgid "http://gentoo.arcticnetwork.ca/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):18
+msgid "Tera-byte Dot Com Inc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):19
+msgid "ftp://mirrors.tera-byte.com/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):20
+msgid "http://gentoo.mirrors.tera-byte.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):21
+msgid "rsync://mirrors.tera-byte.com/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):24
+msgid "University of Waterloo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):25
+msgid "ftp://mirror.csclub.uwaterloo.ca/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):26
+msgid "http://mirror.csclub.uwaterloo.ca/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):29
+msgid "Gossamer Threads"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):30
+msgid "http://gentoo.gossamerhost.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):31
+msgid "rsync://gentoo.gossamerhost.com/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):34
+msgid "mirror.the-best-hosting.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):35
+msgid "http://mirror.the-best-hosting.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):36
+msgid "rsync://mirror.the-best-hosting.net/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):42
+msgid "OSU Open Source Lab"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):43
+msgid "http://gentoo.osuosl.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):46
+msgid "ibiblio.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):47
+msgid "ftp://distro.ibiblio.org/pub/linux/distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):48
+msgid "http://distro.ibiblio.org/pub/linux/distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):49
+msgid "rsync://distro.ibiblio.org/pub/linux/distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):52
+msgid "Georgia Tech"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):53
+msgid "ftp://ftp.gtlib.gatech.edu/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):54
+msgid "http://www.gtlib.gatech.edu/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):55
+msgid "rsync://rsync.gtlib.gatech.edu/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):58
+msgid "Sandia National Labs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):59
+msgid "ftp://mirror.iawnet.sandia.gov/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):62
+msgid "Indiana University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):63
+msgid "ftp://ftp.ussg.iu.edu/pub/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):66
+msgid "University of California, Santa Barbara"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):67
+msgid "ftp://ftp.ucsb.edu/pub/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):68
+msgid "http://ftp.ucsb.edu/pub/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):71
+msgid "TDS Internet Services"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):72
+msgid "http://gentoo.mirrors.tds.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):73
+msgid "ftp://gentoo.mirrors.tds.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):74
+msgid "rsync://gentoo.mirrors.tds.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):77
+msgid "NetNITCO Internet Services"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):78
+msgid "http://gentoo.netnitco.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):79
+msgid "ftp://gentoo.netnitco.net/pub/mirrors/gentoo/source/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):82
+msgid "Semaphore Corporation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):83
+msgid "http://gentoo.llarian.net/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):84
+msgid "ftp://gentoo.llarian.net/pub/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):87
+msgid "Datapipe Managed Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):88
+msgid "http://mirror.datapipe.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):89
+msgid "ftp://mirror.datapipe.net/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):92
+msgid "CS Department at Western Michigan University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):93
+msgid "http://mirrors.cs.wmich.edu/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):96
+msgid "Utah State University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):97
+msgid "http://mirror.usu.edu/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):100
+msgid "Argonne National Laboratory"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):101
+msgid "http://mirror.mcs.anl.gov/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):102
+msgid "ftp://mirror.mcs.anl.gov/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):103
+msgid "rsync://mirror.mcs.anl.gov/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):106
+msgid "Easynews NNTP Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):107
+msgid "http://gentoo.mirrors.easynews.com/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):110
+msgid "University of Illinois-Urbana Champaign"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):111
+msgid "http://gentoo.cites.uiuc.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):112
+msgid "ftp://gentoo.cites.uiuc.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):115
+msgid "Walla Walla University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):116
+msgid "ftp://ftp.wallawalla.edu/pub/mirrors/ftp.gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):119
+msgid "Chemistry Dept, University of Wisconsin at Madison"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):120
+msgid "ftp://gentoo.chem.wisc.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):121
+msgid "http://gentoo.chem.wisc.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):122
+msgid "rsync://gentoo.chem.wisc.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):125
+msgid "Michigan Tech University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):126
+msgid "ftp://lug.mtu.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):127
+msgid "http://lug.mtu.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):130
+msgid "Hoobly Classifieds"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):131
+msgid "http://gentoo.mirrors.hoobly.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):134
+msgid "Fastsoft, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):135
+msgid "ftp://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):136
+msgid "http://chi-10g-1-mirror.fastsoft.net/pub/linux/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):139
+msgid "University of Idaho"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):140
+msgid "ftp://mirror.its.uidaho.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):141
+msgid "http://mirror.its.uidaho.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):144
+msgid "Cyberuse"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):145
+msgid "http://www.cyberuse.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):148
+msgid "University of Delaware, Delaware Linux Users Group"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):149
+msgid "http://mirror.lug.udel.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):150
+msgid "ftp://ftp.lug.udel.edu/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):153
+msgid "Rochester Institute of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):154
+msgid "http://mirrors.rit.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):155
+msgid "ftp://mirrors.rit.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):156
+msgid "rsync://mirrors.rit.edu/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):159
+msgid "University of Northern Iowa"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):160
+msgid "http://gentoo.cs.uni.edu/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):161
+msgid "rsync://gentoo.cs.uni.edu/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):167
+msgid "LocalHost Soluciones Innovadoras"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):168
+msgid "http://gentoo.localhost.net.ar/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):169
+msgid "ftp://mirrors.localhost.net.ar/pub/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):174
+msgid "Laboratory of System Administration"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):175
+msgid "http://www.las.ic.unicamp.br/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):176
+msgid "ftp://ftp.las.ic.unicamp.br/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):179
+msgid "C3SL, Federal University of Paraná"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):180
+msgid "http://gentoo.c3sl.ufpr.br/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):181
+msgid "ftp://gentoo.c3sl.ufpr.br/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):182
+msgid "rsync://gentoo.c3sl.ufpr.br/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):185
+msgid "Laboratório de Computação Científica - UFMG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):186
+msgid "http://gentoo.lcc.ufmg.br"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):187
+msgid "rsync://gentoo.lcc.ufmg.br/gentoo-sources"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):193
+msgid "Inode"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):194
+msgid "http://gentoo.inode.at/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):195
+msgid "ftp://gentoo.inode.at/source/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):198
+msgid "Vienna Univ. of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):199
+msgid "http://gd.tuwien.ac.at/opsys/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):200
+msgid "ftp://gd.tuwien.ac.at/opsys/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):201
+msgid "rsync://gd.tuwien.ac.at/opsys/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):204
+msgid "Lagis"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):205
+msgid "http://gentoo.lagis.at/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):206
+msgid "ftp://gentoo.lagis.at/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):207
+msgid "rsync://gentoo.lagis.at/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):210
+msgid "Wetzlmayr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):211
+msgid "http://gentoo.wetzlmayr.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):217
+msgid "BiHnet ISP, BH Telecom"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):218
+msgid "http://mirror.bih.net.ba/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):219
+msgid "ftp://mirror.bih.net.ba/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):225
+msgid "marla.ludost.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):226
+msgid "http://mirrors.ludost.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):227
+msgid "ftp://mirrors.ludost.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):230
+msgid "gentoo.bg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):231
+msgid "http://distfiles.gentoo.bg/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):232
+msgid "http://ftp.gentoo.bg/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):238
+msgid "Masaryk University Brno"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):239
+msgid "http://ftp.fi.muni.cz/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):240
+msgid "ftp://ftp.fi.muni.cz/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):241
+msgid "rsync://ftp.fi.muni.cz/pub/linux/gentoo/"
+msgstr ""
+
+#. The different hostname is not an error
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):243
+msgid "rsync://ftp6.linux.cz/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):246
+msgid "Advokatni Kancelar Kindl &amp; Partneri"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):247
+msgid "http://gentoo.supp.name/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):250
+msgid "Web4U Mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):251
+msgid "http://gentoo.mirror.web4u.cz/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):252
+msgid "ftp://gentoo.mirror.web4u.cz/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):255
+msgid "UPC Česká republika, a.s."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):256
+msgid "http://gentoo.mirror.dkm.cz/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):257
+msgid "ftp://gentoo.mirror.dkm.cz/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):258
+msgid "rsync://gentoo.mirror.dkm.cz/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):264
+msgid "ftp.klid.dk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):265
+msgid "ftp://ftp.klid.dk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):266
+msgid "http://ftp.klid.dk/ftp/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):272
+msgid "tut.fi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):273
+msgid "http://trumpetti.atm.tut.fi/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):274
+msgid "ftp://trumpetti.atm.tut.fi/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):275
+msgid "rsync://trumpetti.atm.tut.fi/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):281
+msgid "Ovh Hosting Provider"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):282
+msgid "http://mirror.ovh.net/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):283
+msgid "ftp://mirror.ovh.net/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):286
+msgid "IMJ.fr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):287
+msgid "ftp://gentoo.imj.fr/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):290
+msgid "Free"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):291
+msgid "ftp://ftp.free.fr/mirrors/ftp.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):294
+msgid "Linuxant.fr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):295
+msgid "http://mirrors.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):296
+msgid "ftp://mirrors.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):297
+msgid "http://mirrors.ipv6.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):298
+msgid "ftp://mirrors.ipv6.linuxant.fr/distfiles.gentoo.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):301
+msgid "modulix.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):302
+msgid "http://gentoo.modulix.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):308
+msgid "tu-clausthal.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):309
+msgid "ftp://ftp.tu-clausthal.de/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):312
+msgid "rwth-aachen.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):313
+msgid "ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):316
+msgid "Ruhr-Universität Bochum"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):317
+msgid "http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):318
+msgid "ftp://linux.rz.ruhr-uni-bochum.de/gentoo-mirror/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):321
+msgid "Uni Erlangen-Nürnberg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):322
+msgid "http://ftp.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):323
+msgid "ftp://ftp.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):324
+msgid "http://ftp6.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):325
+msgid "ftp://ftp6.uni-erlangen.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):328
+msgid "Uni Muenster/JOIN"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):329
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):340
+msgid "ftp://ftp.join.uni-muenster.de/pub/linux/distributions/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):330
+msgid "rsync://ftp.join.uni-muenster.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):333
+msgid "Dresden University of Technology/AG DSN"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):334
+msgid "ftp://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):337
+msgid "Westfaelische Wilhelms-Universitaet"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):338
+msgid "ftp://ftp.ipv6.uni-muenster.de/pub/linux/distributions/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):339
+msgid "ftp://ftp6.uni-muenster.de/pub/linux/distributions/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):343
+msgid "University of Applied Sciences, Esslingen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):344
+msgid "http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):345
+msgid "ftp://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):346
+msgid "rsync://ftp-stud.hs-esslingen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):349
+msgid "mneisen.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):350
+msgid "http://gentoo.mneisen.org/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):353
+msgid "de-mirror.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):354
+msgid "ftp://de-mirror.org/distro/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):355
+msgid "http://de-mirror.org/distro/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):356
+msgid "rsync://de-mirror.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):359
+msgid "SPLINE, Institut für Informatik, Freie Universität Berlin"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):360
+msgid "ftp://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):361
+msgid "http://ftp.spline.inf.fu-berlin.de/mirrors/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):364
+msgid "Netcologne"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):365
+msgid "ftp://mirror.netcologne.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):366
+msgid "http://mirror.netcologne.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):367
+msgid "rsync://mirror.netcologne.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):370
+msgid "Opteamax UG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):371
+msgid "http://mirror.opteamax.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):372
+msgid "ftp://mirror.opteamax.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):373
+msgid "rsync://mirror.opteamax.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):376
+msgid "RWTH Aachen University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):377
+msgid "http://ftp.halifax.rwth-aachen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):378
+msgid "ftp://ftp.halifax.rwth-aachen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):379
+msgid "rsync://ftp.halifax.rwth-aachen.de/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):385
+msgid "files.gentoo.gr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):386
+msgid "ftp://files.gentoo.gr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):387
+msgid "http://files.gentoo.gr"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):390
+msgid "National Technical University of Athens"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):391
+msgid "ftp://ftp.ntua.gr/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):392
+msgid "http://ftp.ntua.gr/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):395
+msgid "University of Crete"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):396
+msgid "ftp://ftp.cc.uoc.gr/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):397
+msgid "http://ftp.cc.uoc.gr/mirrors/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):403
+msgid "Eotvos Lorand University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):404
+msgid "http://gentoo.inf.elte.hu/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):405
+msgid "ftp://gentoo.inf.elte.hu/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):411
+msgid "RHnet"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):412
+msgid "http://ftp.rhnet.is/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):413
+msgid "ftp://ftp.rhnet.is/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):419
+msgid "HEAnet - Ireland's National Education and Research Network"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):420
+msgid "http://ftp.heanet.ie/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):421
+msgid "ftp://ftp.heanet.ie/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):422
+msgid "rsync://ftp.heanet.ie/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):428
+msgid "KTU ELEN Gentoo Mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):429
+msgid "http://mirror.elen.ktu.lt/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):430
+msgid "ftp://mirror.elen.ktu.lt/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):436
+msgid "Tups.lv"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):437
+msgid "http://gentoo.tups.lv/source/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):443
+msgid "Universiteit Twente"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):444
+msgid "http://ftp.snt.utwente.nl/pub/os/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):445
+msgid "ftp://ftp.snt.utwente.nl/pub/os/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):446
+msgid "rsync://ftp.snt.utwente.nl/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):447
+msgid "http://ftp.snt.ipv6.utwente.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):448
+msgid "rsync://ftp.snt.ipv6.utwente.nl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):449
+msgid "ftp://ftp.snt.ipv6.utwente.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):452
+msgid "Tiscali"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):453
+msgid "http://gentoo.tiscali.nl/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):454
+msgid "ftp://gentoo.tiscali.nl/pub/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):455
+msgid "rsync://gentoo.tiscali.nl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):458
+msgid "Cambrium BV"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):459
+msgid "http://mirror.cambrium.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):460
+msgid "ftp://mirror.cambrium.nl/pub/os/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):461
+msgid "rsync://mirror.cambrium.nl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):464
+msgid "LeaseWeb"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):465
+msgid "http://mirror.leaseweb.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):466
+msgid "ftp://mirror.leaseweb.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):467
+msgid "rsync://mirror.leaseweb.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):473
+msgid "Gentoo.no / Gentoo.se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):474
+msgid "http://mirror.gentoo.no/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):480
+msgid "Vectranet"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):481
+msgid "rsync://ftp.vectranet.pl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):482
+msgid "http://ftp.vectranet.pl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):483
+msgid "ftp://ftp.vectranet.pl/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):486
+msgid "Rzeszow University of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):487
+msgid "rsync://gentoo.prz.rzeszow.pl/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):488
+msgid "http://gentoo.prz.rzeszow.pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):491
+msgid "Technical University of Opole"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):492
+msgid "http://gentoo.po.opole.pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):493
+msgid "ftp://gentoo.po.opole.pl"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):496
+msgid "Warsaw University Of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):497
+msgid "http://gentoo.mirror.pw.edu.pl/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):503
+msgid "Instituto Superior Técnico"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):504
+msgid "http://darkstar.ist.utl.pt/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):505
+msgid "ftp://darkstar.ist.utl.pt/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):506
+msgid "http://ftp.rnl.ist.utl.pt/pub/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):507
+msgid "ftp://ftp.rnl.ist.utl.pt/pub/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):508
+msgid "rsync://ftp.rnl.ist.utl.pt/pub/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):511
+msgid "Universidade do Minho"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):512
+msgid "ftp://cesium.di.uminho.pt/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):513
+msgid "http://cesium.di.uminho.pt/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):516
+msgid "University of Coimbra"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):517
+msgid "ftp://ftp.dei.uc.pt/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):518
+msgid "http://ftp.dei.uc.pt/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):524
+msgid "Romanian Education Network"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):525
+msgid "ftp://ftp.romnet.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):526
+msgid "http://ftp.romnet.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):529
+msgid "Evolva Telecom"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):530
+msgid "http://mirrors.evolva.ro/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):531
+msgid "ftp://mirrors.evolva.ro/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):532
+msgid "rsync://mirrors.evolva.ro/gentoo/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):535
+msgid "xservers.ro Gazduire Web"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):536
+msgid "http://mirrors.xservers.ro/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):542
+msgid "mdfnet.se"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):543
+msgid "ftp://mirror.mdfnet.se/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):544
+msgid "http://mirror.mdfnet.se/mirror/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):547
+msgid "ING-net Umea University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):548
+msgid "ftp://ftp.ing.umu.se/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):549
+msgid "http://ftp.ing.umu.se/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):552
+msgid "DatorSektionen, Jönköping University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):553
+msgid "ftp://ftp.ds.karen.hj.se/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):554
+msgid "http://ftp.ds.karen.hj.se/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):557
+msgid "Lund University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):558
+msgid "ftp://ftp.df.lth.se/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):559
+msgid "http://ftp.df.lth.se/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):560
+msgid "rsync://ftp.df.lth.se/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):566
+msgid "Ynet.sk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):567
+msgid "http://mirror.ynet.sk/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):568
+msgid "ftp://mirror.ynet.sk/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):571
+msgid "Wheel.sk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):572
+msgid "http://gentoo.wheel.sk/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):573
+msgid "ftp://gentoo.wheel.sk/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):576
+msgid "Rainside.sk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):577
+msgid "http://tux.rainside.sk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):578
+msgid "ftp://tux.rainside.sk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):584
+msgid "University of A Corunna Free Software Office"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):585
+msgid "http://ftp.udc.es/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):586
+msgid "ftp://ftp.udc.es/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):587
+msgid "rsync://ftp.udc.es/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):590
+msgid "Politechnic University of Catalonia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):591
+msgid "http://gentoo-euetib.upc.es/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):597
+msgid "SWITCHmirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):598
+msgid "http://mirror.switch.ch/ftp/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):599
+msgid "ftp://mirror.switch.ch/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):605
+msgid "Turkish Linux Users Group - Linux Kullanicilari Dernegi(LKD)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):606
+msgid "ftp://ftp.linux.org.tr/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):607
+msgid "http://ftp.linux.org.tr/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):608
+msgid "rsync://ftp.linux.org.tr/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):614
+msgid "gentoo.kiev.ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):615
+msgid "ftp://gentoo.kiev.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):616
+msgid "http://gentoo.kiev.ua/ftp/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):617
+msgid "rsync://gentoo.kiev.ua/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):620
+msgid "ITEAM gentoo mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):621
+msgid "http://gentoo.iteam.net.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):624
+msgid "gentoo.moskalevskyi.name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):625
+msgid "ftp://gentoo.moskalevskyi.name/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):626
+msgid "http://gentoo.moskalevskyi.name/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):627
+msgid "rsync://gentoo.moskalevskyi.name/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):630
+msgid "Telcom ISP"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):631
+msgid "ftp://gentoo.telcom.net.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):632
+msgid "http://gentoo.telcom.net.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):633
+msgid "rsync://gentoo.telcom.net.ua/gentoo-mirror"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):636
+msgid "portage.org.ua"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):637
+msgid "ftp://portage.org.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):638
+msgid "http://portage.org.ua/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):644
+msgid "Bytemark Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):645
+msgid "ftp://mirror.bytemark.co.uk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):646
+msgid "http://mirror.bytemark.co.uk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):647
+msgid "rsync://mirror.bytemark.co.uk/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):650
+msgid "The UK Mirror Service"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):651
+msgid "http://www.mirrorservice.org/sites/www.ibiblio.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):652
+msgid "ftp://ftp.mirrorservice.org/sites/www.ibiblio.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):653
+msgid "rsync://rsync.mirrorservice.org/www.ibiblio.org/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):656
+msgid "Qube Managed Services"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):657
+msgid "http://mirror.qubenet.net/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):658
+msgid "ftp://mirror.qubenet.net/mirror/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):661
+msgid "Virgin Media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):662
+msgid "http://gentoo.virginmedia.com/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):663
+msgid "ftp://gentoo.virginmedia.com/sites/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):676
+msgid "Swinburne University of Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):677
+msgid "ftp://ftp.swin.edu.au/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):678
+msgid "http://ftp.swin.edu.au/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):684
+msgid "Xiamen University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):685
+msgid "ftp://mirrors.xmu.edu.cn/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):686
+msgid "http://mirrors.xmu.edu.cn/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):687
+msgid "rsync://mirrors.xmu.edu.cn/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):690
+msgid "Sohu.inc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):691
+msgid "ftp://mirrors.sohu.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):692
+msgid "http://mirrors.sohu.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):695
+msgid "Netease.com, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):696
+msgid "http://mirrors.163.com/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):702
+msgid "aditsu.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):703
+msgid "http://gentoo.aditsu.net/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):709
+msgid "idREPO, Indonesian FOSS Repository"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):710
+msgid "http://gentoo.idrepo.or.id/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):716
+msgid "gg3.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):717
+msgid "http://gentoo.gg3.net/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):718
+msgid "ftp://gg3.net/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):721
+msgid "ChannelX.biz"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):722
+msgid "http://gentoo.channelx.biz/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):725
+msgid "Japan Advanced Institute of Science and Technology"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):726
+msgid "http://ftp.jaist.ac.jp/pub/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):727
+msgid "rsync://ftp.jaist.ac.jp/pub/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):728
+msgid "ftp://ftp.jaist.ac.jp/pub/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):731
+msgid "Internet Initiative Japan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):732
+msgid "rsync://ftp.iij.ad.jp/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):733
+msgid "http://ftp.iij.ad.jp/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):734
+msgid "ftp://ftp.iij.ad.jp/pub/linux/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):740
+msgid "KAIST"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):741
+msgid "http://ftp.kaist.ac.kr/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):742
+msgid "ftp://ftp.kaist.ac.kr/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):745
+msgid "lecl.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):746
+msgid "http://ftp.lecl.net/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):747
+msgid "ftp://ftp.lecl.net/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):750
+msgid "Daum Communications Corp"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):751
+msgid "http://ftp.daum.net/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):757
+msgid "Multimedia University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):758
+msgid "http://archive.mmu.edu.my/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):764
+msgid "Yandex.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):765
+msgid "http://mirror.yandex.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):766
+msgid "ftp://mirror.yandex.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):769
+msgid "Bloodhost.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):770
+msgid "http://gentoo.bloodhost.ru/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):771
+msgid "ftp://gentoo.bloodhost.ru/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):772
+msgid "rsync://gentoo.bloodhost.ru/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):775
+msgid "corbina.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):776
+msgid "http://mirror2.corbina.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):777
+msgid "ftp://mirror2.corbina.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):778
+msgid "rsync://mirror2.corbina.ru/gentoo-distfiles/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):781
+msgid "xeon.gentoo.ru"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):782
+msgid "ftp://xeon.gentoo.ru/mirrors/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):783
+msgid "rsync://xeon.gentoo.ru/gentoo-distfiles"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):789
+msgid "gentoo.in.th"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):790
+msgid "http://gentoo.in.th/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):791
+msgid "ftp://gentoo.in.th/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):797
+msgid "National Center for High-Performance Computing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):798
+msgid "http://ftp.twaren.net/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):799
+msgid "ftp://ftp.twaren.net/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):802
+msgid "National Chi Nan University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):803
+msgid "ftp://ftp.ncnu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):804
+msgid "http://ftp.ncnu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):807
+msgid "Providence University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):808
+msgid "ftp://ftp.cs.pu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):809
+msgid "http://ftp.cs.pu.edu.tw/Linux/Gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):812
+msgid "National Chiao Tung University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):813
+msgid "ftp://gentoo.cs.nctu.edu.tw/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):814
+msgid "http://gentoo.cs.nctu.edu.tw/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):820
+msgid "Hamakor FOSS Society"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):821
+msgid "http://mirror.isoc.org.il/pub/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):822
+msgid "ftp://mirror.isoc.org.il/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):828
+msgid "KEMS-Zajil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):829
+msgid "http://gentoo.kems.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):830
+msgid "ftp://gentoo.kems.net/mirrors/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(name):836
+msgid "Neo Lab's"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):837
+msgid "http://mirror.neolabs.kz/gentoo/pub"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):838
+msgid "ftp://mirror.neolabs.kz/gentoo/pub"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(uri):839
+msgid "rsync://mirror.neolabs.kz/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):844
+msgid "Argentina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):845
+msgid "Austria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):846
+msgid "Australia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):847
+msgid "Bosnia and Herzegovina"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):848
+msgid "Bulgaria"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):849
+msgid "Brazil"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):850
+msgid "Bahamas"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):851
+msgid "Canada"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):852
+msgid "Switzerland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):853
+msgid "China"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):854
+msgid "Czech Republic"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):855
+msgid "Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):856
+msgid "Denmark"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):857
+msgid "Estonia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):858
+msgid "Spain"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):859
+msgid "Finland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):860
+msgid "France"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):861
+msgid "Greece"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):862
+msgid "Hong Kong"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):863
+msgid "Hungary"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):864
+msgid "Indonesia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):865
+msgid "Ireland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):866
+msgid "Israel"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):867
+msgid "Iceland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):868
+msgid "Italy"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):869
+msgid "Japan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):870
+msgid "South Korea"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):871
+msgid "Kuwait"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):872
+msgid "Kazakhstan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):873
+msgid "Lithuania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):874
+msgid "Latvia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):875
+msgid "Malaysia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):876
+msgid "Netherlands"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):877
+msgid "Norway"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):878
+msgid "Poland"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):879
+msgid "Portugal"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):880
+msgid "Romania"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):881
+msgid "Russia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):882
+msgid "Sweden"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):883
+msgid "Singapore"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):884
+msgid "Slovakia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):885
+msgid "Thailand"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):886
+msgid "Turkey"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):887
+msgid "Taiwan"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):888
+msgid "Ukraine"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):889
+msgid "UK"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(country):890
+msgid "USA"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//mirrors3.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/name-logo.xml.po b/main/gettext/ru/name-logo.xml.po
new file mode 100644
index 0000000..47723f5
--- /dev/null
+++ b/main/gettext/ru/name-logo.xml.po
@@ -0,0 +1,278 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(guide:link):6
+msgid "/main/en/name-logo.xml"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(guide:lang):6
+msgid "en"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):7
+msgid "Gentoo Name and Logo Usage Guidelines"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(author):9
+msgid "The Gentoo Foundation"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(abstract):13
+msgid "This document covers the guidelines on the Gentoo Name and Logo usage."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(version):21
+msgid "1.8"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(date):22
+msgid "2005-12-11"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):25
+msgid "Preliminaries"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):29
+msgid ""
+"This document describes proper use of the Gentoo name, the \"g\" logo and "
+"any other associated marks for software and computer-related efforts that "
+"are not under the direction of the Gentoo Foundation, Inc. If you have any "
+"questions about these guidelines, please contact <mail link="
+"\"trustees@gentoo.org\">Gentoo Foundation, Inc.</mail>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):37
+msgid ""
+"Gentoo Foundation, Inc. reserve the right to change these terms from time to "
+"time at their sole discretion. For that reason, we encourage you to review "
+"this statement periodically."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):48
+msgid "Definitions"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):50
+msgid "The Gentoo project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):53
+msgid ""
+"The volunteer development efforts currently directed by Gentoo Foundation, "
+"Inc., a not-for-profit corporation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):61
+msgid "Content produced by the Gentoo project"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):64
+msgid "Any content that is copyright Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):71
+msgid "The \"g\" logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(fig:link):74
+msgid "/images/glogo-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):79
+msgid "Gentoo artwork"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):82
+msgid ""
+"All artwork produced by <e>the Gentoo project</e> (see above definition)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):89
+msgid "Gentoo community site"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):92
+msgid ""
+"A non-profit website whose primary objective is to provide any Gentoo user "
+"with additional information on Gentoo and Gentoo-related topics."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):102
+msgid "Ownership of marks"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):106
+msgid ""
+"The name \"Gentoo\" and the \"g\" logo are currently trademarks of Gentoo "
+"Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):116
+msgid "Use of Gentoo name"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):120
+msgid ""
+"You are permitted to use the Gentoo name in computer-related content, "
+"provided that:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):126
+msgid ""
+"You acknowledge that the name \"Gentoo\" is a trademark of Gentoo "
+"Foundation, Inc., and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):130
+msgid ""
+"you do not entitle any software project or computer-related product \"Gentoo"
+"\" or have \"Gentoo\" appear within its name, and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):134
+msgid ""
+"the fully-qualified domain name for your software project or computer-"
+"related products does not contain \"Gentoo\", and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(e):139
+msgid ""
+"you clearly state that the content, project, site, product or any other type "
+"of item with which the \"Gentoo\" name is associated is not part of the "
+"Gentoo project and is not directed or managed by Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):147
+msgid ""
+"We do not consider these restrictions to apply to the <uri link=\"http://www."
+"obsession.se/gentoo/\">Gentoo file manager</uri> project, developed by Emil "
+"Bink, as it is not an operating system project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):158
+msgid "Use of Gentoo Logo and artwork"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):162
+msgid ""
+"You are permitted to use the Gentoo \"g\" logo and artwork copyright Gentoo "
+"Foundation, Inc. (hereafter called \"Gentoo artwork\") under the following "
+"conditions:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):171
+msgid "Commercial Use"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):174
+msgid ""
+"Commercial use of the Gentoo \"g\" logo and Gentoo artwork is allowed for "
+"<e>any software or computer hardware product</e> that <e>contains</e> or is "
+"<e>based upon</e> content produced by the Gentoo project, or any project or "
+"service referencing Gentoo or the Gentoo Project, provided that the "
+"following conditions are met:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):183
+msgid ""
+"You acknowledge that the \"g\" logo is a trademark of Gentoo Foundation, "
+"Inc. and that any Gentoo artwork is copyright Gentoo Foundation, Inc., and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):187
+msgid ""
+"the artwork used is <e>not</e> the primary (largest) mark displayed on the "
+"product, and is thus intended to convey that the product contains \"content "
+"produced by the Gentoo project\", but is <e>not itself a product being sold "
+"or supported</e> by Gentoo Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(e):196
+msgid ""
+"Commercial use of the Gentoo \"g\" logo and Gentoo artwork for any other "
+"purpose is expressly denied."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):205
+msgid "Non-Commercial Use"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):208
+msgid ""
+"Non-commercial use of the \"g\" logo and Gentoo artwork is permitted "
+"provided that the following conditions are met:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):214
+msgid ""
+"You acknowledge that the \"g\" logo is a trademark of Gentoo Foundation, "
+"Inc., and that any Gentoo artwork is copyright Gentoo Foundation, Inc, and,"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):218
+msgid ""
+"the \"g\" logo and Gentoo artwork are used in content that pertain to \"the "
+"Gentoo project\", as directed by the Gentoo Foundation, Inc., and not any "
+"effort outside or beyond the authority of the Gentoo Foundation, Inc., and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(e):224
+msgid ""
+"you clearly state that the content, project, site, product or any other type "
+"of item with which the \"g\" logo or Gentoo artwork is associated is not "
+"part of the Gentoo project and is not directed or managed by Gentoo "
+"Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(title):238
+msgid "Gentoo Community Projects"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):242
+msgid ""
+"Gentoo Foundation, Inc. grant Gentoo community sites, as defined above, the "
+"right to use the Gentoo name in their project name and fully qualified "
+"domain name provided that:"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):249
+msgid ""
+"the website clearly states, on each page, that the project is no official "
+"Gentoo project by labelling itself as a \"news site\", \"fan site\", "
+"\"unofficial site\" or \"community site\", and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):254
+msgid ""
+"the website does not closely mimic the name or layout of one of our official "
+"websites, and"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(li):258
+msgid ""
+"you acknowledge that the name \"Gentoo\" is a trademark of Gentoo "
+"Foundation, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(p):264
+msgid ""
+"Any other use of the Gentoo name, logo and artwork remains bound by the "
+"beforementioned guidelines."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//name-logo.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/philosophy.xml.po b/main/gettext/ru/philosophy.xml.po
new file mode 100644
index 0000000..89a3f8c
--- /dev/null
+++ b/main/gettext/ru/philosophy.xml.po
@@ -0,0 +1,97 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(title):6
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(title):24
+msgid "The Philosophy of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(author:title):7
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail:link):8
+msgid "drobbins@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail):8
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(author:title):10
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail:link):11
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(mail):11
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(abstract):14
+msgid "This document explains the philosophy behind Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(version):20
+msgid "1.3"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(date):21
+msgid "2006-04-30"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):28
+msgid ""
+"Every user has work they need to do. The goal of Gentoo is to design tools "
+"and systems that allow a user to do that work as pleasantly and efficiently "
+"as possible, as <e>they</e> see fit. Our tools should be a joy to use, and "
+"should help the user to appreciate the richness of the Linux and free "
+"software community, and the flexibility of free software. This is only "
+"possible when the tool is designed to reflect and transmit the will of the "
+"user, and leave the possibilities open as to the final form of the raw "
+"materials (the source code.) If the tool forces the user to do things a "
+"particular way, then the tool is working against, rather than for, the user. "
+"We have all experienced situations where tools seem to be imposing their "
+"respective wills on us. This is backwards, and contrary to the Gentoo "
+"philosophy."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):42
+msgid ""
+"Put another way, the Gentoo philosophy is to create better tools. When a "
+"tool is doing its job perfectly, you might not even be very aware of its "
+"presence, because it does not interfere and make its presence known, nor "
+"does it force you to interact with it when you don't want it to. The tool "
+"serves the user rather than the user serving the tool."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):50
+msgid ""
+"The goal of Gentoo is to strive to create near-ideal tools. Tools that can "
+"accommodate the needs of many different users all with divergent goals. "
+"Don't you love it when you find a tool that does exactly what you want to "
+"do? Doesn't it feel great? Our mission is to give that sensation to as many "
+"people as possible."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(p):58
+msgid "Daniel Robbins<br/> Previous Chief Architect"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//philosophy.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/projects.xml.po b/main/gettext/ru/projects.xml.po
new file mode 100644
index 0000000..b0e66d7
--- /dev/null
+++ b/main/gettext/ru/projects.xml.po
@@ -0,0 +1,85 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(title):5
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(title):22
+msgid "Gentoo Linux Projects"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(author:title):7
+msgid "Previous Chief Architect"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(mail:link):8
+msgid "drobbins@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(mail):8
+msgid "Daniel Robbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(abstract):11
+msgid ""
+"This page lists development projects that are not specifically Gentoo Linux-"
+"related."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(version):18
+msgid "1.5"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(date):19
+msgid "2010-04-26"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):26
+msgid ""
+"<b><uri link=\"/proj/en/releng/catalyst/\">Catalyst</uri></b> is the tool "
+"used by the Release Engineering team to create all Gentoo releases. Catalyst "
+"is capable of creating installation stages, GRP sets, and bootable LiveCDs."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):32
+msgid ""
+"<b><uri link=\"/proj/en/infrastructure/tenshi/\">Tenshi</uri></b> is a log "
+"monitoring program, designed to watch one or more log files for lines "
+"matching user defined regular expression and report on the matches. The "
+"regular expressions are assigned to queues which have an alert interval and "
+"a list of mail recipients."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):40
+msgid ""
+"<b><uri link=\"/proj/en/dynfw.xml\">The dynfw firewall scripts</uri></b> are "
+"a collection of netfilter-based (<c>iptables</c>) firewall scripts designed "
+"to allow for an immediate, measured response against pending security "
+"threats. These <c>bash</c> scripts have been designed to work with nearly "
+"any netfilter-based firewall (including both \"allow by default\" and \"deny "
+"by default\" configurations)."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(p):49
+msgid ""
+"<b><uri link=\"/proj/en/site.xml\">The XML projects page</uri></b> contains "
+"the complete <c>guide</c> XSLT engine that is used to create this entire "
+"site, including the main pages and online documentation. On this page, you "
+"can find a tarball that contains the complete sources that were used to "
+"generate the latest version of the <uri>http://www.gentoo.org</uri> Web site "
+"-- the one you are viewing now."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//projects.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/shots.xml.po b/main/gettext/ru/shots.xml.po
new file mode 100644
index 0000000..41e5095
--- /dev/null
+++ b/main/gettext/ru/shots.xml.po
@@ -0,0 +1,253 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):6
+msgid "Gentoo Linux Screenshots"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):8
+msgid "Previous Chief Architect"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(mail:link):9
+msgid "drobbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):11
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):14
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):15
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(mail:link):12
+msgid "swift"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author):14
+msgid "Sergey Kuleshov"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(mail:link):16
+msgid "dabbott"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(abstract):19
+msgid "Screenshots of Gentoo Linux in action."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(version):27
+msgid "1.44"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(date):28
+msgid "2010-08-10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):41
+msgid "Here they are... click for larger PNG versions!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):44
+msgid "Disclaimer"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):47
+msgid ""
+"The screenshots on this page are contributed by various Gentoo users. "
+"Information about the themes used, background images, etc. is not available "
+"through Gentoo. You will need to contact the author of the screenshot (if "
+"you can find this person) for more information."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):54
+msgid ""
+"You can always try locating the authors on our #gentoo chat channel on irc."
+"freenode.net or through the <uri link=\"http://forums.gentoo.org\">Gentoo "
+"Forums</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):64
+msgid "E17 EFL overlay (Chopinzee)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):71
+msgid ""
+"The window manager is E17, built from the official EFL overlay with <c>itask-"
+"ng</c>. The window manager theme is A-SBlack2.edj for the main, grey.edj for "
+"the clock, and detour-glossy-red.edj for the <c>itask-ng</c> bar. The "
+"wallpaper is Black_wall.edj <c>gimp</c>ed to properly render at 1920x1080. "
+"The terminals are <c>x11-terms/terminal</c>, GTK theme is \"crude.\" The "
+"application running in the busy shot is <c>mixxx</c>. The compositor is "
+"<c>ecomp</c> with the <c>ecomorph</c> module. The icons on the <c>itask-ng</"
+"c> bar are \"Token Light.\""
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):82
+msgid "/images/shots/chopinzee-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):88
+msgid "Simple is Beautiful (whtwtr)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):95
+msgid ""
+"Simple is beautiful <e>but</e> it must be functional and provide the user "
+"with tangible information."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):100
+msgid ""
+"Shawn's box currently runs <c>compiz</c> as the window manager with <c>xfce4-"
+"panel</c>. The wallpaper is plain old #000000 (black). Two <c>app-admin/"
+"conky-1.8.0</c> instances render the desktop eye-candy. The first <c>conky</"
+"c> instance powers the ring meters. The rings represent cpu usage (large "
+"white rings), memory usage (green ring), and file system usage (yellow "
+"rings). The second <c>conky</c> instance runs the bottom info bar with "
+"uptime, temps, up/download speeds, calendar and curent time. The globe image "
+"is taken from die.net and is a \"Mollweide\" projection of the earth's day/"
+"night shadow and He uses <c>cron</c> plus a small script to update the image "
+"every hour. (The clouds are updated every three hours.) Cool, eh?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):113
+msgid "/images/shots/whtwtr-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):119
+msgid "Xfce from the xfce-dev overlay (GentooApologetin)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):126
+msgid ""
+"Mona's custom Xfce environment is from the xfce-dev overlay. It's on an "
+"~amd64 desktop running <c>compiz-fusion</c>, modded Salmon gtk2 theme, "
+"recolored Humanity Colors icon theme, <c>conky</c> and <c>pcmanfm2</c> for "
+"the desktop, <c>lxterminal</c> and a fine-tuned claws-mail instance. It's "
+"completely lightweight and runs stable enough as her everyday main system."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):134
+msgid "/images/shots/mona-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):140
+msgid "Gnome Lover's Dream (shpaq)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):147
+msgid ""
+"The judges liked Michał's balance between icon theme, background, custom "
+"<c>conky</c> fonts and the whole look of his desktop."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):152
+msgid "/images/shots/shpaq-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):158
+msgid "Simple Elegance (nm)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):165
+msgid ""
+"The window manager is <c>dwm</c>. Terminal emulator: <c>urxvt</c>. "
+"Wallpaper: of unknown origin. Font: Proggy Tiny Slashed Zero."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):170
+msgid "/images/shots/nm-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):176
+msgid "(Almost) default GNOME"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):179
+msgid ""
+"Bartek's shot is another of the screenshot contest winners. Bartek got this "
+"decent look by using the depth illusion of a 3D wallpaper along with clever "
+"arrangement of pretty icons. This is good example of how a default theme can "
+"be used to create a beautiful screenshot."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):186
+msgid "/images/shots/gnome-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):192
+msgid "Elegant black WM"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):195
+msgid ""
+"Another winner of Gentoo Screenshot Contest is Mikołaj, a.k.a. mklimek, who "
+"is a KDE user so far, and he doesn't intend to change desktops. On his "
+"screenshot you can see some KDE utilities and icons . . . which looks kinda "
+"Gnome-like."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):201
+msgid "/images/shots/rash-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):207
+msgid "Space trip"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):210
+msgid ""
+"Robert's screenshot demonstrates an appealing use of blue hues. Excluding "
+"<c>cairo-clock</c>, his KDE runs only Qt-based applications: <c>kopete</c>, "
+"<c>konsole</c>, and <c>amarok</c>. Robert also cares about his <c>irssi</c> "
+"theme, which is distinguished by green colors."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):217
+msgid "/images/shots/sshotpw4-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):223
+msgid "Even more gentooish"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):226
+msgid ""
+"That is probably the most \"Gentooish\" screenshot here ever and personally "
+"for me it is the most beautiful. Alexander runs Gnome with the Lila icon "
+"set, which not only looks pretty but also befits a Gentoo workstation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):232
+msgid "/images/shots/Bildschirmfoto-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):238
+msgid "Emerge that!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):241
+msgid ""
+"As you can tell, Massimiliano is going to build <c>media-video/dvdauthor</c> "
+"on his KDE box."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):246
+msgid "/images/shots/darkgentoo2sf2-small.png"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/sponsors.xml.po b/main/gettext/ru/sponsors.xml.po
new file mode 100644
index 0000000..03f6137
--- /dev/null
+++ b/main/gettext/ru/sponsors.xml.po
@@ -0,0 +1,826 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):7
+msgid "Gentoo Sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):9
+msgid "Present author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):10
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):12
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):15
+msgid "Past author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):13
+msgid "klieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):16
+msgid "swift"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):18
+msgid "Past editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):19
+msgid "curtis119"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(abstract):22
+msgid "Sponsors of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(version):27
+msgid "2.13"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(date):28
+msgid "2010-09-28"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):31
+msgid "Hosting Sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):36
+msgid ""
+"Gentoo would like to thank the following companies and organizations who "
+"donate various services and equipment to further the development of Gentoo. "
+"Without these organizations, Gentoo would not be where it is today."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):47
+msgid "Oregon State University: Open Source Lab (OSUOSL)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):52
+msgid "/images/sponsors/osu-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):52
+msgid "Oregon State University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):54
+msgid "/images/sponsors/osuosl-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):54
+msgid "OSU Open Source Lab"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):55
+msgid ""
+"Located at <uri link=\"http://oregonstate.edu\">Oregon State University</"
+"uri> in beautiful Corvallis, Oregon, the <uri link=\"http://osuosl.org"
+"\">Open Source Lab</uri> is a focal point of development, hosting and other "
+"assorted services for the Open Source community."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):61
+msgid ""
+"OSU provides several services to the Gentoo project. In addition to serving "
+"as the primary source mirror for Gentoo, they also provide colocation space "
+"for several Gentoo servers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):71
+msgid "Indiana University (IU)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):74
+msgid "/images/sponsors/iu-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):74
+msgid "Indiana University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):75
+msgid ""
+"Indiana University was founded in Bloomington, Indiana in 1820. The "
+"University has since then grown to eight campuses across Indiana, with a "
+"total enrollment reaching 100,000 graduate and undergraduate students. IU "
+"offers 116 academic programs that are ranked in the nation's top 20. There "
+"are over 460,000 IU alumni worldwide."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):82
+msgid ""
+"Indiana University provides colocation for Gentoo infrastructure servers, as "
+"well as a high volume source and portage mirror."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):92
+msgid "Neustar UltraDNS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):95
+msgid "/images/sponsors/neustar-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):95
+msgid "NeuStar UltraDNS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):96
+msgid ""
+"Neustar's UltraDNS provides advanced, highly intelligent, and globally "
+"scalable directory service solutions that significantly enhance the "
+"performance and reliability of networks and mission critical information-"
+"exchange applications."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):101
+msgid ""
+"Neustar provides DNS hosting services to the Gentoo project, including "
+"advanced features like <uri link=\"http://www.ultradns.com/solutions/"
+"directionaldns.html\">Directional DNS</uri> to provide load-balanced DNS "
+"services for our rsync.gentoo.org pool of rsync servers, and <uri link="
+"\"http://www.ultradns.com/solutions/sitebacker.html\">SiteBacker</uri> to "
+"provide server health monitoring and failover capabilities to our core "
+"infrastructure servers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):116
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):119
+msgid "Global Netoptex, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):119
+msgid "/images/sponsors/gni_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):120
+msgid ""
+"GNi is a leading provider of customer-centric managed services that extend "
+"their customer's infrastructure and dramatically reduce their customer's "
+"total cost of ownership. They provide the experts, resources and solutions "
+"to meet and exceed their customer's unique on-site and off-site requirements."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):131
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):134
+msgid "Bytemark Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):134
+msgid "/images/sponsors/bytemark_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):135
+msgid ""
+"Bytemark Hosting provide Gentoo Linux with servers and services which drive "
+"our network of global mirrors. They are a leading Internet Service Provider "
+"(ISP) in the United Kingdom and provide scalable, powerful and affordable "
+"hosting with lots of \"geek friendly\" extras as standard. They've deployed "
+"Gentoo Linux within their network to provide a flexible solution to "
+"difficult problems, such as providing a network rescue environment for all "
+"dedicated hosts."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):148
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):151
+msgid "Hyves.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):151
+msgid "/images/sponsors/hyves-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):152
+msgid ""
+"Hyves provides Gentoo Linux with servers and hosting for the Bugzilla "
+"cluster. They are a cutting-edge European social network, and run <uri link="
+"\"http://www.gentoo.org/news/en/gmn/20080424-newsletter.xml#doc_chap3\"> "
+"Gentoo on 1800+ servers</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):163
+msgid "Euro-Web/SD-France"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):166
+msgid "/images/sponsors/sdfrance-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):166
+msgid "gentoo dedicated servers provided by euro-web.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):167
+msgid ""
+"Founded in 2003, Euro-WEB/SD-France provides advanced outsourcing solutions; "
+"leasing and hosting of dedicated servers; development and customized "
+"services for SME to large corporate clients. Coupled with best prices and "
+"outstanding customers support, Euro-Web/SD-France has over 5,000 customers "
+"and 850 managed servers. Euro-Web/SD-France supports the Gentoo project by "
+"providing them a number of powerful dedicated servers coupled with strong "
+"IPv6 connectivity."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):180
+msgid "SevenL Networks"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):183
+msgid "/images/sponsors/sevenl_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):183
+msgid "SevenL.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):184
+msgid ""
+"SevenL Networks Inc. is a world leader in <uri link=\"https://www.sevenl.net/"
+"managed-hosting\">managed hosting</uri>, <uri link=\"https://www.sevenl.net/"
+"dedicated-server\">dedicated server</uri>, <uri link=\"https://www.sevenl."
+"net/vps-hosting\">VPS hosting</uri> and data center solutions. SevenL has "
+"been proudly donating dedicated servers services to Gentoo Linux since 2004. "
+"In addition, they donate a series of dedicated hosting servers to CentOS, "
+"Linux Mint, Arch Linux and a number of other open source communities that "
+"rely on sponsorship to succeed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):200
+msgid "TOP-IX &amp; Fastbull"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):203
+msgid "/images/sponsors/topix-fastbull-400x125.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):203
+msgid "TOP-IX Fastbull"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):204
+msgid ""
+"<uri link=\"http://www.top-ix.org\">TOP-IX</uri> (TOrino Piemonte Internet "
+"eXchange) is a non-profit consortium set up in 2002 with the aim of creating "
+"and managing a NAP (Neutral Access Point) for the exchange of Internet "
+"traffic in North West Italy. Starting from 2006 TOP-IX directly supports "
+"start-ups and entrepreneurial environment with the <uri link=\"http://www."
+"top-ix.org/development-program\">Development Program</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):211
+msgid ""
+"<uri link=\"http://www.fastbull.org/\">Fastbull</uri> association aims at "
+"supporting and promoting opensource software and free contents by means of "
+"mirroring services."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):215
+msgid "TOP-IX and Fastbull together foster broadband and open source culture."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):222
+msgid "Tek Alchemy"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):224
+msgid ""
+"<uri link=\"http://tek.net/\">Tek Alchemy, Inc.</uri>, located in Austin, "
+"Texas provides dedicated servers, VPS, managed servers and colocation in the "
+"US. They host many Open Source Projects on dedicated servers including "
+"Gentoo. They cater the the \"geek\" customer, providing stock or custom "
+"hardware, custom operating system installations or \"do it yourself\" "
+"installations. They offer dedicated servers with the operating system of "
+"your choice, including Gentoo, Debian, CentOS, Ubuntu, Fedora and more."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):238
+msgid "HardStyle GmbH: Edurium, Online Kredit Index, Fern Studiengang"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):240
+msgid ""
+"HardStyle GmbH is a small development shop with diverse interests. They "
+"follow their hearts and personal credos in working to continuously secure "
+"the freedom of Open Source Projects for all users. They greatly appreciate "
+"the value of Gentoo and understand the necessity of supporting both "
+"developers and infrastructure."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):247
+msgid ""
+"Find the best providers in Germany in distance learning at <uri link="
+"\"http://www.fern-studiengang.de/\">Fern Studiengang</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):252
+msgid "/images/sponsors/edurium-big.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):252
+msgid "Edurium"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):253
+msgid ""
+"<uri link=\"http://www.edurium.de/\">edurium</uri> - the education portal is "
+"a German education portal."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):258
+msgid "/images/sponsors/online-kredit-index.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):258
+msgid "Online Kredit Index"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):259
+msgid ""
+"<uri link=\"http://www.online-kredit-index.de/\">Online Kredit Index</uri> "
+"is a German finance service provider."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):268
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):271
+msgid "Hetzner Online AG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):271
+msgid "/images/sponsors/hetzner-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):272
+msgid ""
+"<uri link=\"http://www.hetzner.de/\">Hetzner Online</uri> is one of the "
+"leading webhosting companies and datacenter operators in Germany. We offer "
+"powerful dedicated hosting solutions, colocation, webspace, domains, SSL "
+"certificates and search engine entries. Coupled with best prices and "
+"outstanding support, Hetzner Online surpass customers' expectations around "
+"the world. Hetzner Online supports the Gentoo project with a powerful "
+"dedicated server."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):285
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):288
+msgid "WebHosting.UK.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):288
+msgid "/images/sponsors/web-hosting-uk.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):289
+msgid ""
+"Founded in 2001, WebHosting UK offers cheap and affordable Gentoo Linux "
+"Dedicated Servers in UK. Webhosting UK also provides fully managed Shared "
+"hosting, Reseller Hosting, Semi Dedicated Hosting and Virtual Private "
+"Servers with all important features such as 24x7x365 technical support, "
+"99.95% Uptime Guarantee included as standard."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):302
+msgid "University of Virginia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):305
+msgid "/images/sponsors/virginia-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):305
+msgid "University of Virginia Logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):306
+msgid ""
+"University of Virginia hosts quite a few Alpha boxes used by the Gentoo/"
+"Alpha developers for building new Gentoo releases as well as daily work such "
+"as keyword testing and security bumps."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):317
+msgid "HP"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):320
+msgid "/images/sponsors/hp-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):320
+msgid "HP OpenSource Logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):321
+msgid ""
+"HP is a technology solutions provider to consumers, businesses and "
+"institutions globally. HP has over 200 products that ship with open source "
+"software. From client to server to data center, HP is contributing to "
+"hundreds of open source projects every day. For more information about HP's "
+"open source involvement, check out <uri link=\"http://opensource.hp.com/"
+"\">http://opensource.hp.com/</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):329
+msgid ""
+"HP provides R&amp;D resources and has loaned and hosted Alpha and IA64 "
+"hardware for the Gentoo project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):340
+msgid "Specific donations"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):344
+msgid ""
+"Gentoo would like to thank the following companies and organizations who "
+"have made specific donations to further the development of Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):353
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):356
+msgid "Opengear"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):356
+msgid "/images/sponsors/opengear-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):357
+msgid ""
+"<uri link=\"http://www.opengear.com/\">Opengear</uri> designs and "
+"manufactures next generation console server solutions for secure remote "
+"access and control of network devices such as routers, switches, servers, "
+"firewalls, uninterruptable power supplies, power distribution units and "
+"environmental monitoring devices. The mission of Opengear is to be a leading "
+"supplier and thought leader in open source technologies for infrastructure "
+"management and an innovative developer of next generation console server and "
+"power management solutions. Opengear have donated a number of console "
+"servers to Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):372
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):375
+msgid "NVIDIA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):375
+msgid "/images/sponsors/nvidia-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):376
+msgid ""
+"NVIDIA Corporation (Nasdaq: NVDA) is a market leader in visual computing "
+"technology dedicated to creating products that enhance the digital media "
+"experience on consumer and professional computing platforms, from desktops "
+"and workstations to notebooks and handhelds. The company's graphics and "
+"communications processors have broad market reach and are incorporated into "
+"a wide variety of computing platforms, including consumer PCs, enterprise "
+"PCs, professional workstations, digital content creation systems, military "
+"navigation systems and video game consoles."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):388
+msgid ""
+"NVIDIA has provided the Gentoo project with numerous AMD development "
+"machines and video cards to further development of Gentoo on the Athlon XP "
+"and Athlon64 platforms."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):399
+msgid "Cloanto"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):401
+msgid ""
+"<uri link=\"http://www.amigaforever.com/\">Cloanto</uri> has donated the "
+"<uri link=\"http://www.amigaforever.com/\">Amiga Forever CD</uri> to support "
+"development and maintenance of Amiga emulation software in Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):411
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):413
+msgid "OSTC"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):413
+msgid "/images/sponsors/ostc-banner.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):414
+msgid ""
+"<uri link=\"http://ostc.pl/\">OSTC</uri> is the first and largest "
+"proprietary derivatives trading company in Poland. They push the boundaries "
+"of global market electronic trading using Gentoo and Open Source software as "
+"a integral components."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):423
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):426
+msgid "Genesi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):426
+msgid "/images/sponsors/genesi_logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):427
+msgid ""
+"Genesi is a leading provider of Freescale and IBM PowerPC based computing "
+"products. Genesi's <uri link=\"http://www.pegasosppc.com\">PegasosPPC "
+"MicroATX computer</uri> is designed to bring PowerPC technology flexibility "
+"and efficiency to the desktop, low-end server and pervasive market segments "
+"at an affordable price. Beginning with the 2004.3 release, the Open Desktop "
+"Workstation will ship with Gentoo pre-installed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):436
+msgid ""
+"<uri link=\"http://www.genesi.lu\">Genesi</uri> has provided many PowerPC "
+"based <uri link=\"http://www.pegasosppc.com/odw.php\">Open Desktop "
+"Workstations</uri> to Gentoo. For information about Genesi's involvement in "
+"the Linux Open Source community, please see <uri link=\"http://www.ppczone."
+"org\">www.PPCZone.org</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):449
+msgid "DataRescue"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):452
+msgid "/images/sponsors/datarescue-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):452
+msgid "DataRescue logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):453
+msgid ""
+"DataRescue is the developer of the IDA Pro Disassembler &amp; Debugger, an "
+"essential tool for vulnerability research and hostile binary analysis. "
+"DataRescue runs several of its public servers and its main internal server "
+"on Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):460
+msgid "DataRescue has donated software to the Gentoo Audit Team."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):472
+msgid "Past sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):476
+msgid ""
+"Gentoo would like to extend a special thanks to all of our past sponsors."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):478
+msgid ""
+"If your organization previously has sponsored Gentoo, and was accidently "
+"omitted from the following list, please don't hesitate to contact our "
+"infrastructure team, so that we may recognize you. We've tried to track down "
+"all past sponsors, but a few have been non-responsive to requests, or we "
+"simply didn't know about them from the very early years of the project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):489
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):492
+msgid "Department of Physics - University of Trieste"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):492
+msgid "/images/sponsors/units_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):493
+msgid ""
+"The Physics department at the University of Trieste has provided "
+"infrastructure services to the Gentoo project and hosts all of our mailing "
+"lists for several years."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):503
+msgid "Inverse Path"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):506
+msgid "/images/sponsors/inversepath_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):506
+msgid "Inverse Path Ltd."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):507
+msgid ""
+"Inverse Path Ltd. is an international consultancy providing design and "
+"implementation of secure network and infrastructures with particular "
+"expertise in open source software. Among its services it offers Gentoo "
+"commercial support for deployment in production environments as well as "
+"professional training."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):514
+msgid ""
+"Inverse Path previously provided a VOIP server for use by Gentoo developers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):524
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):526
+msgid "Pilosoft"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):526
+msgid "/images/sponsors/pilosoft-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):527
+msgid ""
+"Pilosoft provides a multitude of Internet-related services, including DSL "
+"connectivity, shared and dedicated web hosting, colocation facilities and "
+"customized IP services."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):530
+msgid ""
+"Pilosoft provided bandwidth and colocation services for the Gentoo Linux "
+"project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):540
+msgid "Southern Nazarene University (SNU)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):542
+msgid ""
+"Founded in 1899, Southern Nazarene University is a private, Christian, "
+"liberal arts university-a service of the Church of the Nazarene. Located on "
+"a 40-acre campus just west of Oklahoma City, SNU grew out of several small "
+"colleges committed to training people for service to God and their fellow "
+"man. More than 25,000 alumni work and serve throughout the United States and "
+"the world."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):549
+msgid ""
+"SNU provided use of a dedicated server and bandwidth to the Gentoo Linux "
+"project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):559
+msgid "University of Florida: Open Systems Group"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):561
+msgid ""
+"The <uri link=\"http://open-systems.ufl.edu/\">Open Systems Group</uri> at "
+"the <uri link=\"http://www.ufl.edu/\">University of Florida</uri> previously "
+"hosted a small cluster powering the rsync1.us.gentoo.org master mirror "
+"service for all community mirrors."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):574
+msgid "Melior, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):576
+msgid "/images/sponsors/melior-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):576
+msgid "Melior"
+msgstr ""
+
+#. <fig link="/images/sponsors/isecure-logo.jpg" linkto="http://www.ddos.com"/>
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):578
+msgid ""
+"Melior, Inc. provides proven distributed Denial of Service (dDoS) protection "
+"and the industry's only Infrastructure Cloaking technology: the iSecure True "
+"Intrusion Prevention System (TIPSTM)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):583
+msgid ""
+"Melior, Inc. provided the server, bandwidth and colocation facilities for a "
+"old developer account box, main web node, and a dedicated rsync server."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):593
+msgid "Ethernetworks.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):595
+msgid "/images/sponsors/ethernetworks-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):595
+msgid "Ethernetworks Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):596
+msgid ""
+"<uri link=\"http://www.ethernetworks.de\">Ethernetworks Germany</uri> is "
+"specialized on professional networking, internet security solutions as well "
+"as shared and dedicated web hosting. Server integration into multi platform "
+"business networks is Ethernetworks Deutschland main scope of duties, just as "
+"Crossplatform network design including Linux, MacOS X and Windows."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):599
+msgid ""
+"Ethernetworks Germany provided use of a PowerPC G4 along with colocation and "
+"bandwidth space for it."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):608
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):610
+msgid "Lumen Software"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):610
+msgid "/images/sponsors/lumen.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):611
+msgid ""
+"Lumen Software utilizes Gentoo as the base Linux distribution in all our pre-"
+"configured server products. Lumen Softwares EzThin Server products are pre-"
+"configured Linux server solutions that provide a complete solution for the "
+"small office to a large scale enterprise organization. EzThin features pre-"
+"installed applications (productivity software, graphics, etc.), virtual "
+"desktops (maintenance free and require no base OS), remote access, "
+"centralized user and user desktop management, automated server updates and "
+"more. Lumen Softwares development has focused on creating an environment "
+"that allows organizations to take advantage of the full benefits of Linux "
+"without the need of any Linux experience or training. This focus has "
+"culminated into the EzThin Server solutions we have today, with EzThin "
+"Server certified partnerships with Dell and Gateway."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):625
+msgid ""
+"Lumen Software provided funding in 2004 to further development of our "
+"Portage package management solution."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):635
+msgid "Tera-Byte.com Inc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):637
+msgid ""
+"Tera-Byte.com is Canada's largest webhost, offering services ranging from "
+"shared web hosting to virtual servers to co-location and dedicated servers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):639
+msgid ""
+"Tera-Byte.com provided a dedicated rsync server which was part of the rsync."
+"gentoo.org rotation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):649
+msgid "Source and rsync mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):653
+msgid ""
+"Gentoo relies heavily upon a global network of rsync and source mirrors. "
+"Without these mirrors, access to new packages, updates to the Portage tree "
+"and new releases of Gentoo Linux would be impossible. Some mirrors are "
+"provided by individuals, others by companies. You can find a complete "
+"listing on our <uri link=\"/main/en/mirrors.xml\">Gentoo mirrors page</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):667
+msgid "Anonymous Sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):671
+msgid ""
+"Several other companies and organizations provide services and assistance to "
+"the Gentoo project, but have expressed a desire to remain anonymous. We "
+"would like to thank those sponsors for their support of Gentoo."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/stores.xml.po b/main/gettext/ru/stores.xml.po
new file mode 100644
index 0000000..bb86800
--- /dev/null
+++ b/main/gettext/ru/stores.xml.po
@@ -0,0 +1,334 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):6
+msgid "Gentoo Stores"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(author:title):8
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(author:title):12
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail:link):9
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail):9
+msgid "Robin H. Johnson"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail:link):13
+msgid "dabbott"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail):13
+msgid "David Abbott"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(abstract):17
+msgid ""
+"This document lists the places that Gentoo merchandise may be purchased."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(version):23
+msgid "1.10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(date):24
+msgid "2010-07-25"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):27
+msgid "Vendor Information"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):31
+msgid ""
+"There are many types of business that are providing solutions based on "
+"Gentoo, from a simple pre-load of Gentoo for a desktop PC, to a complex "
+"multi-vendor application environment."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):37
+msgid ""
+"If you simply don't have the ability to download the large DVD or CD images, "
+"then you may wish to purchase a Gentoo DVD or CD."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):47
+msgid "Approved Vendors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):50
+msgid ""
+"Gentoo merchanise may be purchased from the following vendors who have been "
+"licenced to use the Gentoo Logo by either the <uri link=\"http://www.gentoo."
+"org/foundation/en/\">Gentoo Foundation Inc</uri> (in the USA) or <uri link="
+"\"http://www.gentoo-ev.org\">Friends of Gentoo e.V.</uri> within the "
+"European Union"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):57
+msgid ""
+"Approved Vendors make a small contribution to Gentoo from sales of Gentoo "
+"related merchandise."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):65
+msgid "Americas"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):67
+msgid ""
+"<uri link=\"http://www.cafepress.com/officialgentoo/\">Offical Gentoo "
+"Cafepress Store</uri> located in the USA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):72
+msgid ""
+"<uri link=\"http://www.case-badges.com/gentoo-logo-3d-domed-computer-case-"
+"badges-p-212.html\"> Techiant, LLC</uri> for Case Badges located in the USA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):80
+msgid "Europe"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):82
+msgid ""
+"<uri link=\"http://22258.spreadshirt.net/de/DE/Shop\">Offical Friends of "
+"Gentoo e.V Store</uri> located in Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):86
+msgid ""
+"<uri link=\"http://www.linuxpusher.com/distributions/Gentoo-Linux"
+"\">LinuxPusher</uri> located in Denmark"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):96
+msgid ""
+"If you buy something from a licenced vendor and you like it, tell all your "
+"friends."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):99
+msgid ""
+"If you have problems with quality or the vendor, please tell <mail link="
+"\"trustees@gentoo.org\">us</mail> and the vendor. We do not undertake to "
+"resolve individual issues but we take the quality of goods bearing our logo "
+"very seriously indeed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):109
+msgid "Gentoo Linux DVDs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):115
+msgid "http://www.jbox.ca/software/linux-distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):115
+msgid "Stormfront Gentoo Section"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):122
+msgid "http://www.distribuicoeslinux.com.br/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):122
+msgid "Brazilian Store of Linux Media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):129
+msgid "Unlicenced Vendors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):131
+msgid "Information"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):133
+msgid ""
+"If you would like a listing here please email the <mail link="
+"\"trustees@gentoo.org\">trustees</mail> A listing on this page is included "
+"in the <uri link=\"name-logo.xml\"> license. </uri>Gentoo has to defend its "
+"registered marks to prevent them becoming public domain and we try to do it "
+"in the friendy way that is the hallmark of the open source community."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):144
+msgid "Gentoo Linux CDs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):151
+msgid "http://www.cheapbytes.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):151
+msgid "CheapBytes"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):154
+msgid "http://edmunds-enterprises.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):154
+msgid "Edmunds Enterprises"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):157
+msgid "http://www.frozentech.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):157
+msgid "Frozentech"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):161
+msgid "http://www.osdisc.com/cgi-bin/view.cgi/products/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):161
+msgid "OSDisc.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):164
+msgid "http://www.thelinuxstore.ca"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):164
+msgid "The Linux Store"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):170
+msgid "http://getlinux.leprado.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):170
+msgid "Getlinux (FR)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):173
+msgid "http://www.linux2go.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):173
+msgid "Linux2Go (DE)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):176
+msgid "http://www.cheaplinux.de/systeme/gentoo.php"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):176
+msgid "CheapLinux (DE)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):179
+msgid "http://www.linux-distro.co.uk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):179
+msgid "Linux-Distro (UK)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):185
+msgid "http://shop.linuxit.com.au/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):185
+msgid "Linux Information Technology (Australia)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):188
+msgid "http://www.lsl.com.au/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):188
+msgid "Linux System Labs (Australia)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):191
+msgid "http://www.linuxcdmall.com/gentoo.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):191
+msgid "Linux CD Mall (New Zealand)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):198
+msgid "Computers with Gentoo Linux pre-installed"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):201
+msgid ""
+"The following companies sell computers that come pre-installed with Gentoo "
+"Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):210
+msgid "http://linuxcertified.com/gentoo-laptop.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):210
+msgid "Linux Certified, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):213
+msgid "http://www.microway.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):213
+msgid "Microway, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):220
+msgid "http://www.vgcomputing.com.au"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):220
+msgid "VG Computing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):227
+msgid "http://www.linux-service.be"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):227
+msgid "Linux Service (Belgium)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):234
+msgid "Want to be listed on this page?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):237
+msgid ""
+"For vendor listing on this page, Gentoo requires that you sell our media at "
+"no \"profit\" as described by the GPL (reasonable cost to cover expenses) or "
+"make an agreement with Gentoo for the listing. That agreement could be one "
+"where you donate some amount to Gentoo or could be free, at Gentoo's "
+"discretion. Vendors supporting open source will be considered heavily for "
+"free listing. We do not list commercial vendors who do not give back to "
+"Gentoo because we already have a Gentoo store. If you are making a profit, "
+"contact the <mail link=\"trustees@gentoo.org\">Gentoo foundation</mail> to "
+"negotiate an agreement."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/support.xml.po b/main/gettext/ru/support.xml.po
new file mode 100644
index 0000000..bb13b24
--- /dev/null
+++ b/main/gettext/ru/support.xml.po
@@ -0,0 +1,137 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):4
+msgid "Gentoo Linux Support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(author:title):6
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail:link):7
+msgid "swift@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail):7
+msgid "Sven Vermeulen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(author:title):9
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail:link):10
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail):10
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(abstract):13
+msgid "How to obtain support for Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(version):21
+msgid "0.4"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(date):22
+msgid "2005-04-30"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):25
+msgid "Support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):29
+msgid ""
+"Gentoo is a volunteer-driven distribution and so are our support options. It "
+"is not possible for our developers to provide support (paid or otherwise) "
+"because we simply don't have the time or resources to do so."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):35
+msgid ""
+"We have however a great Gentoo community that tests and helps document many "
+"aspects of the Gentoo distribution. We advise you to direct your support "
+"questions to the <uri link=\"http://forums.gentoo.org\">Gentoo Forums</uri>, "
+"<uri link=\"/main/en/lists.xml\">Gentoo Mailinglists</uri> or <uri link=\"/"
+"main/en/irc.xml\">Gentoo Chat Channels</uri>. Those are far better suited "
+"for support questions as they represent a major part of the \"common\" "
+"knowledge about Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):45
+msgid ""
+"Most Gentoo developers frequently visit those community channels and try "
+"their best to contribute to the ongoing discussions and questions."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):53
+msgid "Hardware Requirements"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):56
+msgid ""
+"The hardware requirements for each architecture are placed in our <uri link="
+"\"/doc/en/handbook/index.xml\">Gentoo Handbook</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):61
+msgid ""
+"Direct links to the hardware requirements: <uri link=\"/doc/en/handbook/"
+"handbook-alpha.xml?part=1&amp;chap=2#doc_chap1\">alpha</uri>, <uri link=\"/"
+"doc/en/handbook/handbook-amd64.xml?part=1&amp;chap=2#doc_chap1\">amd64</"
+"uri>, <uri link=\"/doc/en/handbook/handbook-hppa.xml?part=1&amp;"
+"chap=2#doc_chap1\">hppa</uri>, <uri link=\"/doc/en/handbook/handbook-mips."
+"xml?part=1&amp;chap=2#doc_chap1\">mips</uri>, <uri link=\"/doc/en/handbook/"
+"handbook-ppc.xml?part=1&amp;chap=2#doc_chap1\">ppc</uri>, <uri link=\"/doc/"
+"en/handbook/handbook-ppc64.xml?part=1&amp;chap=2#doc_chap1\">ppc64</uri>, "
+"<uri link=\"/doc/en/handbook/handbook-sparc.xml?part=1&amp;"
+"chap=2#doc_chap1\">sparc</uri>, <uri link=\"/doc/en/handbook/handbook-x86."
+"xml?part=1&amp;chap=2#doc_chap1\">x86</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):77
+msgid "Downloading Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):80
+msgid ""
+"You can download Gentoo from any of our <uri link=\"/main/en/mirrors.xml"
+"\">mirrors</uri>. The downloadable ISO files are located inside the "
+"<path>releases/</path> directory."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):86
+msgid ""
+"More information about the available ISOs and files can be found in our <uri "
+"link=\"/doc/en/handbook/index.xml\">Gentoo Handbook</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):94
+msgid "Reporting Bugs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):97
+msgid ""
+"Found a bug? Please <uri link=\"http://bugs.gentoo.org\">report</uri> it."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//support.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/ru/where.xml.po b/main/gettext/ru/where.xml.po
new file mode 100644
index 0000000..9f52447
--- /dev/null
+++ b/main/gettext/ru/where.xml.po
@@ -0,0 +1,195 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: 2009-10-12 06:14+0400\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):6
+msgid "Where to Get Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(author:title):8
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(mail:link):9
+msgid "www@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(mail):9
+msgid "Gentoo WWW Team"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(abstract):12
+msgid "How to obtain Gentoo Linux from the Internet."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(version):20
+msgid "1.75"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(date):21
+msgid "2010-08-28"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):24
+msgid "Installation media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):28
+msgid ""
+"Gentoo Linux is available free over the Internet. You can download Gentoo "
+"Linux from the appropriate iso and architecture link below."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):33
+msgid ""
+"Please consult our <uri link=\"/doc/en/handbook/\">Gentoo Handbooks</uri> "
+"for more information on what to download and how to install Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):44
+msgid ""
+"alpha: <uri link=\"http://distfiles.gentoo.org/releases/alpha/autobuilds/"
+"current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/"
+"alpha/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):50
+msgid ""
+"amd64: <uri link=\"http://distfiles.gentoo.org/releases/amd64/autobuilds/"
+"current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/"
+"amd64/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):56
+msgid ""
+"arm: <uri link=\"http://distfiles.gentoo.org/releases/arm/autobuilds/current-"
+"stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):59
+msgid ""
+"hppa: <uri link=\"http://distfiles.gentoo.org/releases/hppa/autobuilds/"
+"current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):63
+msgid ""
+"ia64: <uri link=\"http://distfiles.gentoo.org/releases/ia64/autobuilds/"
+"current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/"
+"ia64/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):69
+msgid ""
+"ppc/ppc64: <uri link=\"http://distfiles.gentoo.org/releases/ppc/autobuilds/"
+"current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/ppc/"
+"autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):75
+msgid ""
+"s390/s390x: <uri link=\"http://distfiles.gentoo.org/releases/s390/autobuilds/"
+"current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):79
+msgid ""
+"sh: <uri link=\"http://distfiles.gentoo.org/releases/sh/autobuilds/current-"
+"stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):83
+msgid ""
+"sparc: <uri link=\"http://distfiles.gentoo.org/releases/sparc/autobuilds/"
+"current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/"
+"sparc/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):89
+msgid ""
+"x86: <uri link=\"http://distfiles.gentoo.org/releases/x86/autobuilds/current-"
+"iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/x86/"
+"autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):97
+msgid ""
+"If you prefer to select a local mirror yourself, see <uri link=\"mirrors.xml"
+"\">Gentoo Mirrors</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):107
+msgid "Technical details"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):111
+msgid ""
+"Descriptions, release notes, roadmaps, sub-projects and a list of the Gentoo "
+"Developers who work on the Gentoo release media can all be found on our <uri "
+"link=\"/proj/en/releng/\"> Release Engineering Project page</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):123
+msgid "Gentoo Weekly Minimal Install CD and Stages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):126
+msgid ""
+"Our Release Engineering team provides new minimal install CDs and stages on "
+"a <e>weekly</e> basis. You can find these releases on any of our mirrors in "
+"<path>/releases/&lt;arch&gt;/current-iso/</path> or <path>/releases/&lt;"
+"arch&gt;/current-stage3/</path>. Not every architecture is updated on the "
+"same day. Not all architectures release CD images."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):134
+msgid ""
+"Since these releases are built automatically by Release Engineering servers, "
+"there is some chance that a stage or CD may not be produced for a given "
+"week. When this happens, just use the latest CD and stage available. More "
+"releases are available on our mirrors in <path>/releases/&lt;arch&gt;/"
+"autobuilds/</path>. Use this directory if there isn't anything recent enough "
+"in <path>current-iso/</path> or <path>current-stage3/</path>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):150
+msgid "Other media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):154
+msgid "Gentoo 10.1"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):156
+msgid ""
+"<b>LiveDVD (released Oct 10, 2009)</b><br/>(up to 2.6 gigabytes depending on "
+"arch) <br/><uri link=\"http://bouncer.gentoo.org/fetch/gentoo-10.1-livedvd/"
+"amd64/\">amd64</uri><uri link=\"http://bouncer.gentoo.org/fetch/gentoo-10.1-"
+"livedvd/x86/\">x86</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):170
+msgid "Gentoo DVDs and CDs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):173
+msgid ""
+"If you simply don't have the ability to download the large DVD or CD images, "
+"then you may wish to purchase a <uri link=\"stores.xml\">Gentoo DVD or CD.</"
+"uri>"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//where.xml(None):0
+msgid "translator-credits"
+msgstr ""
diff --git a/main/gettext/shots.xml.pot b/main/gettext/shots.xml.pot
new file mode 100644
index 0000000..4aecd21
--- /dev/null
+++ b/main/gettext/shots.xml.pot
@@ -0,0 +1,196 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):6
+msgid "Gentoo Linux Screenshots"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):8
+msgid "Previous Chief Architect"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(mail:link):9
+msgid "drobbins"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):11 ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):14 ../../gentoo/xml/htdocs/main/en//shots.xml(author:title):15
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(mail:link):12
+msgid "swift"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(author):14
+msgid "Sergey Kuleshov"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(mail:link):16
+msgid "dabbott"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(abstract):19
+msgid "Screenshots of Gentoo Linux in action."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(version):27
+msgid "1.44"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(date):28
+msgid "2010-08-10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):41
+msgid "Here they are... click for larger PNG versions!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):44
+msgid "Disclaimer"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):47
+msgid "The screenshots on this page are contributed by various Gentoo users. Information about the themes used, background images, etc. is not available through Gentoo. You will need to contact the author of the screenshot (if you can find this person) for more information."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):54
+msgid "You can always try locating the authors on our #gentoo chat channel on irc.freenode.net or through the <uri link=\"http://forums.gentoo.org\">Gentoo Forums</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):64
+msgid "E17 EFL overlay (Chopinzee)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):71
+msgid "The window manager is E17, built from the official EFL overlay with <c>itask-ng</c>. The window manager theme is A-SBlack2.edj for the main, grey.edj for the clock, and detour-glossy-red.edj for the <c>itask-ng</c> bar. The wallpaper is Black_wall.edj <c>gimp</c>ed to properly render at 1920x1080. The terminals are <c>x11-terms/terminal</c>, GTK theme is \"crude.\" The application running in the busy shot is <c>mixxx</c>. The compositor is <c>ecomp</c> with the <c>ecomorph</c> module. The icons on the <c>itask-ng</c> bar are \"Token Light.\""
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):82
+msgid "/images/shots/chopinzee-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):88
+msgid "Simple is Beautiful (whtwtr)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):95
+msgid "Simple is beautiful <e>but</e> it must be functional and provide the user with tangible information."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):100
+msgid "Shawn's box currently runs <c>compiz</c> as the window manager with <c>xfce4-panel</c>. The wallpaper is plain old #000000 (black). Two <c>app-admin/conky-1.8.0</c> instances render the desktop eye-candy. The first <c>conky</c> instance powers the ring meters. The rings represent cpu usage (large white rings), memory usage (green ring), and file system usage (yellow rings). The second <c>conky</c> instance runs the bottom info bar with uptime, temps, up/download speeds, calendar and curent time. The globe image is taken from die.net and is a \"Mollweide\" projection of the earth's day/night shadow and He uses <c>cron</c> plus a small script to update the image every hour. (The clouds are updated every three hours.) Cool, eh?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):113
+msgid "/images/shots/whtwtr-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):119
+msgid "Xfce from the xfce-dev overlay (GentooApologetin)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):126
+msgid "Mona's custom Xfce environment is from the xfce-dev overlay. It's on an ~amd64 desktop running <c>compiz-fusion</c>, modded Salmon gtk2 theme, recolored Humanity Colors icon theme, <c>conky</c> and <c>pcmanfm2</c> for the desktop, <c>lxterminal</c> and a fine-tuned claws-mail instance. It's completely lightweight and runs stable enough as her everyday main system."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):134
+msgid "/images/shots/mona-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):140
+msgid "Gnome Lover's Dream (shpaq)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):147
+msgid "The judges liked Michał's balance between icon theme, background, custom <c>conky</c> fonts and the whole look of his desktop."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):152
+msgid "/images/shots/shpaq-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):158
+msgid "Simple Elegance (nm)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):165
+msgid "The window manager is <c>dwm</c>. Terminal emulator: <c>urxvt</c>. Wallpaper: of unknown origin. Font: Proggy Tiny Slashed Zero."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):170
+msgid "/images/shots/nm-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):176
+msgid "(Almost) default GNOME"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):179
+msgid "Bartek's shot is another of the screenshot contest winners. Bartek got this decent look by using the depth illusion of a 3D wallpaper along with clever arrangement of pretty icons. This is good example of how a default theme can be used to create a beautiful screenshot."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):186
+msgid "/images/shots/gnome-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):192
+msgid "Elegant black WM"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):195
+msgid "Another winner of Gentoo Screenshot Contest is Mikołaj, a.k.a. mklimek, who is a KDE user so far, and he doesn't intend to change desktops. On his screenshot you can see some KDE utilities and icons . . . which looks kinda Gnome-like."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):201
+msgid "/images/shots/rash-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):207
+msgid "Space trip"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):210
+msgid "Robert's screenshot demonstrates an appealing use of blue hues. Excluding <c>cairo-clock</c>, his KDE runs only Qt-based applications: <c>kopete</c>, <c>konsole</c>, and <c>amarok</c>. Robert also cares about his <c>irssi</c> theme, which is distinguished by green colors."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):217
+msgid "/images/shots/sshotpw4-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):223
+msgid "Even more gentooish"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):226
+msgid "That is probably the most \"Gentooish\" screenshot here ever and personally for me it is the most beautiful. Alexander runs Gnome with the Lila icon set, which not only looks pretty but also befits a Gentoo workstation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):232
+msgid "/images/shots/Bildschirmfoto-small.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(title):238
+msgid "Emerge that!"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(p):241
+msgid "As you can tell, Massimiliano is going to build <c>media-video/dvdauthor</c> on his KDE box."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(fig:link):246
+msgid "/images/shots/darkgentoo2sf2-small.png"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//shots.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/sponsors.xml.pot b/main/gettext/sponsors.xml.pot
new file mode 100644
index 0000000..2a173b0
--- /dev/null
+++ b/main/gettext/sponsors.xml.pot
@@ -0,0 +1,589 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):7
+msgid "Gentoo Sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):9
+msgid "Present author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):10
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):12 ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):15
+msgid "Past author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):13
+msgid "klieber"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):16
+msgid "swift"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(author:title):18
+msgid "Past editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(mail:link):19
+msgid "curtis119"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(abstract):22
+msgid "Sponsors of Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(version):27
+msgid "2.13"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(date):28
+msgid "2010-09-28"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):31
+msgid "Hosting Sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):36
+msgid "Gentoo would like to thank the following companies and organizations who donate various services and equipment to further the development of Gentoo. Without these organizations, Gentoo would not be where it is today."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):47
+msgid "Oregon State University: Open Source Lab (OSUOSL)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):52
+msgid "/images/sponsors/osu-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):52
+msgid "Oregon State University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):54
+msgid "/images/sponsors/osuosl-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):54
+msgid "OSU Open Source Lab"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):55
+msgid "Located at <uri link=\"http://oregonstate.edu\">Oregon State University</uri> in beautiful Corvallis, Oregon, the <uri link=\"http://osuosl.org\">Open Source Lab</uri> is a focal point of development, hosting and other assorted services for the Open Source community."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):61
+msgid "OSU provides several services to the Gentoo project. In addition to serving as the primary source mirror for Gentoo, they also provide colocation space for several Gentoo servers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):71
+msgid "Indiana University (IU)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):74
+msgid "/images/sponsors/iu-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):74
+msgid "Indiana University"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):75
+msgid "Indiana University was founded in Bloomington, Indiana in 1820. The University has since then grown to eight campuses across Indiana, with a total enrollment reaching 100,000 graduate and undergraduate students. IU offers 116 academic programs that are ranked in the nation's top 20. There are over 460,000 IU alumni worldwide."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):82
+msgid "Indiana University provides colocation for Gentoo infrastructure servers, as well as a high volume source and portage mirror."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):92
+msgid "Neustar UltraDNS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):95
+msgid "/images/sponsors/neustar-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):95
+msgid "NeuStar UltraDNS"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):96
+msgid "Neustar's UltraDNS provides advanced, highly intelligent, and globally scalable directory service solutions that significantly enhance the performance and reliability of networks and mission critical information-exchange applications."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):101
+msgid "Neustar provides DNS hosting services to the Gentoo project, including advanced features like <uri link=\"http://www.ultradns.com/solutions/directionaldns.html\">Directional DNS</uri> to provide load-balanced DNS services for our rsync.gentoo.org pool of rsync servers, and <uri link=\"http://www.ultradns.com/solutions/sitebacker.html\">SiteBacker</uri> to provide server health monitoring and failover capabilities to our core infrastructure servers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):116 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):119
+msgid "Global Netoptex, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):119
+msgid "/images/sponsors/gni_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):120
+msgid "GNi is a leading provider of customer-centric managed services that extend their customer's infrastructure and dramatically reduce their customer's total cost of ownership. They provide the experts, resources and solutions to meet and exceed their customer's unique on-site and off-site requirements."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):131 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):134
+msgid "Bytemark Hosting"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):134
+msgid "/images/sponsors/bytemark_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):135
+msgid "Bytemark Hosting provide Gentoo Linux with servers and services which drive our network of global mirrors. They are a leading Internet Service Provider (ISP) in the United Kingdom and provide scalable, powerful and affordable hosting with lots of \"geek friendly\" extras as standard. They've deployed Gentoo Linux within their network to provide a flexible solution to difficult problems, such as providing a network rescue environment for all dedicated hosts."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):148 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):151
+msgid "Hyves.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):151
+msgid "/images/sponsors/hyves-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):152
+msgid "Hyves provides Gentoo Linux with servers and hosting for the Bugzilla cluster. They are a cutting-edge European social network, and run <uri link=\"http://www.gentoo.org/news/en/gmn/20080424-newsletter.xml#doc_chap3\"> Gentoo on 1800+ servers</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):163
+msgid "Euro-Web/SD-France"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):166
+msgid "/images/sponsors/sdfrance-logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):166
+msgid "gentoo dedicated servers provided by euro-web.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):167
+msgid "Founded in 2003, Euro-WEB/SD-France provides advanced outsourcing solutions; leasing and hosting of dedicated servers; development and customized services for SME to large corporate clients. Coupled with best prices and outstanding customers support, Euro-Web/SD-France has over 5,000 customers and 850 managed servers. Euro-Web/SD-France supports the Gentoo project by providing them a number of powerful dedicated servers coupled with strong IPv6 connectivity."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):180
+msgid "SevenL Networks"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):183
+msgid "/images/sponsors/sevenl_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):183
+msgid "SevenL.net"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):184
+msgid "SevenL Networks Inc. is a world leader in <uri link=\"https://www.sevenl.net/managed-hosting\">managed hosting</uri>, <uri link=\"https://www.sevenl.net/dedicated-server\">dedicated server</uri>, <uri link=\"https://www.sevenl.net/vps-hosting\">VPS hosting</uri> and data center solutions. SevenL has been proudly donating dedicated servers services to Gentoo Linux since 2004. In addition, they donate a series of dedicated hosting servers to CentOS, Linux Mint, Arch Linux and a number of other open source communities that rely on sponsorship to succeed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):200
+msgid "TOP-IX &amp; Fastbull"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):203
+msgid "/images/sponsors/topix-fastbull-400x125.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):203
+msgid "TOP-IX Fastbull"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):204
+msgid "<uri link=\"http://www.top-ix.org\">TOP-IX</uri> (TOrino Piemonte Internet eXchange) is a non-profit consortium set up in 2002 with the aim of creating and managing a NAP (Neutral Access Point) for the exchange of Internet traffic in North West Italy. Starting from 2006 TOP-IX directly supports start-ups and entrepreneurial environment with the <uri link=\"http://www.top-ix.org/development-program\">Development Program</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):211
+msgid "<uri link=\"http://www.fastbull.org/\">Fastbull</uri> association aims at supporting and promoting opensource software and free contents by means of mirroring services."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):215
+msgid "TOP-IX and Fastbull together foster broadband and open source culture."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):222
+msgid "Tek Alchemy"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):224
+msgid "<uri link=\"http://tek.net/\">Tek Alchemy, Inc.</uri>, located in Austin, Texas provides dedicated servers, VPS, managed servers and colocation in the US. They host many Open Source Projects on dedicated servers including Gentoo. They cater the the \"geek\" customer, providing stock or custom hardware, custom operating system installations or \"do it yourself\" installations. They offer dedicated servers with the operating system of your choice, including Gentoo, Debian, CentOS, Ubuntu, Fedora and more."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):238
+msgid "HardStyle GmbH: Edurium, Online Kredit Index, Fern Studiengang"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):240
+msgid "HardStyle GmbH is a small development shop with diverse interests. They follow their hearts and personal credos in working to continuously secure the freedom of Open Source Projects for all users. They greatly appreciate the value of Gentoo and understand the necessity of supporting both developers and infrastructure."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):247
+msgid "Find the best providers in Germany in distance learning at <uri link=\"http://www.fern-studiengang.de/\">Fern Studiengang</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):252
+msgid "/images/sponsors/edurium-big.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):252
+msgid "Edurium"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):253
+msgid "<uri link=\"http://www.edurium.de/\">edurium</uri> - the education portal is a German education portal."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):258
+msgid "/images/sponsors/online-kredit-index.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):258
+msgid "Online Kredit Index"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):259
+msgid "<uri link=\"http://www.online-kredit-index.de/\">Online Kredit Index</uri> is a German finance service provider."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):268 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):271
+msgid "Hetzner Online AG"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):271
+msgid "/images/sponsors/hetzner-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):272
+msgid "<uri link=\"http://www.hetzner.de/\">Hetzner Online</uri> is one of the leading webhosting companies and datacenter operators in Germany. We offer powerful dedicated hosting solutions, colocation, webspace, domains, SSL certificates and search engine entries. Coupled with best prices and outstanding support, Hetzner Online surpass customers' expectations around the world. Hetzner Online supports the Gentoo project with a powerful dedicated server."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):285 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):288
+msgid "WebHosting.UK.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):288
+msgid "/images/sponsors/web-hosting-uk.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):289
+msgid "Founded in 2001, WebHosting UK offers cheap and affordable Gentoo Linux Dedicated Servers in UK. Webhosting UK also provides fully managed Shared hosting, Reseller Hosting, Semi Dedicated Hosting and Virtual Private Servers with all important features such as 24x7x365 technical support, 99.95% Uptime Guarantee included as standard."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):302
+msgid "University of Virginia"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):305
+msgid "/images/sponsors/virginia-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):305
+msgid "University of Virginia Logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):306
+msgid "University of Virginia hosts quite a few Alpha boxes used by the Gentoo/Alpha developers for building new Gentoo releases as well as daily work such as keyword testing and security bumps."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):317
+msgid "HP"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):320
+msgid "/images/sponsors/hp-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):320
+msgid "HP OpenSource Logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):321
+msgid "HP is a technology solutions provider to consumers, businesses and institutions globally. HP has over 200 products that ship with open source software. From client to server to data center, HP is contributing to hundreds of open source projects every day. For more information about HP's open source involvement, check out <uri link=\"http://opensource.hp.com/\">http://opensource.hp.com/</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):329
+msgid "HP provides R&amp;D resources and has loaned and hosted Alpha and IA64 hardware for the Gentoo project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):340
+msgid "Specific donations"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):344
+msgid "Gentoo would like to thank the following companies and organizations who have made specific donations to further the development of Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):353 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):356
+msgid "Opengear"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):356
+msgid "/images/sponsors/opengear-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):357
+msgid "<uri link=\"http://www.opengear.com/\">Opengear</uri> designs and manufactures next generation console server solutions for secure remote access and control of network devices such as routers, switches, servers, firewalls, uninterruptable power supplies, power distribution units and environmental monitoring devices. The mission of Opengear is to be a leading supplier and thought leader in open source technologies for infrastructure management and an innovative developer of next generation console server and power management solutions. Opengear have donated a number of console servers to Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):372 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):375
+msgid "NVIDIA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):375
+msgid "/images/sponsors/nvidia-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):376
+msgid "NVIDIA Corporation (Nasdaq: NVDA) is a market leader in visual computing technology dedicated to creating products that enhance the digital media experience on consumer and professional computing platforms, from desktops and workstations to notebooks and handhelds. The company's graphics and communications processors have broad market reach and are incorporated into a wide variety of computing platforms, including consumer PCs, enterprise PCs, professional workstations, digital content creation systems, military navigation systems and video game consoles."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):388
+msgid "NVIDIA has provided the Gentoo project with numerous AMD development machines and video cards to further development of Gentoo on the Athlon XP and Athlon64 platforms."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):399
+msgid "Cloanto"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):401
+msgid "<uri link=\"http://www.amigaforever.com/\">Cloanto</uri> has donated the <uri link=\"http://www.amigaforever.com/\">Amiga Forever CD</uri> to support development and maintenance of Amiga emulation software in Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):411 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):413
+msgid "OSTC"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):413
+msgid "/images/sponsors/ostc-banner.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):414
+msgid "<uri link=\"http://ostc.pl/\">OSTC</uri> is the first and largest proprietary derivatives trading company in Poland. They push the boundaries of global market electronic trading using Gentoo and Open Source software as a integral components."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):423 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):426
+msgid "Genesi"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):426
+msgid "/images/sponsors/genesi_logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):427
+msgid "Genesi is a leading provider of Freescale and IBM PowerPC based computing products. Genesi's <uri link=\"http://www.pegasosppc.com\">PegasosPPC MicroATX computer</uri> is designed to bring PowerPC technology flexibility and efficiency to the desktop, low-end server and pervasive market segments at an affordable price. Beginning with the 2004.3 release, the Open Desktop Workstation will ship with Gentoo pre-installed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):436
+msgid "<uri link=\"http://www.genesi.lu\">Genesi</uri> has provided many PowerPC based <uri link=\"http://www.pegasosppc.com/odw.php\">Open Desktop Workstations</uri> to Gentoo. For information about Genesi's involvement in the Linux Open Source community, please see <uri link=\"http://www.ppczone.org\">www.PPCZone.org</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):449
+msgid "DataRescue"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):452
+msgid "/images/sponsors/datarescue-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):452
+msgid "DataRescue logo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):453
+msgid "DataRescue is the developer of the IDA Pro Disassembler &amp; Debugger, an essential tool for vulnerability research and hostile binary analysis. DataRescue runs several of its public servers and its main internal server on Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):460
+msgid "DataRescue has donated software to the Gentoo Audit Team."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):472
+msgid "Past sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):476
+msgid "Gentoo would like to extend a special thanks to all of our past sponsors."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):478
+msgid "If your organization previously has sponsored Gentoo, and was accidently omitted from the following list, please don't hesitate to contact our infrastructure team, so that we may recognize you. We've tried to track down all past sponsors, but a few have been non-responsive to requests, or we simply didn't know about them from the very early years of the project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):489 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):492
+msgid "Department of Physics - University of Trieste"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):492
+msgid "/images/sponsors/units_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):493
+msgid "The Physics department at the University of Trieste has provided infrastructure services to the Gentoo project and hosts all of our mailing lists for several years."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):503
+msgid "Inverse Path"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):506
+msgid "/images/sponsors/inversepath_logo.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):506
+msgid "Inverse Path Ltd."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):507
+msgid "Inverse Path Ltd. is an international consultancy providing design and implementation of secure network and infrastructures with particular expertise in open source software. Among its services it offers Gentoo commercial support for deployment in production environments as well as professional training."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):514
+msgid "Inverse Path previously provided a VOIP server for use by Gentoo developers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):524 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):526
+msgid "Pilosoft"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):526
+msgid "/images/sponsors/pilosoft-logo.gif"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):527
+msgid "Pilosoft provides a multitude of Internet-related services, including DSL connectivity, shared and dedicated web hosting, colocation facilities and customized IP services."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):530
+msgid "Pilosoft provided bandwidth and colocation services for the Gentoo Linux project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):540
+msgid "Southern Nazarene University (SNU)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):542
+msgid "Founded in 1899, Southern Nazarene University is a private, Christian, liberal arts university-a service of the Church of the Nazarene. Located on a 40-acre campus just west of Oklahoma City, SNU grew out of several small colleges committed to training people for service to God and their fellow man. More than 25,000 alumni work and serve throughout the United States and the world."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):549
+msgid "SNU provided use of a dedicated server and bandwidth to the Gentoo Linux project."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):559
+msgid "University of Florida: Open Systems Group"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):561
+msgid "The <uri link=\"http://open-systems.ufl.edu/\">Open Systems Group</uri> at the <uri link=\"http://www.ufl.edu/\">University of Florida</uri> previously hosted a small cluster powering the rsync1.us.gentoo.org master mirror service for all community mirrors."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):574
+msgid "Melior, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):576
+msgid "/images/sponsors/melior-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):576
+msgid "Melior"
+msgstr ""
+
+#. <fig link="/images/sponsors/isecure-logo.jpg" linkto="http://www.ddos.com"/>
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):578
+msgid "Melior, Inc. provides proven distributed Denial of Service (dDoS) protection and the industry's only Infrastructure Cloaking technology: the iSecure True Intrusion Prevention System (TIPSTM)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):583
+msgid "Melior, Inc. provided the server, bandwidth and colocation facilities for a old developer account box, main web node, and a dedicated rsync server."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):593
+msgid "Ethernetworks.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):595
+msgid "/images/sponsors/ethernetworks-logo.jpg"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):595
+msgid "Ethernetworks Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):596
+msgid "<uri link=\"http://www.ethernetworks.de\">Ethernetworks Germany</uri> is specialized on professional networking, internet security solutions as well as shared and dedicated web hosting. Server integration into multi platform business networks is Ethernetworks Deutschland main scope of duties, just as Crossplatform network design including Linux, MacOS X and Windows."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):599
+msgid "Ethernetworks Germany provided use of a PowerPC G4 along with colocation and bandwidth space for it."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):608 ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:short):610
+msgid "Lumen Software"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(fig:link):610
+msgid "/images/sponsors/lumen.png"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):611
+msgid "Lumen Software utilizes Gentoo as the base Linux distribution in all our pre-configured server products. Lumen Softwares EzThin Server products are pre-configured Linux server solutions that provide a complete solution for the small office to a large scale enterprise organization. EzThin features pre-installed applications (productivity software, graphics, etc.), virtual desktops (maintenance free and require no base OS), remote access, centralized user and user desktop management, automated server updates and more. Lumen Softwares development has focused on creating an environment that allows organizations to take advantage of the full benefits of Linux without the need of any Linux experience or training. This focus has culminated into the EzThin Server solutions we have today, with EzThin Server certified partnerships with Dell and Gateway."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):625
+msgid "Lumen Software provided funding in 2004 to further development of our Portage package management solution."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):635
+msgid "Tera-Byte.com Inc"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):637
+msgid "Tera-Byte.com is Canada's largest webhost, offering services ranging from shared web hosting to virtual servers to co-location and dedicated servers."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):639
+msgid "Tera-Byte.com provided a dedicated rsync server which was part of the rsync.gentoo.org rotation."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):649
+msgid "Source and rsync mirrors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):653
+msgid "Gentoo relies heavily upon a global network of rsync and source mirrors. Without these mirrors, access to new packages, updates to the Portage tree and new releases of Gentoo Linux would be impossible. Some mirrors are provided by individuals, others by companies. You can find a complete listing on our <uri link=\"/main/en/mirrors.xml\">Gentoo mirrors page</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(title):667
+msgid "Anonymous Sponsors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(p):671
+msgid "Several other companies and organizations provide services and assistance to the Gentoo project, but have expressed a desire to remain anonymous. We would like to thank those sponsors for their support of Gentoo."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//sponsors.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/stores.xml.pot b/main/gettext/stores.xml.pot
new file mode 100644
index 0000000..e6ac59c
--- /dev/null
+++ b/main/gettext/stores.xml.pot
@@ -0,0 +1,288 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):6
+msgid "Gentoo Stores"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(author:title):8 ../../gentoo/xml/htdocs/main/en//stores.xml(author:title):12
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail:link):9
+msgid "robbat2"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail):9
+msgid "Robin H. Johnson"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail:link):13
+msgid "dabbott"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(mail):13
+msgid "David Abbott"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(abstract):17
+msgid "This document lists the places that Gentoo merchandise may be purchased."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(version):23
+msgid "1.10"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(date):24
+msgid "2010-07-25"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):27
+msgid "Vendor Information"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):31
+msgid "There are many types of business that are providing solutions based on Gentoo, from a simple pre-load of Gentoo for a desktop PC, to a complex multi-vendor application environment."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):37
+msgid "If you simply don't have the ability to download the large DVD or CD images, then you may wish to purchase a Gentoo DVD or CD."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):47
+msgid "Approved Vendors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):50
+msgid "Gentoo merchanise may be purchased from the following vendors who have been licenced to use the Gentoo Logo by either the <uri link=\"http://www.gentoo.org/foundation/en/\">Gentoo Foundation Inc</uri> (in the USA) or <uri link=\"http://www.gentoo-ev.org\">Friends of Gentoo e.V.</uri> within the European Union"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):57
+msgid "Approved Vendors make a small contribution to Gentoo from sales of Gentoo related merchandise."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):65
+msgid "Americas"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):67
+msgid "<uri link=\"http://www.cafepress.com/officialgentoo/\">Offical Gentoo Cafepress Store</uri> located in the USA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):72
+msgid "<uri link=\"http://www.case-badges.com/gentoo-logo-3d-domed-computer-case-badges-p-212.html\"> Techiant, LLC</uri> for Case Badges located in the USA"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):80
+msgid "Europe"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):82
+msgid "<uri link=\"http://22258.spreadshirt.net/de/DE/Shop\">Offical Friends of Gentoo e.V Store</uri> located in Germany"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):86
+msgid "<uri link=\"http://www.linuxpusher.com/distributions/Gentoo-Linux\">LinuxPusher</uri> located in Denmark"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):96
+msgid "If you buy something from a licenced vendor and you like it, tell all your friends."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):99
+msgid "If you have problems with quality or the vendor, please tell <mail link=\"trustees@gentoo.org\">us</mail> and the vendor. We do not undertake to resolve individual issues but we take the quality of goods bearing our logo very seriously indeed."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):109
+msgid "Gentoo Linux DVDs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):115
+msgid "http://www.jbox.ca/software/linux-distributions/gentoo/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):115
+msgid "Stormfront Gentoo Section"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):122
+msgid "http://www.distribuicoeslinux.com.br/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):122
+msgid "Brazilian Store of Linux Media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):129
+msgid "Unlicenced Vendors"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):131
+msgid "Information"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):133
+msgid "If you would like a listing here please email the <mail link=\"trustees@gentoo.org\">trustees</mail> A listing on this page is included in the <uri link=\"name-logo.xml\"> license. </uri>Gentoo has to defend its registered marks to prevent them becoming public domain and we try to do it in the friendy way that is the hallmark of the open source community."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):144
+msgid "Gentoo Linux CDs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):151
+msgid "http://www.cheapbytes.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):151
+msgid "CheapBytes"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):154
+msgid "http://edmunds-enterprises.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):154
+msgid "Edmunds Enterprises"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):157
+msgid "http://www.frozentech.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):157
+msgid "Frozentech"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):161
+msgid "http://www.osdisc.com/cgi-bin/view.cgi/products/linux/gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):161
+msgid "OSDisc.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):164
+msgid "http://www.thelinuxstore.ca"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):164
+msgid "The Linux Store"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):170
+msgid "http://getlinux.leprado.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):170
+msgid "Getlinux (FR)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):173
+msgid "http://www.linux2go.de"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):173
+msgid "Linux2Go (DE)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):176
+msgid "http://www.cheaplinux.de/systeme/gentoo.php"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):176
+msgid "CheapLinux (DE)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):179
+msgid "http://www.linux-distro.co.uk"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):179
+msgid "Linux-Distro (UK)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):185
+msgid "http://shop.linuxit.com.au/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):185
+msgid "Linux Information Technology (Australia)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):188
+msgid "http://www.lsl.com.au/"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):188
+msgid "Linux System Labs (Australia)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):191
+msgid "http://www.linuxcdmall.com/gentoo.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):191
+msgid "Linux CD Mall (New Zealand)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):198
+msgid "Computers with Gentoo Linux pre-installed"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):201
+msgid "The following companies sell computers that come pre-installed with Gentoo Linux."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):210
+msgid "http://linuxcertified.com/gentoo-laptop.html"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):210
+msgid "Linux Certified, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):213
+msgid "http://www.microway.com"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):213
+msgid "Microway, Inc."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):220
+msgid "http://www.vgcomputing.com.au"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):220
+msgid "VG Computing"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri:link):227
+msgid "http://www.linux-service.be"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(uri):227
+msgid "Linux Service (Belgium)"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(title):234
+msgid "Want to be listed on this page?"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(p):237
+msgid "For vendor listing on this page, Gentoo requires that you sell our media at no \"profit\" as described by the GPL (reasonable cost to cover expenses) or make an agreement with Gentoo for the listing. That agreement could be one where you donate some amount to Gentoo or could be free, at Gentoo's discretion. Vendors supporting open source will be considered heavily for free listing. We do not list commercial vendors who do not give back to Gentoo because we already have a Gentoo store. If you are making a profit, contact the <mail link=\"trustees@gentoo.org\">Gentoo foundation</mail> to negotiate an agreement."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//stores.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/support.xml.pot b/main/gettext/support.xml.pot
new file mode 100644
index 0000000..df136fd
--- /dev/null
+++ b/main/gettext/support.xml.pot
@@ -0,0 +1,104 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):4
+msgid "Gentoo Linux Support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(author:title):6
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail:link):7
+msgid "swift@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail):7
+msgid "Sven Vermeulen"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(author:title):9
+msgid "Editor"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail:link):10
+msgid "curtis119@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(mail):10
+msgid "Curtis Napier"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(abstract):13
+msgid "How to obtain support for Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(version):21
+msgid "0.4"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(date):22
+msgid "2005-04-30"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):25
+msgid "Support"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):29
+msgid "Gentoo is a volunteer-driven distribution and so are our support options. It is not possible for our developers to provide support (paid or otherwise) because we simply don't have the time or resources to do so."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):35
+msgid "We have however a great Gentoo community that tests and helps document many aspects of the Gentoo distribution. We advise you to direct your support questions to the <uri link=\"http://forums.gentoo.org\">Gentoo Forums</uri>, <uri link=\"/main/en/lists.xml\">Gentoo Mailinglists</uri> or <uri link=\"/main/en/irc.xml\">Gentoo Chat Channels</uri>. Those are far better suited for support questions as they represent a major part of the \"common\" knowledge about Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):45
+msgid "Most Gentoo developers frequently visit those community channels and try their best to contribute to the ongoing discussions and questions."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):53
+msgid "Hardware Requirements"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):56
+msgid "The hardware requirements for each architecture are placed in our <uri link=\"/doc/en/handbook/index.xml\">Gentoo Handbook</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):61
+msgid "Direct links to the hardware requirements: <uri link=\"/doc/en/handbook/handbook-alpha.xml?part=1&amp;chap=2#doc_chap1\">alpha</uri>, <uri link=\"/doc/en/handbook/handbook-amd64.xml?part=1&amp;chap=2#doc_chap1\">amd64</uri>, <uri link=\"/doc/en/handbook/handbook-hppa.xml?part=1&amp;chap=2#doc_chap1\">hppa</uri>, <uri link=\"/doc/en/handbook/handbook-mips.xml?part=1&amp;chap=2#doc_chap1\">mips</uri>, <uri link=\"/doc/en/handbook/handbook-ppc.xml?part=1&amp;chap=2#doc_chap1\">ppc</uri>, <uri link=\"/doc/en/handbook/handbook-ppc64.xml?part=1&amp;chap=2#doc_chap1\">ppc64</uri>, <uri link=\"/doc/en/handbook/handbook-sparc.xml?part=1&amp;chap=2#doc_chap1\">sparc</uri>, <uri link=\"/doc/en/handbook/handbook-x86.xml?part=1&amp;chap=2#doc_chap1\">x86</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):77
+msgid "Downloading Gentoo"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):80
+msgid "You can download Gentoo from any of our <uri link=\"/main/en/mirrors.xml\">mirrors</uri>. The downloadable ISO files are located inside the <path>releases/</path> directory."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):86
+msgid "More information about the available ISOs and files can be found in our <uri link=\"/doc/en/handbook/index.xml\">Gentoo Handbook</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(title):94
+msgid "Reporting Bugs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//support.xml(p):97
+msgid "Found a bug? Please <uri link=\"http://bugs.gentoo.org\">report</uri> it."
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//support.xml(None):0
+msgid "translator-credits"
+msgstr ""
+
diff --git a/main/gettext/where.xml.pot b/main/gettext/where.xml.pot
new file mode 100644
index 0000000..847d3b8
--- /dev/null
+++ b/main/gettext/where.xml.pot
@@ -0,0 +1,140 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2010-10-22 00:51+0600\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):6
+msgid "Where to Get Gentoo Linux"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(author:title):8
+msgid "Author"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(mail:link):9
+msgid "www@gentoo.org"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(mail):9
+msgid "Gentoo WWW Team"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(abstract):12
+msgid "How to obtain Gentoo Linux from the Internet."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(version):20
+msgid "1.75"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(date):21
+msgid "2010-08-28"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):24
+msgid "Installation media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):28
+msgid "Gentoo Linux is available free over the Internet. You can download Gentoo Linux from the appropriate iso and architecture link below."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):33
+msgid "Please consult our <uri link=\"/doc/en/handbook/\">Gentoo Handbooks</uri> for more information on what to download and how to install Gentoo."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):44
+msgid "alpha: <uri link=\"http://distfiles.gentoo.org/releases/alpha/autobuilds/current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/alpha/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):50
+msgid "amd64: <uri link=\"http://distfiles.gentoo.org/releases/amd64/autobuilds/current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/amd64/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):56
+msgid "arm: <uri link=\"http://distfiles.gentoo.org/releases/arm/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):59
+msgid "hppa: <uri link=\"http://distfiles.gentoo.org/releases/hppa/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):63
+msgid "ia64: <uri link=\"http://distfiles.gentoo.org/releases/ia64/autobuilds/current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/ia64/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):69
+msgid "ppc/ppc64: <uri link=\"http://distfiles.gentoo.org/releases/ppc/autobuilds/current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/ppc/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):75
+msgid "s390/s390x: <uri link=\"http://distfiles.gentoo.org/releases/s390/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):79
+msgid "sh: <uri link=\"http://distfiles.gentoo.org/releases/sh/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):83
+msgid "sparc: <uri link=\"http://distfiles.gentoo.org/releases/sparc/autobuilds/current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/sparc/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(li):89
+msgid "x86: <uri link=\"http://distfiles.gentoo.org/releases/x86/autobuilds/current-iso/\">iso</uri><uri link=\"http://distfiles.gentoo.org/releases/x86/autobuilds/current-stage3/\">stages</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):97
+msgid "If you prefer to select a local mirror yourself, see <uri link=\"mirrors.xml\">Gentoo Mirrors</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):107
+msgid "Technical details"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):111
+msgid "Descriptions, release notes, roadmaps, sub-projects and a list of the Gentoo Developers who work on the Gentoo release media can all be found on our <uri link=\"/proj/en/releng/\"> Release Engineering Project page</uri>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):123
+msgid "Gentoo Weekly Minimal Install CD and Stages"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):126
+msgid "Our Release Engineering team provides new minimal install CDs and stages on a <e>weekly</e> basis. You can find these releases on any of our mirrors in <path>/releases/&lt;arch&gt;/current-iso/</path> or <path>/releases/&lt;arch&gt;/current-stage3/</path>. Not every architecture is updated on the same day. Not all architectures release CD images."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):134
+msgid "Since these releases are built automatically by Release Engineering servers, there is some chance that a stage or CD may not be produced for a given week. When this happens, just use the latest CD and stage available. More releases are available on our mirrors in <path>/releases/&lt;arch&gt;/autobuilds/</path>. Use this directory if there isn't anything recent enough in <path>current-iso/</path> or <path>current-stage3/</path>."
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):150
+msgid "Other media"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):154
+msgid "Gentoo 10.1"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):156
+msgid "<b>LiveDVD (released Oct 10, 2009)</b><br/>(up to 2.6 gigabytes depending on arch) <br/><uri link=\"http://bouncer.gentoo.org/fetch/gentoo-10.1-livedvd/amd64/\">amd64</uri><uri link=\"http://bouncer.gentoo.org/fetch/gentoo-10.1-livedvd/x86/\">x86</uri>"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(title):170
+msgid "Gentoo DVDs and CDs"
+msgstr ""
+
+#: ../../gentoo/xml/htdocs/main/en//where.xml(p):173
+msgid "If you simply don't have the ability to download the large DVD or CD images, then you may wish to purchase a <uri link=\"stores.xml\">Gentoo DVD or CD.</uri>"
+msgstr ""
+
+#. Place here names of translator, one per line. Format should be NAME; ROLE; E-MAIL
+#: ../../gentoo/xml/htdocs/main/en//where.xml(None):0
+msgid "translator-credits"
+msgstr ""
+