9 lines
156 B
JavaScript
9 lines
156 B
JavaScript
.
|
|
.
|
|
.
|
|
// Defines a TranslatedPhrase object.
|
|
function TranslatedPhrase(content, translation) {
|
|
this.content = content;
|
|
this.translation = translation;
|
|
}
|