Coverage for pyquickhelper/texthelper/texts_language.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-03 02:21 +0200

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

2""" 

3@file 

4@brief Title, text depending on language 

5""" 

6 

7TITLES = { 

8 'en': { 

9 'ado': 'teen', 

10 'allblogs': 'All blog posts', 

11 'author': 'author', 

12 'blocref_node': '', 

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

14 'blogpost': 'blogpost', 

15 'book': 'book', 

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

17 'by category:': 'By category:', 

18 'by month:': 'By month:', 

19 'by title:': 'By title :', 

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

21 'changes': 'Changes', 

22 'child': 'child', 

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

24 'code': 'code', 

25 'comic': 'comic', 

26 'disc': 'disc', 

27 'download': 'download', 

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

29 'exref_node': 'Examples', 

30 'FAQ': 'FAQ', 

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

32 'faqref_node': 'FAQ', 

33 'film': 'movie', 

34 'glossary': 'Glossary', 

35 'hide': 'hide', 

36 'In': '<<<', 

37 'license': 'License', 

38 'Magic commands': 'Magic commands', 

39 'main': 'blog list', 

40 'main2': 'blog main page', 

41 'main_title': 'blog page', 

42 'manga': 'manga', 

43 'mathdef_node': '', 

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

45 'more': 'post', 

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

47 'nbref_node': 'Magic command', 

48 'original entry': 'original entry', 

49 'Out': '>>>', 

50 'Out2': 'Raw', 

51 'outl': 'output', 

52 'page1': 'first page', 

53 'show': 'show', 

54 'toc': 'Contents', 

55 'toc0': 'Links', 

56 'toc1': 'Information', 

57 'todo': 'Todo', 

58 'todo_node': 'Todo', 

59 'todoext_node': '', 

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

61 'unhide': 'unhide', 

62 }, 

63 'fr': { 

64 'ado': 'ado', 

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

66 'author': 'auteur', 

67 'blocref_node': '', 

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

69 'blogpost': 'article', 

70 'book': 'livre', 

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

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

73 'by month:': 'Par mois :', 

74 'by title:': 'Par titre :', 

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

76 'changes': 'Changements', 

77 'child': 'enfant', 

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

79 'code': 'code', 

80 'comic': 'bande dessinée', 

81 'disc': 'disque', 

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

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

84 'exref_node': 'Exemples', 

85 'FAQ': 'FAQ', 

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

87 'faqref_node': 'FAQ', 

88 'film': 'film', 

89 'glossary': 'Glossaire', 

90 'hide': 'cacher', 

91 'In': '<<<', 

92 'license': 'Licence', 

93 'Magic commands': 'Commandes magiques', 

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

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

96 'main_title': 'page de blog', 

97 'manga': 'dessin animé', 

98 'mathdef_node': '', 

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

100 'more': 'article', 

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

102 'nbref_node': 'Commande magique', 

103 'original entry': 'source', 

104 'Out': '>>>', 

105 'Out2': 'Sortie brute', 

106 'outl': 'la sortie', 

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

108 'show': 'série', 

109 'toc': 'Contenu', 

110 'toc0': 'Liens', 

111 'toc1': 'Information', 

112 'todo': 'A faire', 

113 'todo_node': 'A faire', 

114 'todoext_node': '', 

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

116 'unhide': 'montrer', 

117 }, 

118}