Compare commits

..

No commits in common. "e26eb19870a70b1d9eb57119252ec736e9c30317" and "92d07648e36449f7df85a6b0fcbda8edca61554c" have entirely different histories.

35 changed files with 246 additions and 118 deletions

View File

@ -6,31 +6,6 @@
<xsl:element name="header">
<xsl:attribute name="id">top</xsl:attribute>
<xsl:element name="div">
<xsl:attribute name="id">masthead</xsl:attribute>
<xsl:element name="a">
<xsl:attribute name="id">logo</xsl:attribute>
<xsl:attribute name="href"><xsl:value-of select="$urlprefix"/>/</xsl:attribute>
<xsl:element name="span">
<xsl:call-template name="fsfe-gettext">
<xsl:with-param name="id" select="'fsfeurope'"/>
</xsl:call-template>
</xsl:element>
</xsl:element>
<!--/a#logo-->
<xsl:element name="div">
<xsl:attribute name="id">motto</xsl:attribute>
<xsl:text>empowering users </xsl:text>
<xsl:element name="br"/>
<xsl:text>to control technology</xsl:text>
</xsl:element>
<!--/div#motto-->
</xsl:element>
<!--/div#masthead-->
<xsl:element name="nav">
<xsl:attribute name="id">menu</xsl:attribute>
@ -139,6 +114,36 @@
</xsl:element>
<!--/nav#menu-->
<xsl:element name="div">
<xsl:attribute name="id">masthead</xsl:attribute>
<xsl:element name="div">
<xsl:attribute name="id">link-home</xsl:attribute>
<xsl:element name="a">
<xsl:attribute name="href"><xsl:value-of select="$urlprefix"/>/</xsl:attribute>
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'rootpage'" /></xsl:call-template>
</xsl:element>
</xsl:element>
<!--/div#link-home-->
<xsl:element name="div">
<xsl:attribute name="id">logo</xsl:attribute>
<xsl:element name="span">
<xsl:call-template name="fsfe-gettext"><xsl:with-param name="id" select="'fsfeurope'" /></xsl:call-template>
</xsl:element>
</xsl:element>
<!--/div#logo-->
<xsl:element name="div">
<xsl:attribute name="id">motto</xsl:attribute>
empowering users<br class="motto-br" /> to control technology
</xsl:element>
<!--/div#motto-->
</xsl:element>
<!--/div#masthead-->
</xsl:element>
<!--/header#top-->
</xsl:template>

View File

@ -9,6 +9,107 @@ body {
font-family: "Roboto", sans-serif;
}
#logo {
background: url(/graphics/logo_transparent.svg) top left no-repeat;
}
#masthead, #logo {
min-height: 85px;
min-width: 158px;
}
#link-home a {
width: 158px;
height: 85px;
}
@media (max-width: @screen-xs-max) {
#link-home a {
height: 50px;
}
#top {
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
position: relative;
#search {
display: none;
}
}
#masthead {
background-color: #fff;
order: 1;
min-height: 50px;
padding: 10px;
#logo {
background-position: left center;
background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
min-width: 120px;
}
}
#menu {
background-color: #fff;
margin-left: 0;
order: 2;
padding: 10px;
#direct-links {
margin-bottom: 0;
#direct-to-menu-list {
font-size: 1.3em;
}
#direct-to-translations {
position: absolute;
top: 5px;
right: 85px;
}
#direct-to-login {
position: absolute;
top: 5px;
right: 10px;
}
}
#direct-to-home {
display: none;
}
}
#menu-list {
display: block;
margin-top: 10px;
padding-bottom: 0;
}
#index-html {
#main {
padding-top: 0;
}
}
#bottom {
padding: 10px;
}
}
#menu {
@media (min-width: @screen-sm-min) {
margin-left: 200px;
}
}
#followup {
background: url(/graphics/ribbon.svg) no-repeat 100% -40px @body-bg;
text-shadow: rgb(255, 255, 255) 0 0 .5em;

