#!/usr/bin/env bash

UPGRADE_PROGRESS         = i18n("Upgrade in progress")
UPGRADE_FULL_ARCH        = i18n("Full system upgrade")
UPGRADE_FULL_FLATPAK     = i18n("Flatpak Upgrade")
UPGRADE_FULL_WIDGETS     = i18n("Plasma Widgets Upgrade")
UPGRADE_PACKAGE          = i18n("Upgrade")
UPGRADE_EXECTIME         = i18n("Total execution time:")
UPGRADE_CRITICAL         = i18n("Critical package(s) updated, reboot may be required:")
UPGRADE_REBOOT           = i18n("Do you want to reboot now?")
UPGRADE_REBOOTING        = i18n("The system is going to reboot now...")
UPGRADE_ENTER            = i18n("Press Enter to close")
UPGRADE_SKIPPED          = i18n("Skipped...")
UPGRADE_COMPLETE         = i18n("Upgrade complete, close the terminal")

MIRRORS_FETCH            = i18n("Fetching the latest filtered mirror list")
MIRRORS_RANK             = i18n("Ranking mirrors by their connection and opening speed")
MIRRORS_ERR              = i18n("Check your mirrorlist generator settings...")
MIRRORS_UPD              = i18n("was updated with the following servers:")
MIRRORS_SUDO             = i18n("To write to the mirrorlist file, sudo privileges are required")
MIRROR_TIME              = i18n("Your current mirrorlist:")
MIRROR_REFRESH           = i18n("Refresh mirror list?")

WIDGETS_WARN             = i18n("For some widgets you may need to Log Out or restart plasmashell after upgrade")
WIDGETS_CHECK            = i18n("Checking widgets for updates")
WIDGETS_FETCH            = i18n("Fetching data from the API")
WIDGETS_LINK             = i18n("Getting the download link")
WIDGETS_DOWNLOADING      = i18n("Downloading package")
WIDGETS_PROCEED          = i18n("Proceed with upgrade?")
WIDGETS_RESTART          = i18n("Restart plasmashell now?")
WIDGETS_NODESC           = i18n("No description")
WIDGETS_ERR              = i18n("Unable check widgets: ")
WIDGETS_ERR_API          = i18n("Too many API requests in the last 15 minutes from your IP address, please try again later")
WIDGETS_ERR_API_FAIL     = i18n("Failed to retrieve data from the API")
WIDGETS_ERR_UNKNOWN      = i18n("Unkwnown error")
WIDGETS_ERR_NO_JSON      = i18n("File metadata.json not found")
WIDGETS_ERR_JSON         = i18n("Errors in metadata.json file")
WIDGETS_ERR_EXT          = i18n("Unsupported file format")
WIDGETS_ERR_NOFILES      = i18n("No files for download")
WIDGETS_ERR_NOTAGGED     = i18n("No file tagged with version")
WIDGETS_ERR_TAGGED       = i18n("Multiple files are tagged with version")
WIDGETS_ERR_PACKAGE_FAIL = i18n("Failed to download the package")

MNG_HEADER               = i18n("Management")
MNG_BROWSE               = i18n("Browse available")
MNG_BROWSE_H             = i18n("Search all available packages and select what to install");
MNG_INST                 = i18n("Manage installed")
MNG_INST_H               = i18n("View installed packages and select what to remove")
MNG_EXPL                 = i18n("Explicit installs")
MNG_EXPL_H               = i18n("Show packages you installed directly");
MNG_EXPL_L               = i18n("All explicit installs")
MNG_EXPL_U               = i18n("Explicit installs not required by anything")
MNG_ORPH                 = i18n("Orphaned dependencies")
MNG_ORPH_H               = i18n("Dependencies that are no longer needed by anything installed");
MNG_ORPH_L               = i18n("List orphans")
MNG_ORPH_R               = i18n("Remove orphans")
MNG_DOWNGR               = i18n("Downgrade from cache")
MNG_CACHE                = i18n("Clean cache")
MNG_CACHE_H              = i18n("Remove cached files to free disk space");
MNG_CACHE_A              = i18n("Remove all cache")
MNG_CACHE_U              = i18n("Remove unused cache")
MNG_CACHE_DIR            = i18n("Found directories in the pacman cache:")
MNG_CACHE_DIR_RM         = i18n("Remove these directories?")
MNG_REBUILD              = i18n("Rebuild packages")
MNG_REBUILD_H            = i18n("Select packages that need reinstall with rebuild")
MNG_REBUILD_A            = i18n("Rebuild AUR packages")
MNG_REBUILD_P            = i18n("Detect Python packages to rebuild")
MNG_MIRROR               = i18n("Refresh mirrors")
MNG_WARN                 = i18n("Review dependency warnings before removing")
MNG_RESUME               = i18n("Resume?")
MNG_RETURN               = i18n("Press Enter to return menu")
MNG_RECENT               = i18n("Recent installs")
MNG_RECENT_SCAN          = i18n("Scanning pacman log...")
MNG_RECENT_EXPLICIT      = i18n("Explicitly installed")  
MNG_RECENT_DEPEND        = i18n("Installed as a dependency")
MNG_RECENT_ORPHAN        = i18n("Orphaned dependency")

MNG_EXEC                 = i18n("Executed:")
MNG_DONE                 = i18n("Nothing to do")
CMD_ERR                  = i18n("Required installed")
NEWS_ERR                 = i18n("Cannot fetch news ")
