Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Title, text depending on language 

5""" 

6 

7TITLES = { 

8 'en': { 

9 'allblogs': 'All blog posts', 

10 'blocref_node': '', 

11 'blog_entry': 'The original entry is located in <<%s>>, line %d and can be found ', 

12 'blogpost': 'blogpost', 

13 'brefmes': '(<<%s>> : %s, line %d)', 

14 'by category:': 'By category:', 

15 'by month:': 'By month:', 

16 'by title:': 'By title :', 

17 'catsmaonths': 'All categories and months', 

18 'changes': 'Changes', 

19 'cmdmes': '(<<%s>> : %s, line %d)', 

20 'code': 'code', 

21 'download': 'download', 

22 'exmes': '(<<%s>> : %s, line %d)', 

23 'exref_node': 'Examples', 

24 'FAQ': 'FAQ', 

25 'faqmes': '(<<%s>> : %s, line %d)', 

26 'faqref_node': 'FAQ', 

27 'glossary': 'Glossary', 

28 'hide': 'hide', 

29 'In': '<<<', 

30 'license': 'License', 

31 'Magic commands': 'Magic commands', 

32 'main': 'blog list', 

33 'main2': 'blog main page', 

34 'main_title': 'blog page', 

35 'mathdef_node': '', 

36 'mathmes': '(<<%s>> : %s, line %d)', 

37 'more': 'post', 

38 'nbmes': '(<<%s>> : %s, line %d)', 

39 'nbref_node': 'Magic command', 

40 'original entry': 'original entry', 

41 'Out': '>>>', 

42 'Out2': 'Raw', 

43 'outl': 'output', 

44 'page1': 'first page', 

45 'toc': 'Contents', 

46 'toc0': 'Links', 

47 'toc1': 'Information', 

48 'todo': 'Todo', 

49 'todo_node': 'Todo', 

50 'todoext_node': '', 

51 'todomes': '(The <<%s>> is located in %s, line %d.)', 

52 'unhide': 'unhide', 

53 }, 

54 'fr': { 

55 'allblogs': 'Tous les articles de blog', 

56 'blocref_node': '', 

57 'blog_entry': 'Source <<%s>>, line %d and can be found ', 

58 'blogpost': 'article', 

59 'brefmes': '(<<%s>> : %s, ligne %d)', 

60 'by category:': 'Par catégorie :', 

61 'by month:': 'Par mois :', 

62 'by title:': 'Par titre :', 

63 'catsmaonths': 'Catégories et mois', 

64 'changes': 'Changements', 

65 'cmdmes': '(<<%s>> : %s, line %d)', 

66 'code': 'code', 

67 'download': 'télécharger', 

68 'exmes': '(<<%s>> : %s, ligne %d)', 

69 'exref_node': 'Exemples', 

70 'FAQ': 'FAQ', 

71 'faqmes': '(<<%s>> : %s, ligne %d)', 

72 'faqref_node': 'FAQ', 

73 'glossary': 'Glossaire', 

74 'hide': 'cacher', 

75 'In': '<<<', 

76 'license': 'Licence', 

77 'Magic commands': 'Commandes magiques', 

78 'main': "liste d'articles du blog", 

79 'main2': 'page principale du blog', 

80 'main_title': 'page de blog', 

81 'mathdef_node': '', 

82 'mathmes': '(<<%s>> : %s, ligne %d)', 

83 'more': 'article', 

84 'nbmes': '(<<%s>> : %s, ligne %d)', 

85 'nbref_node': 'Commande magique', 

86 'original entry': 'source', 

87 'Out': '>>>', 

88 'Out2': 'Sortie brute', 

89 'outl': 'la sortie', 

90 'page1': 'première page', 

91 'toc': 'Contenu', 

92 'toc0': 'Liens', 

93 'toc1': 'Information', 

94 'todo': 'A faire', 

95 'todo_node': 'A faire', 

96 'todoext_node': '', 

97 'todomes': '(<<%s>> : %s, ligne %d)', 

98 'unhide': 'montrer', 

99 }, 

100}