Skip to content

Commit d9d0667

Browse files
committed
Fix bug
1 parent 6ef5c6b commit d9d0667

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/TranslateStrings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public function translate(int $maxContextItems = 100): void
245245
foreach ($locales as $locale) {
246246
// 소스 언어와 같거나 스킵 목록에 있는 언어는 건너뜀
247247
if ($locale === $this->sourceLocale || in_array($locale, config('ai-translator.skip_locales', []))) {
248-
this->warn('Skipping locale ' . $locale .'.');
248+
$this->warn('Skipping locale ' . $locale .'.');
249249
continue;
250250
}
251251

@@ -274,7 +274,7 @@ public function translate(int $maxContextItems = 100): void
274274
$this->warn('Skipping file ' . basename($file) .'.');
275275
continue;
276276
}
277-
277+
278278
$this->displayFileInfo($file, $locale, $outputFile);
279279

280280
$localeFileCount++;

0 commit comments

Comments
 (0)