View File

@ -1,8 +1,6 @@
@import "bootstrap/bootstrap.less";
// ============================================================================
// very generic elements
// ============================================================================
/* very generic elements */
body {
@media (min-width: @screen-lg-min) {
@ -139,9 +137,7 @@ div#subpages, .grid-row {
}
}
// ----------------------------------------------------------------------------
// Translation selector
// ----------------------------------------------------------------------------
/* choose your language */
#translations {
.collapse;
@ -183,110 +179,98 @@ div#subpages, .grid-row {
a.close {display: none;}
}
// ----------------------------------------------------------------------------
// Page header
// ----------------------------------------------------------------------------
#top {
@media (max-width: @screen-xs-max) {
padding: 0;
}
}
/* header#top */
#masthead {
margin: 19px 16px 29px 16px;
@media (max-width: @screen-xs-max) {
margin: 0;
background-color: @body-bg;
padding: 10px;
}
display: block;
padding: 3em 1em 0;
position: relative;
width: 100%;
z-index: 100;
@media (min-width: @screen-sm-min) {
.pull-left;
position: relative;
top: -29px;
}
}
#logo {
#logo span {
font-size: .00001em;
color: transparent;
visibility: hidden;
}
#link-home a {
display: block;
height: 85px;
width: 158px;
background: url(/graphics/logo_transparent.svg) top left no-repeat;
@media (max-width: @screen-xs-max) {
height: 50px;
width: 93px;
background-size: contain;
}
span {
display: none;
}
position: absolute;
font-size:0.00001em;
color: transparent;
}
#motto {
color: @brand-strong;
font-size: 18px;
font-weight: 500;
padding-left: 52px;
padding-left: 30px;
.motto-br {
display: inline;
}
@media (min-width: @screen-xs-min) {
br {
.motto-br {
display: none;
}
}
@media (max-width: @screen-xs-max) {
padding-left: 30px;
@media (min-width: @screen-sm-min) {
padding-left: 52px;
white-space: nowrap;
}
}
#menu {
text-align: right;
@media (max-width: @screen-xs-max) {
background-color: @body-bg;
padding: 5px 10px 10px 10px;
}
position: relative;
z-index: 200;
@media (min-width: @screen-sm-min) {
.pull-right;
text-align: right;
}
}
#direct-links {
.clearfix;
@media (min-width: @screen-sm-min) {
margin-bottom: 2em;
}
visibility: hidden;
margin-bottom: 2em;
span, a {
display: none;
padding: .5em;
}
#direct-to-menu-list, #direct-to-translations, #direct-to-login {
visibility: visible;
display: inline-block;
.fa {
padding-right: .3em;
}
}
#direct-to-menu-list {
@media (max-width: @screen-xs-max) {
display: inline-block;
.pull-left;
font-size: 1.3em;
@media (min-width: @screen-sm-min) {
#direct-to-menu-list {
visibility: hidden;
display: none;
}
}
#direct-to-translations, #direct-to-login {
display: inline-block;
}
}
.no-js #direct-links {
#direct-to-translations, #direct-to-menu-list {
display: none;
}
visibility: visible;
span, a { display: inline-block; }
#direct-to-translations, #direct-to-menu-list {display: none;}
}
#menu-list {
@ -294,13 +278,6 @@ div#subpages, .grid-row {
.collapse;
padding-bottom: 1.5em;
@media (max-width: @screen-xs-max) {
display: block;
margin-top: 10px;
padding-bottom: 0;
text-align: left;
}
@media (min-width: @screen-xs-min) {
.collapse.in;
padding-bottom: 0.5em;
@ -328,13 +305,43 @@ div#subpages, .grid-row {
.collapse.in;
@media (min-width: @screen-xs-min) {
display: inline-block;
padding-bottom: 0.5em;
}
}
// ----------------------------------------------------------------------------
// Page body
// ----------------------------------------------------------------------------
#search {
form, p {
margin: 0;
padding: 0;
}
label, input[type="image"] {
position: absolute;
font-size: 0.0001em;
width: 25px;
height: 25px;
margin: 5px;
opacity: 0;
}
button, input[name="query"] {
.form-control;
padding-left: 2.5em;
display: inline;
text-align: left;
width: 70%;
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s, width 0.15s ease-in-out 0s;
background: url(/graphics/icons/search-button.png) 0.6em 50% no-repeat rgba(255,255,255,0.75);
}
button, input[name="query"]:focus {
width: 100%;
background-color: rgb(255,255,255);
}
}
/* grid */
.article, .planet {
@ -425,14 +432,6 @@ div#subpages, .grid-row {
}
}
@media (max-width: @screen-xs-max) {
#index-html {
#main {
padding-top: 0;
}
}
}
#content {
max-width: 99ex;
margin-left: auto;
@ -957,9 +956,7 @@ div#subpages, .grid-row {
}
}
// ----------------------------------------------------------------------------
// Page footer
// ----------------------------------------------------------------------------
/* footer#bottom */
#bottom {
background: @body-bg;
@ -968,10 +965,6 @@ div#subpages, .grid-row {
padding: 5em 0;
width: 100%;
@media (max-width: @screen-xs-max) {
padding: 10px;
}
section {
.container;
margin-bottom: 1.5em;
@ -1075,10 +1068,7 @@ div#subpages, .grid-row {
}
// ============================================================================
// Other elements
// ============================================================================
/* other elements */
#campaigns-boxes {
height: 0;
margin: -1em -1.5em;

