File Coverage

blib/lib/Quiz/Flashcards/Audiobanks/Japanese_Words_Radicals.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 1 1 100.0
total 9 11 81.8


line stmt bran cond sub pod time code
1             package Quiz::Flashcards::Audiobanks::Japanese_Words_Radicals;
2            
3 2     2   42886 use warnings;
  2         5  
  2         72  
4 2     2   11 use strict;
  2         4  
  2         399  
5            
6             =head1 NAME
7            
8             Quiz::Flashcards::Audiobanks::Japanese_Words_Radicals - Sound files of japanese words for use with L, includes only radicals
9            
10             =head1 VERSION
11            
12             Version 0.01
13            
14             =cut
15            
16             our $VERSION = '0.01';
17            
18             =head1 DESCRIPTION
19            
20             This module will install wav files containing words spoken by japanese people into your system's distribution share directory. Flashcard sets can then play these files when required.
21            
22             =head1 SYNOPSIS
23            
24             This module is used by L and not on its own. Refer to the source code of L for examples on how to access it.
25            
26             =head1 FUNCTIONS
27            
28             =head2 get_content_list
29            
30             Exports an array with the names of the contained files. The filenames can be used with L's C and L's C to locate the exact path to the files.
31            
32             =cut
33            
34             sub get_content_list {
35 0     0 1   return qw(
36             akubi.wav gen.wav kan.wav kyou.wav samurai.wav tani.wav
37             ama.wav hachi.wav kane.wav kyuu.wav san.wav tatsu.wav
38             ame.wav hairi.wav kara.wav mame.wav sara.wav tei.wav
39             amime.wav han.wav kata.wav mata.wav sato.wav teki.wav
40             ana.wav hatsu.wav katana.wav men.wav sei.wav ten.wav
41             ao.wav hiki.wav kawa.wav mimi.wav seki.wav tetsu.wav
42             ashi.wav hito.wav kawara.wav moku.wav sen.wav tou.wav
43             bai.wav hoko.wav kei.wav mon.wav setsu.wav tsuchi.wav
44             baku.wav hou.wav ketsu.wav mushi.wav shika.wav tsuki.wav
45             beki.wav hyou.wav kibi.wav nichi.wav shimesu.wav tsume.wav
46             ben.wav ichi.wav kigamae.wav niku.wav shin.wav uri.wav
47             boku.wav ii.wav kin.wav nishi.wav shiro.wav ushi.wav
48             bou.wav inu.wav kokoro.wav oiru.wav shita.wav usu.wav
49             bun.wav iro.wav koku.wav ono.wav shoku.wav yaku.wav
50             chaku.wav ishi.wav kome.wav oo.wav shou.wav yoku.wav
51             chichi.wav itaru.wav kon.wav oto.wav shuu.wav you.wav
52             chikara.wav ito.wav kotsu.wav otsu.wav somuku.wav yumi.wav
53             daku.wav jin.wav kou.wav ou.wav sou.wav yuu.wav
54             fude.wav kado.wav kuchi.wav rai.wav sui.wav
55             fuu.wav kagu.wav kuro.wav roku.wav sun.wav
56             fuyu.wav kaku.wav kuruma.wav ryuu.wav tai.wav
57             gatsu.wav kame.wav kusa.wav sai.wav take.wav
58             );
59             }
60            
61             =head1 AUTHOR
62            
63             Christian Walde, C<< >>
64            
65             =head1 BUGS
66            
67             Please report any bugs or feature requests to C, or through
68             the web interface at L. I will be notified, and then you'll
69             automatically be notified of progress on your bug as I make changes.
70            
71            
72            
73            
74             =head1 SUPPORT
75            
76             Please refer to L for further information.
77            
78            
79             =head1 COPYRIGHT & LICENSE
80            
81             Copyright 2009 Christian Walde, all rights reserved.
82            
83             This program is free software; you can redistribute it and/or modify it
84             under the same terms as Perl itself.
85            
86            
87             =cut
88            
89             1; # End of Quiz::Flashcards::Audiobanks::Japanese_Words_Radicals