~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to src/mbase/project/media.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-03-12 08:42:05 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100312084205-kugmzrqqv7zm3k7n
Tags: upstream-0.5.5
ImportĀ upstreamĀ versionĀ 0.5.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include <mlib/string.h>
27
27
#include <mlib/filesystem.h> // MakeAbsolutePath()
 
28
#include <mlib/gettext.h>
28
29
 
29
30
namespace Project
30
31
{
62
63
 
63
64
void VideoMD::AddChapter(ChapterItem chp)
64
65
{
65
 
    chp->mdName = MakeAutoName("Chapter", chpLst.size());
 
66
    chp->mdName = MakeAutoName(_("Chapter"), chpLst.size());
66
67
    chpLst.push_back(chp);
67
68
}
68
69