#include <stdlib.h>
-#define kNumberOfLanguages 3
+#define kNumberOfLanguages 4
#define kNumberOfStrings 4
#define kLanguage 0
"return to body", // English
"return to body", // Español
"Zum Haupttext", // Deutsch
+ "Retour au texte principal", // Français
"see footnote", // English
"Ver nota de pie", // Español
"Siehe Fußnote", // Deutsch
+ "Voir note de bas de page", // Français
"see citation", // English
"see citation", // Español
"Siehe Zitat", // Deutsch
+ "Voir citation", // Français
"see glossary", // English
"see glossary", // Español
"Siehe Glossar", // Deutsch
+ "Voir glossaire", // Français
};
LC_EN = 0, //!< English is default
LC_ES, //!< Español
LC_DE, //!< Deutsch
+ LC_FR, //!< Français
};
return LC_ES;
} else if (strcmp(l, "de") == 0) {
return LC_DE;
+ } else if (strcmp(l, "fr") == 0) {
+ return LC_FR;
}
return 0;
scratch->language = LC_DE;
scratch->quotes_lang = GERMAN;
} else if (strcmp(temp_char, "fr") == 0) {
- //scratch->language = LC_FR;
+ scratch->language = LC_FR;
scratch->quotes_lang = FRENCH;
} else if (strcmp(temp_char, "nl") == 0) {
//scratch->language = LC_NL;
<p>foo…</p>
-<p><a href="#fn:1" id="fnref:1" title="see footnote" class="footnote">[1]</a></p>
+<p><a href="#fn:1" id="fnref:1" title="Voir note de bas de page" class="footnote">[1]</a></p>
-<p><a href="#cn:1" id="cnref:1" title="see citation" class="citation">[1]</a></p>
+<p><a href="#cn:1" id="cnref:1" title="Voir citation" class="citation">[1]</a></p>
<div class="footnotes">
<hr />
<ol>
<li id="fn:1">
-<p>foo <a href="#fnref:1" title="return to body" class="reversefootnote"> ↩</a></p>
+<p>foo <a href="#fnref:1" title="Retour au texte principal" class="reversefootnote"> ↩</a></p>
</li>
</ol>
<ol>
<li id="cn:1">
-<p>foo <a href="#cnref:1" title="return to body" class="reversecitation"> ↩</a></p>
+<p>foo <a href="#cnref:1" title="Retour au texte principal" class="reversecitation"> ↩</a></p>
</li>
</ol>