Exemplo n.º 1
0
 def path(self):
     return join(self.module.branch.path,
                 messagePath(self.type, self.isPot(), self.module.branch.name),
                 self.module.name,
                 self.name + self.suffix())
Exemplo n.º 2
0
 def templatePath(self):
     return join(self.branch.path,
                 messagePath(self.type, True, self.branch.name),
                 self.name)
Exemplo n.º 3
0
 def poPath(self):
     return join(self.branch.path,
                 messagePath(self.type, False, self.branch.name),
                 self.name)
Exemplo n.º 4
0
 def poFilePath(self):
     return join(settings.PY10N_FILE_BASEPATH,
                 self.module.branch.path,
                 messagePath(self.type, False, self.module.branch.name),
                 self.module.name,
                 self.name + ".po")
Exemplo n.º 5
0
 def poPath(self):
     return join(self.branch.path,
                 messagePath(self.type, False, self.branch.name), self.name)
Exemplo n.º 6
0
 def templatePath(self):
     return join(self.branch.path,
                 messagePath(self.type, True, self.branch.name), self.name)
Exemplo n.º 7
0
 def poFilePath(self):
     return join(settings.PY10N_FILE_BASEPATH, self.module.branch.path,
                 messagePath(self.type, False, self.module.branch.name),
                 self.module.name, self.name + ".po")
Exemplo n.º 8
0
 def path(self):
     return join(
         self.module.branch.path,
         messagePath(self.type, self.isPot(), self.module.branch.name),
         self.module.name, self.name + self.suffix())