2022-01-12 14:58:42 -08:00

9 lines
156 B
JavaScript

.
.
.
// Defines a TranslatedPhrase object.
function TranslatedPhrase(content, translation) {
this.content = content;
this.translation = translation;
}