View File

@ -108,6 +108,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -115,6 +115,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -116,6 +116,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<text id="source">Izvorni kod</text>

View File

@ -114,6 +114,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -113,6 +113,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -118,6 +118,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<text id="source">Kildekode</text>

View File

@ -132,6 +132,7 @@
<text id="menu">Menü</text>
<text id="content">Inhalt</text>
<text id="page-info">Seiteninformation</text>
<text id="rootpage">Free Software Foundation Europe</text>
<text id="sitemap">Sitemap</text>
<text id="go-top">Zum Anfang gehen</text>
<text id="source">Quellcode</text>

View File

@ -120,6 +120,7 @@
<text id="menu">Μενού</text>
<text id="content">Περιεχόμενο</text>
<text id="page-info">Πληροφορίες σελίδας</text>
<text id="rootpage">Αρχική</text>
<text id="sitemap">Επισκόπηση ιστοχώρου</text>
<text id="go-top">Μετάβαση στην κορυφή</text>
<text id="source">Πηγαίος κώδικας</text>

View File

@ -134,6 +134,7 @@
<text id="menu">Menu</text>
<text id="content">Content</text>
<text id="page-info">Page info</text>
<text id="rootpage">Home</text>
<text id="sitemap">Sitemap</text>
<text id="go-top">Go to the top</text>
<text id="source">Source code</text>

View File

@ -112,6 +112,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -127,6 +127,7 @@
<text id="menu">Menú</text>
<text id="content">Contenido</text>
<text id="page-info">Información de la página</text>
<text id="rootpage">Inicio</text>
<text id="sitemap">Mapa del sitio</text>
<text id="go-top">Ir al principio</text>
<text id="source">Código fuente</text>

View File

@ -115,6 +115,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<text id="source">Lähtekood</text>

View File

@ -116,6 +116,7 @@
<text id="menu">Valikko</text>
<text id="content">Sisältö</text>
<text id="page-info">Sivun tiedot</text>
<text id="rootpage">Koti</text>
<text id="sitemap">Sivukartta</text>
<text id="go-top">Siirry sivun alkuun</text>
<text id="source">Lähdekoodi</text>

View File

