Skip to content

Commit

Permalink
Fix loc message for "excludedArguments"
Browse files Browse the repository at this point in the history
  • Loading branch information
mialeska committed Jul 25, 2024
1 parent 94834e5 commit fedfa8d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ protected List<String> getExcludedArguments() {
isValuePresent = false;
}
excludedArguments = isValuePresent ? getSettingsFile().getList(path) : Collections.emptyList();
logCollection("loc.browser.excludedArguments", startArguments);
logCollection("loc.browser.excludedArguments", excludedArguments);
}
return excludedArguments;
}
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/localization/be.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"loc.browser.arguments": "Атрымалі стартавыя аргументы браўзэра з settings файла: %s",
"loc.browser.excludedArguments": "Атрымалі выключаныя аргументы браўзэра з settings файла: %s",
"loc.browser.back": "Вяртаемся да папярэдняй старонкі",
"loc.browser.forward": "Пераходзім да наступнай старонкі",
"loc.browser.capabilities": "Атрымалі capabilities браўзэра з settings файла: %s",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/localization/en.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"loc.browser.arguments": "Got browser start arguments from settings file: %s",
"loc.browser.excludedArguments": "Got excluded browser arguments from settings file: %s",
"loc.browser.back": "Return to previous page",
"loc.browser.forward": "Proceed to the next page",
"loc.browser.capabilities": "Got browser capabilities from settings file: %s",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/localization/pl.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"loc.browser.arguments": "Pobrano argumenty uruchamiania przeglądarki z pliku ustawień: %s",
"loc.browser.excludedArguments": "Pobrano wykluczone argumenty przeglądarki z pliku ustawień: %s",
"loc.browser.back": "Powrót do poprzedniej strony",
"loc.browser.forward": "Przejście do następnej strony",
"loc.browser.capabilities": "Pobrano możliwości przeglądarki z pliku ustawień: %s",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/localization/ru.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"loc.browser.arguments": "Получили стартовые аргументы браузера из settings файла: %s",
"loc.browser.excludedArguments": "Получили исключённые аргументы браузера из settings файла: %s",
"loc.browser.back": "Возврат на предыдущую страницу",
"loc.browser.forward": "Перейти на следующую страницу",
"loc.browser.capabilities": "Получили capabilities браузера из settings файла: %s",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/localization/uk.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"loc.browser.arguments": "Отримані аргументи запуску браузера з файлу налаштувань: %s",
"loc.browser.excludedArguments": "Отримані виключені аргументи браузера з файлу налаштувань: %s",
"loc.browser.back": "Повертання до попередньої сторінки",
"loc.browser.forward": "Перехід до наступної сторінки",
"loc.browser.capabilities": "Отримані можливості браузера з файлу налаштувань: %s",
Expand Down

0 comments on commit fedfa8d

Please sign in to comment.