Skip to content

Commit

Permalink
Fix: Fix syntax in translation files
Browse files Browse the repository at this point in the history
  • Loading branch information
Antiz96 committed Jul 8, 2024
1 parent 0b5e2f4 commit 27b563d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions po/arch-update.pot
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,8 @@ msgstr ""
#: src/script/arch-update.sh:847
#, sh-format
msgid ""
"Unable to determine the editor to use\\nThe $EDITOR environment variable is "
"not set and \"nano\" (fallback option) is not installed"
"Unable to determine the editor to use\\nThe \"EDITOR\" environment variable "
"is not set and \"nano\" (fallback option) is not installed"
msgstr ""

#: src/script/arch-update.sh:865
Expand Down
6 changes: 3 additions & 3 deletions po/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -615,10 +615,10 @@ msgstr ""
#: src/script/arch-update.sh:847
#, sh-format
msgid ""
"Unable to determine the editor to use\\nThe $EDITOR environment variable is "
"not set and \"nano\" (fallback option) is not installed"
"Unable to determine the editor to use\\nThe \"EDITOR\" environment variable "
"is not set and \"nano\" (fallback option) is not installed"
msgstr ""
"Impossible de déterminer l'éditeur à utiliser\\n La variable d'environnement $EDITOR "
"Impossible de déterminer l'éditeur à utiliser\\n La variable d'environnement \"EDITOR\" "
"n'est pas paramétrée et \"nano\" (option de secours) n'est pas installé"

#: src/script/arch-update.sh:865
Expand Down
2 changes: 1 addition & 1 deletion src/script/arch-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ case "${option}" in
exit 13
else
if ! "${EDITOR:-nano}" "${config_file}" 2> /dev/null; then
error_msg "$(eval_gettext "Unable to determine the editor to use\nThe \$EDITOR environment variable is not set and \"nano\" (fallback option) is not installed")"
error_msg "$(eval_gettext "Unable to determine the editor to use\nThe \"EDITOR\" environment variable is not set and \"nano\" (fallback option) is not installed")"
exit 13
fi
fi
Expand Down

0 comments on commit 27b563d

Please sign in to comment.