Remove mini-sitemap from footer
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Fixes #1338
This commit is contained in:
parent
a92ce8c81b
commit
de1dc548e9
@ -57,7 +57,7 @@ EOF
|
||||
|
||||
for lang in ${languages}; do
|
||||
cat<<EOF
|
||||
\$(filter %.${lang}.html,\$(HTML_DST_FILES)): \$(OUTPUTDIR)/%.${lang}.html: \$(INPUTDIR)/%.*.xhtml \$\$(XMLLIST_DEP) \$\$(XSL_DEP) \$(INPUTDIR)/tools/menu-global.xml \$(INPUTDIR)/tools/.texts-${lang}.xml \$(INPUTDIR)/tools/texts-en.xml \$(INPUTDIR)/.fundraising.${lang}.xml \$(INPUTDIR)/fundraising.en.xml
|
||||
\$(filter %.${lang}.html,\$(HTML_DST_FILES)): \$(OUTPUTDIR)/%.${lang}.html: \$(INPUTDIR)/%.*.xhtml \$\$(XMLLIST_DEP) \$\$(XSL_DEP) \$(INPUTDIR)/tools/.texts-${lang}.xml \$(INPUTDIR)/tools/texts-en.xml \$(INPUTDIR)/.fundraising.${lang}.xml \$(INPUTDIR)/fundraising.en.xml
|
||||
echo "* Building \$*.${lang}.html"
|
||||
\${PROCESSOR} \${PROCFLAGS} process_file "\$(INPUTDIR)/\$*.${lang}.xhtml" > "\$@"
|
||||
EOF
|
||||
@ -144,7 +144,7 @@ EOF
|
||||
|
||||
for lang in ${languages}; do
|
||||
cat<<EOF
|
||||
\$(OUTPUTDIR)/%.${lang}.rss: \$(INPUTDIR)/%.*.xhtml \$\$(XMLLIST_DEP) \$(INPUTDIR)/%.rss.xsl \$(INPUTDIR)/tools/menu-global.xml \$(INPUTDIR)/tools/.texts-${lang}.xml \$(INPUTDIR)/tools/texts-en.xml \$(INPUTDIR)/.fundraising.${lang}.xml \$(INPUTDIR)/fundraising.en.xml
|
||||
\$(OUTPUTDIR)/%.${lang}.rss: \$(INPUTDIR)/%.*.xhtml \$\$(XMLLIST_DEP) \$(INPUTDIR)/%.rss.xsl \$(INPUTDIR)/tools/.texts-${lang}.xml \$(INPUTDIR)/tools/texts-en.xml \$(INPUTDIR)/.fundraising.${lang}.xml \$(INPUTDIR)/fundraising.en.xml
|
||||
echo "* Building \$*.${lang}.rss"
|
||||
\${PROCESSOR} \${PROCFLAGS} process_file "\$(INPUTDIR)/\$*.${lang}.xhtml" "\$(INPUTDIR)/\$*.rss.xsl" > "\$@"
|
||||
EOF
|
||||
@ -176,7 +176,7 @@ EOF
|
||||
|
||||
for lang in ${languages}; do
|
||||
cat<<EOF
|
||||
\$(OUTPUTDIR)/%.${lang}.ics: \$(INPUTDIR)/%.*.xhtml \$\$(XMLLIST_DEP) \$(INPUTDIR)/%.ics.xsl \$(INPUTDIR)/tools/menu-global.xml \$(INPUTDIR)/tools/.texts-${lang}.xml \$(INPUTDIR)/tools/texts-en.xml \$(INPUTDIR)/.fundraising.${lang}.xml \$(INPUTDIR)/fundraising.en.xml
|
||||
\$(OUTPUTDIR)/%.${lang}.ics: \$(INPUTDIR)/%.*.xhtml \$\$(XMLLIST_DEP) \$(INPUTDIR)/%.ics.xsl \$(INPUTDIR)/tools/.texts-${lang}.xml \$(INPUTDIR)/tools/texts-en.xml \$(INPUTDIR)/.fundraising.${lang}.xml \$(INPUTDIR)/fundraising.en.xml
|
||||
echo "* Building \$*.${lang}.ics"
|
||||
\${PROCESSOR} \${PROCFLAGS} process_file "\$(INPUTDIR)/\$*.${lang}.xhtml" "\$(INPUTDIR)/\$*.ics.xsl" > "\$@"
|
||||
EOF
|
||||
|
@ -102,7 +102,6 @@ build_xmlstream(){
|
||||
$(list_langs "$shortname")
|
||||
</trlist>
|
||||
|
||||
<menuset>$(include_xml "$basedir/tools/menu-global.xml")</menuset>
|
||||
<textsetbackup>$(include_xml "$basedir/tools/texts-en.xml")</textsetbackup>
|
||||
<textset>$(include_xml "$texts_xml")</textset>
|
||||
<fundraising>$(include_xml "$fundraising_xml")</fundraising>
|
||||
|
@ -1,183 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
|
||||
<xsl:template name="footer_sitenav">
|
||||
<xsl:element name="nav">
|
||||
<xsl:attribute name="id">full-menu</xsl:attribute>
|
||||
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">#top</xsl:attribute>
|
||||
<xsl:attribute name="id">direct-to-top</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'go-top'" /></xsl:call-template>
|
||||
<!--FIXME translate that-->
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="ul">
|
||||
<xsl:attribute name="id">full-menu-list</xsl:attribute>
|
||||
<!-- FSFE portal menu -->
|
||||
<xsl:element name="li">
|
||||
<xsl:attribute name="class">fsfe</xsl:attribute>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">/</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'fsfeurope'" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="ul">
|
||||
<xsl:variable name="menu"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:for-each select="/buildinfo/menuset/menu[@parent='fsfe']">
|
||||
<!--<xsl:sort select="@id"/>-->
|
||||
<xsl:sort select="@priority" />
|
||||
<xsl:variable name="id"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:element name="li">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(string(.))">
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test=". = concat(/buildinfo/@filename ,'.html')">
|
||||
<xsl:element name="span">
|
||||
<xsl:attribute name="id">selected</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href"><xsl:value-of select="." /></xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:element> <!-- /li -->
|
||||
</xsl:for-each>
|
||||
</xsl:element>
|
||||
<!--/ul-->
|
||||
</xsl:element>
|
||||
<!--/li-->
|
||||
|
||||
<!-- Support portal menu item -->
|
||||
<xsl:element name="li">
|
||||
<xsl:attribute name="class">support</xsl:attribute>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">https://my.fsfe.org/support</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'support/support'" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="ul">
|
||||
<xsl:variable name="menu"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:for-each select="/buildinfo/menuset/menu[@parent='support']">
|
||||
<!--<xsl:sort select="@id"/>-->
|
||||
<xsl:sort select="@priority" />
|
||||
<xsl:variable name="id"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:element name="li">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(string(.))">
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test=". = concat(/buildinfo/@filename ,'.html')">
|
||||
<xsl:element name="span">
|
||||
<xsl:attribute name="id">selected</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href"><xsl:value-of select="." /></xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:element> <!-- /li -->
|
||||
</xsl:for-each>
|
||||
</xsl:element>
|
||||
<!--/ul-->
|
||||
|
||||
</xsl:element> <!-- /li -->
|
||||
|
||||
<!-- Planet portal menu -->
|
||||
<xsl:element name="li">
|
||||
<xsl:attribute name="class">planet</xsl:attribute>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">/news/</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'news/news'" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
<!-- causes validation errors, needs li to pass validator?
|
||||
<xsl:element name="ul">
|
||||
</xsl:element>-->
|
||||
|
||||
<xsl:element name="ul">
|
||||
<xsl:variable name="menu"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:for-each select="/buildinfo/menuset/menu[@parent='news']">
|
||||
<!--<xsl:sort select="@id"/>-->
|
||||
<xsl:sort select="@priority" />
|
||||
<xsl:variable name="id"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:element name="li">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(string(.))">
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test=". = concat(/buildinfo/@filename ,'.html')">
|
||||
<xsl:element name="span">
|
||||
<xsl:attribute name="id">selected</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href"><xsl:value-of select="." /></xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:element> <!-- /li -->
|
||||
</xsl:for-each>
|
||||
</xsl:element>
|
||||
<!--/ul-->
|
||||
</xsl:element>
|
||||
|
||||
<!-- Legal team portal menu -->
|
||||
<xsl:element name="li">
|
||||
<xsl:attribute name="class">ftf</xsl:attribute>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">/legal/</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'ftf/legal'" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
<!-- causes validation errors, needs li to pass validator?
|
||||
<xsl:element name="ul">
|
||||
</xsl:element>-->
|
||||
|
||||
<xsl:element name="ul">
|
||||
<xsl:variable name="menu"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:for-each select="/buildinfo/menuset/menu[@parent='ftf']">
|
||||
<!--<xsl:sort select="@id"/>-->
|
||||
<xsl:sort select="@priority" />
|
||||
<xsl:variable name="id"><xsl:value-of select="@id" /></xsl:variable>
|
||||
<xsl:element name="li">
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(string(.))">
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test=". = concat(/buildinfo/@filename ,'.html')">
|
||||
<xsl:element name="span">
|
||||
<xsl:attribute name="id">selected</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href"><xsl:value-of select="." /></xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="$id" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:element> <!-- /li -->
|
||||
</xsl:for-each>
|
||||
</xsl:element>
|
||||
<!--/ul-->
|
||||
</xsl:element>
|
||||
|
||||
</xsl:element>
|
||||
<!--/ul#menu-list-->
|
||||
</xsl:element>
|
||||
<!--/nav#full-menu-->
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
@ -7,7 +7,6 @@
|
||||
<xsl:include href="notifications.xsl" />
|
||||
<xsl:include href="fsfe_mainsection.xsl" />
|
||||
<xsl:include href="fsfe_followupsection.xsl" />
|
||||
<xsl:include href="footer_sitenav.xsl" />
|
||||
<xsl:include href="fsfe_pagefooter.xsl" />
|
||||
<xsl:include href="body_scripts.xsl" />
|
||||
|
||||
@ -26,16 +25,7 @@
|
||||
<xsl:call-template name="notifications" />
|
||||
<xsl:call-template name="fsfe_mainsection" />
|
||||
<xsl:call-template name="fsfe_followupsection" />
|
||||
|
||||
<xsl:element name="footer">
|
||||
<xsl:attribute name="id">bottom</xsl:attribute>
|
||||
|
||||
<xsl:call-template name="footer_sitenav" />
|
||||
<xsl:element name="hr" />
|
||||
<xsl:call-template name="fsfe_pagefooter" />
|
||||
</xsl:element>
|
||||
<!--/footer#bottom-->
|
||||
|
||||
<xsl:call-template name="fsfe_pagefooter" />
|
||||
<xsl:call-template name="body_scripts" />
|
||||
|
||||
</xsl:element>
|
||||
|
@ -8,7 +8,6 @@
|
||||
buildinfo/set|
|
||||
buildinfo/textset|
|
||||
buildinfo/textsetbackup|
|
||||
buildinfo/menuset|
|
||||
buildinfo/trlist|
|
||||
buildinfo/fundraising|
|
||||
buildinfo/localmenuset|
|
||||
|
@ -3,179 +3,203 @@
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
|
||||
<xsl:template name="fsfe_pagefooter">
|
||||
<xsl:element name="div">
|
||||
<xsl:attribute name="id">page-info</xsl:attribute>
|
||||
|
||||
<xsl:element name="div">
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:text>Copyright © 2001-2020 </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'fsfeurope'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'permission'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/js-licences.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="data-jslicense">1</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'js-licences'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Go to top -->
|
||||
<xsl:element name="nav">
|
||||
<xsl:attribute name="id">direct-to-top</xsl:attribute>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">#top</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'go-top'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="footer">
|
||||
<xsl:attribute name="id">bottom</xsl:attribute>
|
||||
|
||||
<xsl:element name="div">
|
||||
<xsl:attribute name="id">page-info</xsl:attribute>
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/contact/contact.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'contact-us'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
<xsl:element name="div">
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/legal/imprint.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'imprint'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
<xsl:text> / </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/legal/imprint.html#id-privacy-policy</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'privacy-policy'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
<xsl:text> / </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/transparency-commitment.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'transparency-commitment'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'fsfnetwork'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="div">
|
||||
|
||||
<!-- Link to the XHTML source -->
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="rel">nofollow</xsl:attribute>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/source</xsl:text>
|
||||
<xsl:value-of select="/buildinfo/@filename"/>
|
||||
<xsl:text>.</xsl:text>
|
||||
<xsl:value-of select="/buildinfo/document/@language"/>
|
||||
<xsl:text>.xhtml</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'source'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>/contribute/web/
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'contribute-web'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/contribute/translators/</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translate'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Insert the appropriate translation notice -->
|
||||
<xsl:element name="p">
|
||||
<xsl:if test="/buildinfo/document/@language!=/buildinfo/@original">
|
||||
<xsl:choose>
|
||||
<xsl:when test="/buildinfo/document/translator">
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator1a'"/>
|
||||
</xsl:call-template>
|
||||
<xsl:value-of select="/buildinfo/document/translator"/>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator1b'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator2'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator3a'"/>
|
||||
</xsl:call-template>
|
||||
<!-- Copyright notice -->
|
||||
<xsl:element name="p">
|
||||
<xsl:text>Copyright © 2001-2020 </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:value-of select="/buildinfo/@filename"/>
|
||||
<xsl:text>.en.html</xsl:text>
|
||||
<xsl:text>/</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator3b'"/>
|
||||
<xsl:with-param name="id" select="'fsfeurope'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Usage permission -->
|
||||
<xsl:element name="p">
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator3c'"/>
|
||||
<xsl:with-param name="id" select="'permission'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Javascript licenses -->
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/js-licences.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="data-jslicense">1</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'js-licences'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="div">
|
||||
|
||||
<!-- Contact -->
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/contact/contact.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'contact-us'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Imprint and other legal stuff -->
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/legal/imprint.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'imprint'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
<xsl:text> / </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/legal/imprint.html#id-privacy-policy</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'privacy-policy'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
<xsl:text> / </xsl:text>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/about/transparency-commitment.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'transparency-commitment'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Sister organisations -->
|
||||
<xsl:element name="p">
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'fsfnetwork'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="div">
|
||||
|
||||
<!-- Link to the XHTML source -->
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="rel">nofollow</xsl:attribute>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/source</xsl:text>
|
||||
<xsl:value-of select="/buildinfo/@filename"/>
|
||||
<xsl:text>.</xsl:text>
|
||||
<xsl:value-of select="/buildinfo/document/@language"/>
|
||||
<xsl:text>.xhtml</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'source'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Contribute to website -->
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>/contribute/web/
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'contribute-web'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Contribute to translations -->
|
||||
<xsl:element name="p">
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:text>/contribute/translators/</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translate'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<!-- Appropriate translation notice -->
|
||||
<xsl:element name="p">
|
||||
<xsl:if test="/buildinfo/document/@language!=/buildinfo/@original">
|
||||
<xsl:choose>
|
||||
<xsl:when test="/buildinfo/document/translator">
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator1a'"/>
|
||||
</xsl:call-template>
|
||||
<xsl:value-of select="/buildinfo/document/translator"/>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator1b'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator2'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator3a'"/>
|
||||
</xsl:call-template>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="$urlprefix"/>
|
||||
<xsl:value-of select="/buildinfo/@filename"/>
|
||||
<xsl:text>.en.html</xsl:text>
|
||||
</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator3b'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:element>
|
||||
<xsl:call-template name="fsfe-gettext">
|
||||
<xsl:with-param name="id" select="'translator3c'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:element>
|
||||
|
||||
</xsl:element>
|
||||
|
||||
</xsl:element>
|
||||
|
@ -61,17 +61,9 @@
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="li">
|
||||
<xsl:attribute name="id">direct-to-full-menu</xsl:attribute>
|
||||
<xsl:attribute name="id">direct-to-page-info</xsl:attribute>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">#full-menu</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'sitemap'" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="li">
|
||||
<xsl:attribute name="id">direct-to-source</xsl:attribute>
|
||||
<xsl:element name="a">
|
||||
<xsl:attribute name="href">#source</xsl:attribute>
|
||||
<xsl:attribute name="href">#page-info</xsl:attribute>
|
||||
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'page-info'" /></xsl:call-template>
|
||||
</xsl:element>
|
||||
</xsl:element>
|
||||
|
@ -327,8 +327,6 @@
|
||||
<li><a href="http://test.fsfe.org/news/2014/news-20140116-01.en.html">Press Releases</a></li>
|
||||
<li><a href="http://test.fsfe.org/news/nl/nl-201401.en.html">Newsletters</a></li>
|
||||
<li><a href="http://test.fsfe.org/about/people/roy/roy.en.html">Personal Bio pages</a></li>
|
||||
<li><a href="http://test.fsfe.org/fr/index.en.html">Country page</a></li>
|
||||
<li><a href="http://test.fsfe.org/fellowship/card.en.html">Fellowship page</a> (You might also want to edit <code>/tools/menu-global.xml</code> and <code>/tools/texts-**.xml</code>)</li>
|
||||
</ul>
|
||||
|
||||
<h2 id="fn">Footnotes</h2>
|
||||
|
@ -33,11 +33,6 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#full-menu {
|
||||
background: url(/graphics/logo_bw_transparent_small.png) no-repeat top left @body-bg;
|
||||
}
|
||||
|
||||
img.signatory-logo {
|
||||
padding: 10px;
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ a, a:link, a:visited {
|
||||
}
|
||||
|
||||
/* Hide things */
|
||||
#sidebar, #full-menu, #followup, #top, .social-link, #translations, #translations a, #translations ul {
|
||||
#sidebar, #followup, #top, .social-link, #translations, #translations a, #translations ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
@ -131,7 +131,7 @@ h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
|
||||
// Page structure and grids
|
||||
// ============================================================================
|
||||
|
||||
#translations, #top, #notifications, #main, #followup, #full-menu, #page-info {
|
||||
#translations, #top, #notifications, #main, #followup, #page-info {
|
||||
.container;
|
||||
}
|
||||
|
||||
@ -346,7 +346,7 @@ div#subpages, {
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
/* grid */
|
||||
.article, .planet {
|
||||
.article, {
|
||||
#content, #planet-posts {
|
||||
.make-xs-column(12);
|
||||
.make-md-column(8);
|
||||
@ -995,80 +995,42 @@ article.news, article.event {
|
||||
// Page footer
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#direct-to-top {
|
||||
.container;
|
||||
|
||||
a {
|
||||
.pull-right;
|
||||
text-decoration: none !important;
|
||||
|
||||
&:before {
|
||||
content: "▴";
|
||||
padding-right: 0.5ex;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#bottom {
|
||||
background: @body-bg;
|
||||
box-shadow: 1em 0 1em 1em @body-bg;
|
||||
margin: 5em 0 0;
|
||||
padding: 5em 0;
|
||||
margin: 40px 0 0 0;
|
||||
padding: 20px 0;
|
||||
width: 100%;
|
||||
|
||||
@media (max-width: @screen-xs-max) {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
section {
|
||||
.container;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
}
|
||||
#page-info {
|
||||
// .make-row; can't use .container and .make-row on same element
|
||||
|
||||
#full-menu {
|
||||
#direct-to-top {
|
||||
margin-left: 80%;
|
||||
text-align: right;
|
||||
text-decoration: none !important;
|
||||
display: block;
|
||||
}
|
||||
|
||||
#direct-to-top:before {
|
||||
content: "▴";
|
||||
padding-right: 0.5ex;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
#full-menu-list {
|
||||
.list-no-style;
|
||||
.make-row;
|
||||
margin: 1em 0 0;
|
||||
|
||||
li {
|
||||
div {
|
||||
.make-xs-column(12);
|
||||
.make-sm-column(4);
|
||||
.make-md-column(2);
|
||||
margin-top: 1em;
|
||||
font-weight: 600;
|
||||
|
||||
ul {
|
||||
.list-no-style;
|
||||
|
||||
li {
|
||||
margin: 0;
|
||||
font-weight: 400;
|
||||
display: block;
|
||||
width: 100%;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 0.4em;
|
||||
}
|
||||
li.fellowship {
|
||||
padding-left: 0;
|
||||
font-weight: 600;
|
||||
margin-top: 0.3em;
|
||||
line-height: 1.3;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#page-info {
|
||||
// .make-row; can't use .container and .make-row on same element
|
||||
|
||||
div {
|
||||
.make-xs-column(12);
|
||||
.make-sm-column(4);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// ============================================================================
|
||||
// Other elements
|
||||
|
@ -167,6 +167,10 @@ header {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#direct-to-top {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#bottom {
|
||||
margin: 3em 0 0 0;
|
||||
background-color: #FFF;
|
||||
@ -174,33 +178,6 @@ header {
|
||||
#bottom a {
|
||||
color: #39C;
|
||||
}
|
||||
#bottom #full-menu > * {
|
||||
padding: 0;
|
||||
margin: 1em 10%;
|
||||
}
|
||||
|
||||
#full-menu {
|
||||
padding: 1em 0;
|
||||
}
|
||||
|
||||
#full-menu-list > li {
|
||||
display: inline-block;
|
||||
width: 12%;
|
||||
margin: 0 2%;
|
||||
vertical-align: top;
|
||||
}
|
||||
#full-menu-list ul,
|
||||
#full-menu-list > li > ul:nth-child(3) > li > ul{
|
||||
list-style-type: none;
|
||||
padding-left: 2ex;
|
||||
}
|
||||
#full-menu-list > li > :first-child,
|
||||
#full-menu-list > li > ul:nth-child(3) > li > :first-child {
|
||||
font-weight: bold;
|
||||
}
|
||||
#full-menu-list > li > ul:nth-child(3) {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
#bottom hr {
|
||||
border: 1px solid #DDD;
|
||||
|
@ -82,10 +82,7 @@
|
||||
<xsl:apply-templates select="body/node()" />
|
||||
</xsl:element>
|
||||
|
||||
<xsl:element name="footer">
|
||||
<xsl:attribute name="id">bottom</xsl:attribute>
|
||||
<xsl:call-template name="fsfe_pagefooter" />
|
||||
</xsl:element>
|
||||
<xsl:call-template name="fsfe_pagefooter" />
|
||||
</xsl:element>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
|
@ -1,61 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<menuset>
|
||||
<version>1</version>
|
||||
|
||||
<menu id="fsfe" />
|
||||
<menu id="fsfe/about" priority="0" parent="fsfe">/about/about.html</menu>
|
||||
<!--menu id="fsfe/mission" priority="1" parent="fsfe">/mission.html</menu-->
|
||||
<menu id="fsfe/projects" priority="2" parent="fsfe">/work.html</menu>
|
||||
<menu id="fsfe/campaigns" priority="3" parent="fsfe">/campaigns/campaigns.html</menu>
|
||||
<menu id="fsfe/help" priority="4" parent="fsfe">/contribute/contribute.html</menu>
|
||||
<menu id="fsfe/contact" priority="5" parent="fsfe">/contact/contact.html</menu>
|
||||
|
||||
<menu id="support" />
|
||||
<menu id="support/become" priority="0" parent="support">https://my.fsfe.org/support</menu>
|
||||
<menu id="support/donate" priority="1" parent="support">/donate/donate.html</menu>
|
||||
<menu id="support/order" priority="2" parent="support">/order/order.html</menu>
|
||||
<menu id="support/thankgnus" priority="3" parent="support">/donate/thankgnus.html</menu>
|
||||
<!--menu id="support/funds" priority="3" parent="support">/about/funds/funds.html</menu-->
|
||||
|
||||
<menu id="fellowship" />
|
||||
<menu id="fellowship/join" priority="0" parent="fellowship">/fellowship/join.html</menu>
|
||||
<!--<menu id="fellowship/card" priority="1" parent="fellowship">/fellowship/card.html</menu>-->
|
||||
<!--menu id="fellowship/communicate" priority="2" parent="fellowship">/fellowship/communicate.html</menu-->
|
||||
<!--menu id="fellowship/contact" priority="2" parent="fellowship">/fellowship/contact.html</menu-->
|
||||
<!--menu id="fellowship/get-active" priority="3" parent="fellowship">/fellowship/get-active.html</menu-->
|
||||
<!--<menu id="fellowship/faq" priority="4" parent="fellowship">/fellowship/faq.html</menu> -->
|
||||
<!--menu id="fellowship/login" priority="5" parent="fellowship">/fellowship/login</menu-->
|
||||
|
||||
<menu id="news" />
|
||||
<menu id="news/press" priority="0" parent="news">/press/press.html</menu>
|
||||
<menu id="news/nl" priority="1" parent="news">/news/newsletter.html</menu>
|
||||
<menu id="news/planet" priority="2" parent="news">http://planet.fsfe.org/</menu>
|
||||
<menu id="news/events" priority="3" parent="news">/events/events.html</menu>
|
||||
|
||||
<menu id="wiki" />
|
||||
<menu id="wiki/wiki" priority="0" parent="wiki">http://wiki.fsfe.org/</menu>
|
||||
<menu id="wiki/events" priority="1" parent="wiki">http://wiki.fsfe.org/FellowshipEvents</menu>
|
||||
<menu id="wiki/fellows" priority="2" parent="wiki">http://wiki.fsfe.org/Fellows</menu>
|
||||
<menu id="wiki/rc" priority="3" parent="wiki">http://wiki.fsfe.org/RecentChanges</menu>
|
||||
|
||||
<menu id="campaigns" />
|
||||
<!--<menu id="campaigns/dfd" priority="0" parent="campaigns">http://www.documentfreedom.org</menu> -->
|
||||
<menu id="campaigns/fya" priority="0" parent="campaigns">/campaigns/android/android.html</menu>
|
||||
<!--<menu id="campaigns/pdf" priority="2" parent="campaigns">/campaigns/pdfreaders/pdfreaders.html</menu>-->
|
||||
<menu id="campaigns/ayc" priority="1" parent="campaigns">/campaigns/askyourcandidates/askyourcandidates.html</menu>
|
||||
<!--<menu id="campaigns/drm" priority="4" parent="campaigns">http://drm.info</menu>-->
|
||||
|
||||
<menu id="ftf" />
|
||||
<menu id="ftf/services" priority="0" parent="ftf">/activities/ftf/services.html</menu>
|
||||
<menu id="ftf/doc" priority="1" parent="ftf">/activities/ftf/documentation.html</menu>
|
||||
<menu id="ftf/network" priority="2" parent="ftf">/activities/ftf/network.html</menu>
|
||||
<menu id="ftf/conference" priority="3" parent="ftf">/activities/ftf/legal-conference.html</menu>
|
||||
<!--menu id="ftf/contact" priority="4" parent="ftf">mailto:legal@fsfeurope.org</menu--><!-- NOTE: this address is not in use anymore-->
|
||||
|
||||
<menu id="fs" />
|
||||
<menu id="fs/def" priority="0" parent="fs">/freesoftware/basics/summary.html</menu>
|
||||
<menu id="fs/soc" priority="1" parent="fs">/freesoftware/society/society.html</menu>
|
||||
<menu id="fs/edu" priority="2" parent="fs">/freesoftware/education/education.html</menu>
|
||||
<menu id="fs/buz" priority="3" parent="fs">/freesoftware/enterprise/enterprise.html</menu>
|
||||
</menuset>
|
@ -53,37 +53,13 @@
|
||||
<text id="fsfe/help">كن ناشطًا</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">االأصدقاء</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -60,37 +60,13 @@
|
||||
<text id="fsfe/help">Включете се</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -61,37 +61,13 @@
|
||||
<text id="fsfe/help">Doprinesite</text>
|
||||
<text id="fsfe/press">Štampa</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<text id="support/support">Podrži</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Učlani se</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Kartica</text>
|
||||
<text id="fellowship/faq">Česta pitanja</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<text id="learn-more">Nauči više</text>
|
||||
|
@ -59,37 +59,13 @@
|
||||
<text id="fsfe/help">Col·laboreu</text>
|
||||
<text id="fsfe/press">Premsa</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -58,37 +58,13 @@
|
||||
<text id="fsfe/help">Zapojte se</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -63,37 +63,13 @@
|
||||
<text id="fsfe/help">Deltag</text>
|
||||
<text id="fsfe/press">Presse</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<text id="support/support">Støt</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Bliv medlem</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Kort</text>
|
||||
<text id="fellowship/faq">Ofte stillede spørgsmål</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<text id="learn-more">Få mere at vide</text>
|
||||
|
@ -74,38 +74,14 @@
|
||||
<text id="fsfe/help">Mitmachen</text>
|
||||
<text id="fsfe/press">Presse</text>
|
||||
<text id="fsfe/contact">Kontakt</text>
|
||||
<text id="support/donate">Spenden</text>
|
||||
<text id="support/support">Unterstützen</text>
|
||||
<text id="support/order">Fanartikel</text>
|
||||
<text id="support/thankgnus">Unsere Spender</text>
|
||||
<text id="support/become">Werde ein Unterstützer</text>
|
||||
<text id="fellowship/fellowship">Fellowship</text>
|
||||
<text id="fellowship/login">Login</text>
|
||||
<text id="fellowship/join">Beitreten</text>
|
||||
<text id="fellowship/card">Karte</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<text id="campaigns/fya">Free Your Android</text>
|
||||
<text id="campaigns/pdf">Freie PDF-Betrachter</text>
|
||||
<text id="campaigns/ayc">Ask Your Candidates</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Letzte Meldungen</text>
|
||||
<text id="news/events">Nächste Veranstaltungen</text>
|
||||
<text id="news/press">Presse</text>
|
||||
<text id="news/nl">Newsletter</text>
|
||||
<text id="news/planet">Blog Planet</text>
|
||||
<text id="ftf/legal">Rechtliche Unterstützung</text>
|
||||
<text id="ftf/services">Angebote und Treuhänder</text>
|
||||
<text id="ftf/doc">Dokumentation</text>
|
||||
<text id="ftf/network">Netzwerk zu Rechtsfragen</text>
|
||||
<text id="ftf/conference">Konferenzen</text>
|
||||
<text id="ftf/contact">Kontakt zum juristischen Team</text>
|
||||
<text id="fs/fs">Freie Software</text>
|
||||
<text id="fs/basics">Grundlagen über Freie Software</text>
|
||||
<text id="fs/def">Definition</text>
|
||||
<text id="fs/soc">Freie Gesellschaft</text>
|
||||
<text id="fs/edu">Bildung</text>
|
||||
<text id="fs/buz">Wirtschaft</text>
|
||||
<text id="community/discuss">Diskussionen über Freie Software</text>
|
||||
|
||||
<text id="motto-fsfs">Freie Software, Freie Gesellschaft!</text>
|
||||
|
@ -64,37 +64,13 @@
|
||||
<text id="fsfe/help">Συμβάλλετε</text>
|
||||
<text id="fsfe/press">Τύπος</text>
|
||||
<text id="fsfe/contact">Επικοινωνήστε μαζί μας</text>
|
||||
<text id="support/donate">Δωρεές</text>
|
||||
<text id="support/support">Υποστήριξη</text>
|
||||
<text id="support/order">Κατάστημα</text>
|
||||
<text id="support/thankgnus">Δωροθέτες</text>
|
||||
<text id="fellowship/fellowship">Κοινότητα</text>
|
||||
<text id="fellowship/login">Σύνδεση</text>
|
||||
<text id="fellowship/join">Εγγραφή</text>
|
||||
<text id="fellowship/card">Κάρτα</text>
|
||||
<text id="fellowship/faq">Συχνές ερωτήσεις</text>
|
||||
<text id="campaigns/dfd">Ημέρα Ελευθερίας Εγγράφων</text>
|
||||
<text id="campaigns/fya">Ελευθερώστε το Android σας</text>
|
||||
<text id="campaigns/pdf">Προγράμματα ανάγνωσης αρχείων PDF</text>
|
||||
<text id="campaigns/ayc">Ρωτήστε τους υποψηφίους σας</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Τελευταία νέα</text>
|
||||
<text id="news/events">Επόμενες εκδηλώσεις</text>
|
||||
<text id="news/press">Αίθουσα Τύπου</text>
|
||||
<text id="news/nl">Ενημερωτικά δελτία</text>
|
||||
<text id="news/planet">Ιστολόγια Μελών</text>
|
||||
<text id="ftf/legal">Νομική υποστήριξη</text>
|
||||
<text id="ftf/services">Υπηρεσίες και Εμπιστευτικότητα</text>
|
||||
<text id="ftf/doc">Τεκμηρίωση</text>
|
||||
<text id="ftf/network">Νομικό δίκτυο</text>
|
||||
<text id="ftf/conference">Συνέδρια</text>
|
||||
<text id="ftf/contact">Επαφή με τη Νομική Ομάδα του FSFE</text>
|
||||
<text id="fs/fs">Ελεύθερο Λογισμικό</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<text id="fs/def">Ορισμός</text>
|
||||
<text id="fs/soc">Ελεύθερη Κοινωνία</text>
|
||||
<text id="fs/edu">Εκπαίδευση</text>
|
||||
<text id="fs/buz">Επιχειρήσεις</text>
|
||||
<text id="community/discuss">Συζητήσεις για το Ελεύθερο Λογισμικό</text>
|
||||
<text id="motto-fsfs">Ελεύθερο Λογισμικό, Ελεύθερη Κοινωνία!</text>
|
||||
<text id="motto-fellowship">Εγγραφείτε στην κοινότητα του FSFE!</text>
|
||||
|
@ -74,38 +74,14 @@
|
||||
<text id="fsfe/help">Contribute</text>
|
||||
<text id="fsfe/press">Press</text>
|
||||
<text id="fsfe/contact">Contact us</text>
|
||||
<text id="support/donate">Donate</text>
|
||||
<text id="support/support">Support</text>
|
||||
<text id="support/order">Shop</text>
|
||||
<text id="support/thankgnus">Donors</text>
|
||||
<text id="support/become">Become a supporter</text>
|
||||
<text id="fellowship/fellowship">Fellowship</text>
|
||||
<text id="fellowship/login">Login</text>
|
||||
<text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Card</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<text id="campaigns/fya">Free Your Android</text>
|
||||
<text id="campaigns/pdf">PDF readers</text>
|
||||
<text id="campaigns/ayc">Ask your candidates</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Latest News</text>
|
||||
<text id="news/events">Upcoming Events</text>
|
||||
<text id="news/press">Press Room</text>
|
||||
<text id="news/nl">Newsletters</text>
|
||||
<text id="news/planet">Planet blogs</text>
|
||||
<text id="ftf/legal">Legal support</text>
|
||||
<text id="ftf/services">Services and Fiduciary</text>
|
||||
<text id="ftf/doc">Documentation</text>
|
||||
<text id="ftf/network">Legal Network</text>
|
||||
<text id="ftf/conference">Conferences</text>
|
||||
<text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<text id="fs/fs">Free Software</text>
|
||||
<text id="fs/basics">Free Software Basics</text>
|
||||
<text id="fs/def">Definition</text>
|
||||
<text id="fs/soc">Free Society</text>
|
||||
<text id="fs/edu">Education</text>
|
||||
<text id="fs/buz">Business</text>
|
||||
<text id="community/discuss">Free Software Discussions</text>
|
||||
|
||||
<text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
|
@ -57,37 +57,13 @@
|
||||
<text id="fsfe/help">Helpu</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -68,37 +68,13 @@
|
||||
<text id="fsfe/help">Colabore</text>
|
||||
<text id="fsfe/press">Prensa</text>
|
||||
<text id="fsfe/contact">Contactar</text>
|
||||
<text id="support/donate">Donaciones</text>
|
||||
<text id="support/support">Soporte</text>
|
||||
<text id="support/order">Tienda</text>
|
||||
<text id="support/thankgnus">Gracias GNUs</text>
|
||||
<text id="fellowship/fellowship">Fellowship</text>
|
||||
<text id="fellowship/login">Iniciar sesión</text>
|
||||
<text id="fellowship/join">Únase</text>
|
||||
<text id="fellowship/card">Tarjeta</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<text id="campaigns/dfd">Día de los Documentos Libres</text>
|
||||
<text id="campaigns/fya">Libera tu Android</text>
|
||||
<text id="campaigns/pdf">Lectores de PDF</text>
|
||||
<text id="campaigns/ayc">Pregunte a sus candidatos</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Últimas noticias</text>
|
||||
<text id="news/events">Próximos actos</text>
|
||||
<text id="news/press">Sala de Prensa</text>
|
||||
<text id="news/nl">Boletín de noticias</text>
|
||||
<text id="news/planet">Planeta de blogs</text>
|
||||
<text id="ftf/legal">Soporte legal</text>
|
||||
<text id="ftf/services">Servicios y fiduciarios</text>
|
||||
<text id="ftf/doc">Documentación</text>
|
||||
<text id="ftf/network">Red Legal</text>
|
||||
<text id="ftf/conference">Conferencias</text>
|
||||
<text id="ftf/contact">Contactar con el equipo legal de la FSFE</text>
|
||||
<text id="fs/fs">Software Libre</text>
|
||||
<text id="fs/basics">Lo básico sobre Software Libre</text>
|
||||
<text id="fs/def">Definición</text>
|
||||
<text id="fs/soc">Sociedad Libre</text>
|
||||
<text id="fs/edu">Educación</text>
|
||||
<text id="fs/buz">Empresas</text>
|
||||
<text id="community/discuss">Discusiones sobre Software Libre</text>
|
||||
|
||||
<text id="motto-fsfs">¡Software Libre, Sociedad Libre!</text>
|
||||
|
@ -60,37 +60,13 @@
|
||||
<text id="fsfe/help">Aita kaasa</text>
|
||||
<text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<text id="support/support">Avalda toetust</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Ühine</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Kaart</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<text id="learn-more">Loe lisa</text>
|
||||
|
@ -61,37 +61,13 @@
|
||||
<text id="fsfe/help">Osallistu</text>
|
||||
<text id="fsfe/press">Lehdistö</text>
|
||||
<text id="fsfe/contact">Ota yhteyttä</text>
|
||||
<text id="support/donate">Donate</text>
|
||||
<text id="support/support">Tue</text>
|
||||
<text id="support/order">Kauppa</text>
|
||||
<text id="support/thankgnus">Lahjoittajamme</text>
|
||||
<text id="fellowship/fellowship">Fellowship</text>
|
||||
<text id="fellowship/login">Kirjaudu</text>
|
||||
<text id="fellowship/join">Liity</text>
|
||||
<text id="fellowship/card">Kortti</text>
|
||||
<text id="fellowship/faq">UKK</text>
|
||||
<text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<text id="campaigns/fya">Free Your Android</text>
|
||||
<text id="campaigns/pdf">PDF-lukijat</text>
|
||||
<text id="campaigns/ayc">Kysy edustajiltasi</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Tuoreimmat uutiset</text>
|
||||
<text id="news/events">Tulevat tapahtumat</text>
|
||||
<text id="news/press">Lehdistölle</text>
|
||||
<text id="news/nl">Uutiskirjeet</text>
|
||||
<text id="news/planet">Blogiplaneetta</text>
|
||||
<text id="ftf/legal">Juridinen tuki</text>
|
||||
<text id="ftf/services">Palvelut ja luottamushenkilöt</text>
|
||||
<text id="ftf/doc">Asiakirjat</text>
|
||||
<text id="ftf/network">Yhteistyöverkosto</text>
|
||||
<text id="ftf/conference">Konferenssit</text>
|
||||
<text id="ftf/contact">Ota yhteyttä FSFE:n lakiasioiden tiimiin</text>
|
||||
<text id="fs/fs">Vapaa ohjelmisto</text>
|
||||
<text id="fs/basics">Perustietoja vapaista ohjelmistoista</text>
|
||||
<text id="fs/def">Määritelmä</text>
|
||||
<text id="fs/soc">Vapaa yhteiskunta</text>
|
||||
<text id="fs/edu">Opetus</text>
|
||||
<text id="fs/buz">Liiketoiminta</text>
|
||||
<text id="motto-fsfs">Vapaat ohjelmistot, vapaa yhteiskunta!</text>
|
||||
<text id="motto-fellowship">Liity FSFE:n yhteisöön!</text>
|
||||
<text id="learn-more">Opi lisää</text>
|
||||
|
@ -81,38 +81,14 @@ permise sur tout support, pourvu que cette notice soit préservée.
|
||||
<text id="fsfe/help">Contribuer</text>
|
||||
<text id="fsfe/press">Presse</text>
|
||||
<text id="fsfe/contact">Nous contacter</text>
|
||||
<text id="support/donate">Faire un don</text>
|
||||
<text id="support/support">Nous soutenir</text>
|
||||
<text id="support/order">Boutique</text>
|
||||
<text id="support/thankgnus">Nos donateurs</text>
|
||||
<text id="support/become">Devenez un soutien</text>
|
||||
<text id="fellowship/fellowship">La Fellowship</text>
|
||||
<text id="fellowship/login">Connexion</text>
|
||||
<text id="fellowship/join">Adhérer</text>
|
||||
<text id="fellowship/card">Carte</text>
|
||||
<text id="fellowship/faq">Questions</text>
|
||||
<text id="campaigns/dfd">Journée de Libération des Documents</text>
|
||||
<text id="campaigns/fya">Libérez votre Android !</text>
|
||||
<text id="campaigns/pdf">Lecteurs PDF</text>
|
||||
<text id="campaigns/ayc">Questionnez vos candidats</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Dernières nouvelles</text>
|
||||
<text id="news/events">Évènements à venir</text>
|
||||
<text id="news/press">Espace presse</text>
|
||||
<text id="news/nl">Lettres d’actualité</text>
|
||||
<text id="news/planet">Blogs de l'aggrégateur</text>
|
||||
<text id="ftf/legal">Assistance juridique</text>
|
||||
<text id="ftf/services">Services et fiducie</text>
|
||||
<text id="ftf/doc">Documentation</text>
|
||||
<text id="ftf/network">Réseau juridique</text>
|
||||
<text id="ftf/conference">Conférences</text>
|
||||
<text id="ftf/contact">Contacter l’équipe juridique de la FSFE</text>
|
||||
<text id="fs/fs">Logiciel Libre</text>
|
||||
<text id="fs/basics">Bases du Logiciel Libre</text>
|
||||
<text id="fs/def">Définition</text>
|
||||
<text id="fs/soc">Société libre</text>
|
||||
<text id="fs/edu">Éducation</text>
|
||||
<text id="fs/buz">Économie</text>
|
||||
<text id="community/discuss">Discussions sur le Logiciel Libre</text>
|
||||
|
||||
<text id="motto-fsfs">Logiciel Libre, Société Libre !</text>
|
||||
|
@ -58,37 +58,13 @@
|
||||
<text id="fsfe/help">Uključite se</text>
|
||||
<text id="fsfe/press">Mediji</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Kartica</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<text id="learn-more">Saznajte više</text>
|
||||
|
@ -53,37 +53,13 @@
|
||||
<text id="fsfe/help">Vállaljon részt</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -74,38 +74,14 @@
|
||||
<text id="fsfe/help">Partecipare</text>
|
||||
<text id="fsfe/press">Stampa</text>
|
||||
<text id="fsfe/contact">Contattaci</text>
|
||||
<text id="support/donate">Donazioni</text>
|
||||
<text id="support/support">Sostienici</text>
|
||||
<text id="support/order">Negozio</text>
|
||||
<text id="support/thankgnus">I nostri donatori</text>
|
||||
<text id="support/become">Diventa sostenitore</text>
|
||||
<text id="fellowship/fellowship">La Fellowship</text>
|
||||
<text id="fellowship/login">Login</text>
|
||||
<text id="fellowship/join">Diventa Fellow</text>
|
||||
<text id="fellowship/card">Smartcard</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<text id="campaigns/fya">Libera il tuo Android</text>
|
||||
<text id="campaigns/pdf">Lettori PDF</text>
|
||||
<text id="campaigns/ayc">Chiedi ai tuoi candidati</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Ultime notizie</text>
|
||||
<text id="news/events">Prossimi eventi</text>
|
||||
<text id="news/press">Comunicati stampa</text>
|
||||
<text id="news/nl">Newsletter</text>
|
||||
<text id="news/planet">Planet blog</text>
|
||||
<text id="ftf/legal">Supporto legale</text>
|
||||
<text id="ftf/services">Servizi e Fiduciari</text>
|
||||
<text id="ftf/doc">Documentazione</text>
|
||||
<text id="ftf/network">Rete legale</text>
|
||||
<text id="ftf/conference">Conferenze</text>
|
||||
<text id="ftf/contact">Contatta il Team Legale di FSFE</text>
|
||||
<text id="fs/fs">Software Libero</text>
|
||||
<text id="fs/basics">Le basi del Software Libero</text>
|
||||
<text id="fs/def">Definizione</text>
|
||||
<text id="fs/soc">Società Libera</text>
|
||||
<text id="fs/edu">Istruzione</text>
|
||||
<text id="fs/buz">Business</text>
|
||||
<text id="community/discuss">Discussioni sul Software Libero</text>
|
||||
|
||||
<text id="motto-fsfs">Software Libero, Società Libera!</text>
|
||||
|
@ -55,37 +55,13 @@
|
||||
<text id="fsfe/help">Aktiv be</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -59,37 +59,13 @@
|
||||
<text id="fsfe/help">Активирај се</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -59,37 +59,13 @@
|
||||
<text id="fsfe/help">Bidra</text>
|
||||
<text id="fsfe/press">Presse</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -71,38 +71,14 @@
|
||||
<text id="fsfe/help">Bijdragen</text>
|
||||
<text id="fsfe/press">Pers</text>
|
||||
<text id="fsfe/contact">Contact</text>
|
||||
<text id="support/donate">Doneer</text>
|
||||
<text id="support/support">Steun</text>
|
||||
<text id="support/order">Fan-artikelen</text>
|
||||
<text id="support/thankgnus">Donoren</text>
|
||||
<text id="support/become">Word een supporter</text>
|
||||
<text id="fellowship/fellowship">Fellowship</text>
|
||||
<text id="fellowship/login">Login</text>
|
||||
<text id="fellowship/join">Meedoen</text>
|
||||
<text id="fellowship/card">Kaart</text>
|
||||
<text id="fellowship/faq">Veelgestelde vragen</text>
|
||||
<text id="campaigns/dfd">Document Vrijheidsdag</text>
|
||||
<text id="campaigns/fya">Bevrijd uw Android</text>
|
||||
<text id="campaigns/pdf">PDF-lezers</text>
|
||||
<text id="campaigns/ayc">Vraag het uw kandidaten</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Laatste nieuws</text>
|
||||
<text id="news/events">Komende evenementen</text>
|
||||
<text id="news/press">Voor de pers</text>
|
||||
<text id="news/nl">Nieuwsbrieven</text>
|
||||
<text id="news/planet">Planet blogs</text>
|
||||
<text id="ftf/legal">Juridische steun</text>
|
||||
<text id="ftf/services">Diensten en machtigingen</text>
|
||||
<text id="ftf/doc">Documentatie</text>
|
||||
<text id="ftf/network">Juridisch netwerk</text>
|
||||
<text id="ftf/conference">Conferenties</text>
|
||||
<text id="ftf/contact">Contact met FSFE Juridisch Team</text>
|
||||
<text id="fs/fs">Vrije Software</text>
|
||||
<text id="fs/basics">Vrije Software basis</text>
|
||||
<text id="fs/def">Definitie</text>
|
||||
<text id="fs/soc">Vrije Samenleving</text>
|
||||
<text id="fs/edu">Onderwijs</text>
|
||||
<text id="fs/buz">Bedrijven</text>
|
||||
<text id="community/discuss">Vrije Softwarediscussies</text>
|
||||
|
||||
<text id="motto-fsfs">Vrije Software, Vrije Samenleving!</text>
|
||||
|
@ -60,37 +60,13 @@
|
||||
<text id="fsfe/help">Bli aktiv</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -83,37 +83,13 @@
|
||||
<text id="fsfe/help">Włącz się</text>
|
||||
<text id="fsfe/press">Dla prasy</text>
|
||||
<text id="fsfe/contact">Kontakt</text>
|
||||
<text id="support/donate">Darowizny</text>
|
||||
<text id="support/support">Wsparcie finansowe</text>
|
||||
<text id="support/order">Sklep</text>
|
||||
<text id="support/thankgnus">Darczyńcy</text>
|
||||
<text id="fellowship/fellowship">Członkostwo w fundacji</text>
|
||||
<text id="fellowship/login">Login</text>
|
||||
<text id="fellowship/join">Dołącz</text>
|
||||
<text id="fellowship/card">Karta</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<text id="campaigns/fya">Free Your Android</text>
|
||||
<text id="campaigns/pdf">PDF readers</text>
|
||||
<text id="campaigns/ayc">Zapytaj swojego kandydata</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Najświeższe wiadomości</text>
|
||||
<text id="news/events">Nadchodzące wydarzenia</text>
|
||||
<text id="news/press">Prasa i Media</text>
|
||||
<text id="news/nl">Newslettery</text>
|
||||
<text id="news/planet">Blogi Planety</text>
|
||||
<text id="ftf/legal">Wsparcie prawne</text>
|
||||
<text id="ftf/services">Usługi powiernicze i inne</text>
|
||||
<text id="ftf/doc">Dokumentacja</text>
|
||||
<text id="ftf/network">Siatka prawna</text>
|
||||
<text id="ftf/conference">Konferencje</text>
|
||||
<text id="ftf/contact">Skontaktuj się z prawnikami FSFE</text>
|
||||
<text id="fs/fs">Wolne Oprogramowanie</text>
|
||||
<text id="fs/basics">Fundamenty Wolnego Oprogramowania</text>
|
||||
<text id="fs/def">Definicja</text>
|
||||
<text id="fs/soc">Wolne społeczeństwo</text>
|
||||
<text id="fs/edu">Edukacja</text>
|
||||
<text id="fs/buz">Biznes</text>
|
||||
<text id="community/discuss">Dyskusje nt Wolnego Oprogramowania</text>
|
||||
|
||||
<text id="motto-fsfs">Wolne Oprogramowanie, wolne społeczeństwo!</text>
|
||||
|
@ -49,38 +49,14 @@
|
||||
<text id="fsfe/help">Participe</text>
|
||||
<text id="fsfe/press">Imprensa</text>
|
||||
<text id="fsfe/contact">Contacte-nos</text>
|
||||
<text id="support/donate">Doe</text>
|
||||
<text id="support/support">Apoie</text>
|
||||
<text id="support/order">Loja</text>
|
||||
<text id="support/thankgnus">Doadores</text>
|
||||
<text id="support/become">Torne-se um apoiante</text>
|
||||
<text id="fellowship/fellowship">Junte-se</text>
|
||||
<text id="fellowship/login">Login</text>
|
||||
<text id="fellowship/join">Junte-se</text>
|
||||
<text id="fellowship/card">Cartão</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<text id="campaigns/dfd">Dia da Liberdade Documental</text>
|
||||
<text id="campaigns/fya">Liberte o seu Android</text>
|
||||
<text id="campaigns/pdf">Leitores de PDF</text>
|
||||
<text id="campaigns/ayc">Pergunte aos seus candidatos</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Últimas notícias</text>
|
||||
<text id="news/events">Próximos eventos</text>
|
||||
<text id="news/press">Sala de Imprensa</text>
|
||||
<text id="news/nl">Boletins Informativos</text>
|
||||
<text id="news/planet">Planeta de Blogs</text>
|
||||
<text id="ftf/legal">Apoio legal</text>
|
||||
<text id="ftf/services">Serviços e Fiduciária</text>
|
||||
<text id="ftf/doc">Documentação</text>
|
||||
<text id="ftf/network">Rede Legal</text>
|
||||
<text id="ftf/conference">Conferências</text>
|
||||
<text id="ftf/contact">Contacte a Equipa Legal da FSFE</text>
|
||||
<text id="fs/fs">Software Livre</text>
|
||||
<text id="fs/basics">Básicos do Software Livre</text>
|
||||
<text id="fs/def">Definição</text>
|
||||
<text id="fs/soc">Sociedade Livre</text>
|
||||
<text id="fs/edu">Educação</text>
|
||||
<text id="fs/buz">Negócios</text>
|
||||
<text id="community/discuss">Discussões de Software Livre</text>
|
||||
<text id="motto-fsfs">Software Livre, Sociedade Livre!</text>
|
||||
<text id="motto-fellowship">Junte-se à comunidade FSFE!</text>
|
||||
|
@ -60,37 +60,13 @@
|
||||
<text id="fsfe/help">Fiți activ</text>
|
||||
<text id="fsfe/press">Presă</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<text id="community/discuss">Discuții despre programe libere</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
|
@ -77,38 +77,14 @@ href="/contribute/translators/translators.html">Помогите нам устр
|
||||
<text id="fsfe/help">Участвовать</text>
|
||||
<text id="fsfe/press">Пресса</text>
|
||||
<text id="fsfe/contact">Контакты</text>
|
||||
<text id="support/donate">Пожертвования</text>
|
||||
<text id="support/support">Поддержка</text>
|
||||
<text id="support/order">Магазин</text>
|
||||
<text id="support/thankgnus">Благодарности</text>
|
||||
<text id="support/become">Стань сторонником</text>
|
||||
<text id="fellowship/fellowship">Содружество</text>
|
||||
<text id="fellowship/login">Авторизоваться</text>
|
||||
<text id="fellowship/join">Присоединяйтесь</text>
|
||||
<text id="fellowship/card">Смарт-карта</text>
|
||||
<text id="fellowship/faq">Вопросы и ответы</text>
|
||||
<text id="campaigns/dfd">День свободы документов</text>
|
||||
<text id="campaigns/fya">Освободи свой Android</text>
|
||||
<text id="campaigns/pdf">Программы чтения PDF</text>
|
||||
<text id="campaigns/ayc">Спроси своих кандидатов</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Последние новости</text>
|
||||
<text id="news/events">Предстоящие события</text>
|
||||
<text id="news/press">Пресс-центр</text>
|
||||
<text id="news/nl">Информационный бюллетень</text>
|
||||
<text id="news/planet">Блоги «Планета»</text>
|
||||
<text id="ftf/legal">Юридическая поддержка</text>
|
||||
<text id="ftf/services">Услуги и доверенности</text>
|
||||
<text id="ftf/doc">Документация</text>
|
||||
<text id="ftf/network">Правовая сеть</text>
|
||||
<text id="ftf/conference">Конференции</text>
|
||||
<text id="ftf/contact">Связаться с юристами</text>
|
||||
<text id="fs/fs">Свободные программы</text>
|
||||
<text id="fs/basics">Основы</text>
|
||||
<text id="fs/def">Истоки и определение</text>
|
||||
<text id="fs/soc">Свободное общество</text>
|
||||
<text id="fs/edu">Образование</text>
|
||||
<text id="fs/buz">Бизнес</text>
|
||||
<text id="motto-fsfs">Свободные программы — свободное общество!</text>
|
||||
<text id="motto-fellowship">Присоединяйтесь к сообществу ЕФСПО!</text>
|
||||
<text id="learn-more">Подробности</text>
|
||||
|
@ -60,37 +60,13 @@
|
||||
<text id="fsfe/help">Pomôžte nám</text>
|
||||
<text id="fsfe/press">Médiá</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Pridajte sa</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Karta</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<text id="learn-more">Dozvedieť sa viac</text>
|
||||
|
@ -59,37 +59,13 @@
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/help">Contribute</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/card">Card</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="learn-more">Learn more</text>
|
||||
|
@ -81,38 +81,14 @@
|
||||
<text id="fsfe/help">Kontribuoni</text>
|
||||
<text id="fsfe/press">Për Shtypin</text>
|
||||
<text id="fsfe/contact">Lidhuni Me Ne</text>
|
||||
<text id="support/donate">Dhuroni</text>
|
||||
<text id="support/support">Përkrahje</text>
|
||||
<text id="support/order">Blini</text>
|
||||
<text id="support/thankgnus">Dhurues</text>
|
||||
<text id="support/become">Bëhuni një përkrahës</text>
|
||||
<text id="fellowship/fellowship">Anëtarësi Shok</text>
|
||||
<text id="fellowship/login">Hyrje</text>
|
||||
<text id="fellowship/join">Bëhuni Pjesë</text>
|
||||
<text id="fellowship/card">Kartë</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<text id="campaigns/dfd">Dita e Lirisë së Dokumenteve</text>
|
||||
<text id="campaigns/fya">Çlironi Android-in Tuaj</text>
|
||||
<text id="campaigns/pdf">Lexues PDF-sh</text>
|
||||
<text id="campaigns/ayc">Pyetni Kandidatët Tuaj</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Lajmet e Reja</text>
|
||||
<text id="news/events">Veprimtari Së Afërmi</text>
|
||||
<text id="news/press">Zyra e Shtypit</text>
|
||||
<text id="news/nl">Buletine</text>
|
||||
<text id="news/planet">Blogje Planet</text>
|
||||
<text id="ftf/legal">Asistencë Ligjore</text>
|
||||
<text id="ftf/services">Shërbime dhe Garant Ligjor</text>
|
||||
<text id="ftf/doc">Dokumentim</text>
|
||||
<text id="ftf/network">Rrjet Ligjor</text>
|
||||
<text id="ftf/conference">Konferenca</text>
|
||||
<text id="ftf/contact">Lidhuni me Ekipin Ligjor të FSFE-së</text>
|
||||
<text id="fs/fs">Software-i i Lirë</text>
|
||||
<text id="fs/basics">Bazat e Software-it të Lirë</text>
|
||||
<text id="fs/def">Përkufizim</text>
|
||||
<text id="fs/soc">Shoqëri e Lirë</text>
|
||||
<text id="fs/edu">Edukim</text>
|
||||
<text id="fs/buz">Biznes</text>
|
||||
<text id="community/discuss">Diskutime Mbi Software-in e Lirë</text>
|
||||
|
||||
<text id="motto-fsfs">Software i Lirë, Shoqëri e Lirë!</text>
|
||||
|
@ -61,37 +61,13 @@
|
||||
<text id="fsfe/help">Укључите се</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/press">Press</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fsfe/contact">Contact us</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/donate">Donate</text>
|
||||
<text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<text id="fellowship/fellowship">Join</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Card</text>
|
||||
<text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/fya">Free Your Android</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/pdf">PDF readers</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/ayc">Ask your candidates</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/drm">DRM.info</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/news">Latest News</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/events">Upcoming Events</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/nl">Newsletters</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/doc">Documentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/conference">Conferences</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fellowship">Join FSFE’s community!</text>
|
||||
<text id="learn-more">Learn more</text>
|
||||
|
@ -59,37 +59,13 @@
|
||||
<text id="fsfe/help">Hjälp</text>
|
||||
<text id="fsfe/press">Press</text>
|
||||
<text id="fsfe/contact">Kontakta oss</text>
|
||||
<text id="support/donate">Donera</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/support">Support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/order">Shop</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="support/thankgnus">Donors</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/fellowship">Fellowship</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/login">Login</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/join">Join</text>
|
||||
<text id="fellowship/card">Kort</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fellowship/faq">F.A.Q.</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="campaigns/dfd">Document Freedom Day</text>
|
||||
<text id="campaigns/fya">Befria Din Android</text>
|
||||
<text id="campaigns/pdf">PDF-läsare</text>
|
||||
<text id="campaigns/ayc">Fråga dina kandidater</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Senaste Nytt</text>
|
||||
<text id="news/events">Kommande Evenemang</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/press">Press Room</text>
|
||||
<text id="news/nl">Nyhetsbrev</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="news/planet">Planet blogs</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/legal">Legal support</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/services">Services and Fiduciary</text>
|
||||
<text id="ftf/doc">Dokumentation</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/network">Legal Network</text>
|
||||
<text id="ftf/conference">Konferenser</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="ftf/contact">Contact FSFE Legal Team</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/fs">Free Software</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/basics">Free Software Basics</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/def">Definition</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/soc">Free Society</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/edu">Education</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="fs/buz">Business</text>
|
||||
<!-- !! MISSING TRANSLATION --> <text id="motto-fsfs">Free Software, Free Society!</text>
|
||||
<text id="motto-fellowship">Gå med FSFE's gemenskap!</text>
|
||||
<text id="learn-more">Lär mer</text>
|
||||
|
@ -77,38 +77,14 @@
|
||||
<text id="fsfe/help">Katkı Yapın</text>
|
||||
<text id="fsfe/press">Basın</text>
|
||||
<text id="fsfe/contact">Bizimle irtibata geçin</text>
|
||||
<text id="support/donate">Bağış</text>
|
||||
<text id="support/support">Destek</text>
|
||||
<text id="support/become">Destekleyin</text>
|
||||
<text id="support/order">Dükkan</text>
|
||||
<text id="support/thankgnus">Bağışçılar</text>
|
||||
<text id="fellowship/fellowship">Üyelik</text>
|
||||
<text id="fellowship/login">Giriş</text>
|
||||
<text id="fellowship/join">Katılım</text>
|
||||
<text id="fellowship/card">Kart</text>
|
||||
<text id="fellowship/faq">S.S.S.</text>
|
||||
<text id="campaigns/dfd">Belge Özgürlüğü Günü</text>
|
||||
<text id="campaigns/fya">Androidinizi özgürleştirin</text>
|
||||
<text id="campaigns/pdf">PDF okuyucular</text>
|
||||
<text id="campaigns/ayc">Adayınıza sorun</text>
|
||||
<text id="campaigns/drm">DRM.info</text>
|
||||
<text id="news/news">Son Haberler</text>
|
||||
<text id="news/events">Yaklaşan Etkinlikler</text>
|
||||
<text id="news/press">Basın Odası</text>
|
||||
<text id="news/nl">Bültenler</text>
|
||||
<text id="news/planet">Blog gezegeni</text>
|
||||
<text id="ftf/legal">Yasal destek</text>
|
||||
<text id="ftf/services">Hizmetler ve Güvence</text>
|
||||
<text id="ftf/doc">Belgeler</text>
|
||||
<text id="ftf/network">Hukuk Ağı</text>
|
||||
<text id="ftf/conference">Konferanslar</text>
|
||||
<text id="ftf/contact">FSFE Hukuk Ekibiyle Bağlantı Kurun</text>
|
||||
<text id="fs/fs">Özgür Yazılım</text>
|
||||
<text id="fs/basics">Özgür Yazılım Temelleri</text>
|
||||
<text id="fs/def">Tanım</text>
|
||||
<text id="fs/soc">Özgür Toplum</text>
|
||||
<text id="fs/edu">Eğitim</text>
|
||||
<text id="fs/buz">İşletme</text>
|
||||
<text id="community/discuss">Özgür Yazılım Tartışmaları</text>
|
||||
<text id="motto-fsfs">Özgür Yazılım, Özgür Toplum!</text>
|
||||
<text id="motto-fellowship">FSFE Topluluğuna Katılın!</text>
|
||||
|
Loading…
x
Reference in New Issue
Block a user