Skip to content

Commit

Permalink
remove unnecessary backslashes
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmuhittin committed May 23, 2019
1 parent becf324 commit e676118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/TranslateFilesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public function translate_php_array_files($locale)
}
continue;
}
$new_lang[$key] = addslashes(self::translate($this->base_locale, $locale, $to_be_translated));
$new_lang[$key] = self::translate($this->base_locale, $locale, $to_be_translated);
if ($this->verbose) {
$this->line($to_be_translated . ' : ' . $new_lang[$key]);
}
Expand Down

0 comments on commit e676118

Please sign in to comment.