@ -141,6 +141,7 @@ permise sur tout support, pourvu que cette notice soit préservée.
<text id="menu">Menu</text>
<text id="content">Contenu</text>
<text id="page-info">Infos de la page</text>
<text id="rootpage">Accueil</text>
<text id="sitemap">Plan du site</text>
<text id="go-top">Aller en haut</text>
<text id="source">Code source</text>

View File

@ -113,6 +113,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<text id="source">Izvorni kôd</text>

View File

@ -108,6 +108,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -134,6 +134,7 @@
<text id="menu">Menu</text>
<text id="content">Contenuto</text>
<text id="page-info">Informazioni sulla pagina</text>
<text id="rootpage">Home</text>
<text id="sitemap">Mappa del sito</text>
<text id="go-top">Vai all'inizio</text>
<text id="source">Codice sorgente</text>

View File

@ -110,6 +110,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -114,6 +114,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -114,6 +114,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -131,6 +131,7 @@
<text id="menu">Menu</text>
<text id="content">Inhoud</text>
<text id="page-info">Pagina-informatie</text>
<text id="rootpage">Voorpagina</text>
<text id="sitemap">Plattegrond</text>
<text id="go-top">Naar boven</text>
<text id="source">Broncode</text>

View File

@ -115,6 +115,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -142,6 +142,7 @@
<text id="menu">Menu</text>
<text id="content">Zawartość</text>
<text id="page-info">Informacje o stronie</text>
<text id="rootpage">Strona domowa</text>
<text id="sitemap">Mapa strony</text>
<text id="go-top">Wróć na górę</text>
<text id="source">Kod źródłowy</text>

View File

@ -106,6 +106,7 @@
<text id="menu">Menu</text>
<text id="content">Conteúdo</text>
<text id="page-info">Informação da página</text>
<text id="rootpage">Início</text>
<text id="sitemap">Mapa do site</text>
<text id="go-top">Ir para o início</text>
<text id="source">Código-fonte</text>

View File

@ -117,6 +117,7 @@ a primi buletinul lunar FSFE</text>
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -133,6 +133,7 @@ href="/contribute/translators/translators.html">Помогите нам устр
<text id="menu">Меню</text>
<text id="content">Текст страницы</text>
<text id="page-info">Исходный текст</text>
<text id="rootpage">Главная</text>
<text id="sitemap">Карта сайта</text>
<text id="go-top">Перейти наверх страницы</text>
<text id="source">Исходный текст страницы</text>

View File

@ -115,6 +115,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<text id="source">Zdrojový kód</text>

View File

@ -114,6 +114,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<!-- !! MISSING TRANSLATION --> <text id="source">Source code</text>

View File

@ -141,6 +141,7 @@
<text id="menu">Menu</text>
<text id="content">Lëndë</text>
<text id="page-info">Të dhëna faqeje</text>
<text id="rootpage">Kreu</text>
<text id="sitemap">Hartë sajti</text>
<text id="go-top">Shkoni në krye</text>
<text id="source">Kod burim</text>

View File

@ -116,6 +116,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<!-- !! MISSING TRANSLATION --> <text id="content">Content</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<text id="source">Source code</text>

View File

@ -114,6 +114,7 @@
<!-- !! MISSING TRANSLATION --> <text id="menu">Menu</text>
<text id="content">Innehåll</text>
<!-- !! MISSING TRANSLATION --> <text id="page-info">Page info</text>
<!-- !! MISSING TRANSLATION --> <text id="rootpage">Home</text>
<!-- !! MISSING TRANSLATION --> <text id="sitemap">Sitemap</text>
<!-- !! MISSING TRANSLATION --> <text id="go-top">Go to the top</text>
<text id="source">Källkod</text>

View File

@ -135,6 +135,7 @@
<text id="menu">Menü</text>
<text id="content">İçerik</text>
<text id="page-info">Sayfa bilgisi</text>
<text id="rootpage">Anasayfa</text>
<text id="sitemap">Site haritası</text>
<text id="go-top">Yukarıya git</text>
<text id="source">Kaynak kod</text>