Merge pull request #8 from dayjaby/master
adding support for tab-separated translations Former-commit-id: af98d578ab8fe4f19e884eec12d0c7009a4eb873
This commit is contained in:
commit
7f81185736
@ -105,7 +105,7 @@ class DialogPreferences(QtGui.QDialog, gen.preferences_ui.Ui_DialogPreferences):
|
||||
self.comboBoxModel.blockSignals(False)
|
||||
|
||||
allowedTags = {
|
||||
'vocab': ['expression', 'reading', 'glossary', 'sentence'],
|
||||
'vocab': ['expression', 'reading', 'glossary', 'sentence','translation'],
|
||||
'kanji': ['character', 'onyomi', 'kunyomi', 'glossary'],
|
||||
}[name]
|
||||
|
||||
|
@ -507,9 +507,10 @@ class MainWindowReader(QtGui.QMainWindow, gen.reader_ui.Ui_MainWindowReader):
|
||||
lengthMatched = 0
|
||||
if self.dockVocab.isVisible():
|
||||
self.state.vocabDefs, lengthMatched = self.language.findTerm(contentSampleFlat)
|
||||
sentence = reader_util.findSentence(content, samplePosStart)
|
||||
sentence, translation = reader_util.findSentence(content, samplePosStart)
|
||||
for definition in self.state.vocabDefs:
|
||||
definition['sentence'] = sentence
|
||||
definition['translation'] = translation
|
||||
self.updateVocabDefs()
|
||||
|
||||
if self.dockKanji.isVisible():
|
||||
|
@ -78,8 +78,14 @@ def findSentence(content, position):
|
||||
quoteStack.pop()
|
||||
elif c in quotesFwd:
|
||||
quoteStack.insert(0, quotesFwd[c])
|
||||
|
||||
return content[start:end].strip()
|
||||
translation = ''
|
||||
translationStart = content.find('\t',end)
|
||||
if translationStart >= 0:
|
||||
translationEnd = content.find('\n',translationStart)
|
||||
if translationEnd == -1:
|
||||
translationEnd = len(content)
|
||||
translation = content[translationStart+1:translationEnd].strip()
|
||||
return content[start:end].strip(), translation
|
||||
|
||||
|
||||
def formatFields(fields, markup):
|
||||
@ -108,6 +114,7 @@ def markupVocabExp(definition):
|
||||
'reading': definition['reading'] or unicode(),
|
||||
'glossary': definition['glossary'],
|
||||
'sentence': definition.get('sentence'),
|
||||
'translation': definition.get('translation'),
|
||||
'summary': summary
|
||||
}
|
||||
|
||||
@ -119,6 +126,7 @@ def markupVocabReading(definition):
|
||||
'reading': unicode(),
|
||||
'glossary': definition['glossary'],
|
||||
'sentence': definition.get('sentence'),
|
||||
'translation': definition.get('translation'),
|
||||
'summary': definition['reading']
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user