Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: Add spacing to improve wording style #274

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion po/arch-update.pot
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,8 @@ msgstr ""

#: src/lib/packages_cache.sh:24
#, sh-format
msgid "Cached Packages:\\nThere are old and/or uninstalled cached packages\\n"
msgid ""
"Cached Packages:\\nThere are old and / or uninstalled cached packages\\n"
msgstr ""

#: src/lib/packages_cache.sh:25
Expand Down
6 changes: 4 additions & 2 deletions po/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,10 @@ msgstr "Voulez-vous le supprimer du cache maintenant ? [O/n]"

#: src/lib/packages_cache.sh:24
#, sh-format
msgid "Cached Packages:\\nThere are old and/or uninstalled cached packages\\n"
msgstr "Paquets mis en cache :\\nIl y a plusieurs paquets anciens ou désinstallés mis en cache\\n"
msgid ""
"Cached Packages:\\nThere are old and / or uninstalled cached packages\\n"
msgstr ""
"Paquets mis en cache :\\nIl y a plusieurs paquets anciens et / ou désinstallés mis en cache\\n"

#: src/lib/packages_cache.sh:25
#, sh-format
Expand Down
2 changes: 1 addition & 1 deletion src/lib/packages_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ "${pacman_cache_total}" -gt 0 ]; then
main_msg "$(eval_gettext "Cached Packages:\nThere's an old or uninstalled cached package\n")"
ask_msg "$(eval_gettext "Would you like to remove it from the cache now? [Y/n]")"
else
main_msg "$(eval_gettext "Cached Packages:\nThere are old and/or uninstalled cached packages\n")"
main_msg "$(eval_gettext "Cached Packages:\nThere are old and / or uninstalled cached packages\n")"
ask_msg "$(eval_gettext "Would you like to remove them from the cache now? [Y/n]")"
fi

Expand Down